/* Genel Sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f6f9;
}

/* Yenilenen Header Tasarımı (Butonsuz & Dengeli) */
.main-header {
    display: flex;
    justify-content: space-between; /* Logoyu sola, menüyü sağa yaslar */
    align-items: center;
    padding: 15px 8%; /* Sağ ve soldan ideal boşluk */
    background-color: #0b1325; /* Premium koyu arka plan */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Logo Ayarları */
.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 55px; /* Logonun dikey netliği için ideal boyut */
    width: auto;
    display: block;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3));
}

/* Menü Linkleri (Koyu Arka Plana Uygun) */
.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    margin-left: 30px; /* Linklerin sadece soluna boşluk vererek sağa tam yaslanmasını sağladık */
}

.navbar ul li a {
    text-decoration: none;
    color: #e2e8f0; /* Yumuşak beyaz tonu */
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px; /* İkon ile yazı arasındaki mesafeyi ayarlar */
    transition: all 0.3s ease;
}

/* İkonların Genel Boyutu */
.navbar ul li a i {
    font-size: 14px;
}

/* Link Hover ve Aktif Durumu (Logodaki Altın Sarısı) */
.navbar ul li a:hover,
.navbar ul li a.active {
    color: #d4af37; /* Gold rengi */
}

/* Hero Bölümü Tasarımı */
.hero-section {
    padding: 80px 8%;
    background: linear-gradient(135deg, #f9fbff 0%, #f0f4f8 100%);
    min-height: calc(100vh - 85px); /* Ekranı kaplaması için header boyutu düşüldü */
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 50px;
}

/* Sol İçerik Alanı */
.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-subtitle {
    color: #d4af37; /* Logodaki altın sarısı */
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #0b1325; /* Header arka plan rengiyle uyumlu koyu ton */
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: #d4af37; /* Öne çıkarılmak istenen kelime */
}

.hero-description {
    font-size: 16px;
    color: #52606d;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Butonlar */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-btn-primary {
    background-color: #0b1325;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 19, 37, 0.15);
}

.hero-btn-primary:hover {
    background-color: #d4af37;
    color: #0b1325;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.hero-btn-secondary {
    background-color: transparent;
    color: #0b1325;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #0b1325;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background-color: #0b1325;
    color: #ffffff;
}

/* Sağ Görsel Alanı */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    /* Hafif bir yukarı-aşağı süzülme animasyonu (Harika bir dinamiklik katar) */
    animation: float 4s ease-in-out infinite;
}

/* Süzülme Animasyonu */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Mobil Uumluluk (Responsive) */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse; /* Mobilde görsel üstte, yazı altta kalır */
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* Hakkımda Bölümü Tasarımı */
.about-section {
    padding: 100px 8%;
    background-color: #0b1325; /* Header ile aynı kurumsal koyu renk */
    color: #ffffff;
    display: flex;
    align-items: center;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 60px;
}

/* Sol Taraf (İstatistik Kutuları) */
.about-left {
    flex: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box i {
    font-size: 28px;
    color: #d4af37; /* Altın Sarısı */
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.stat-box p {
    font-size: 13px;
    color: #a0aec0;
    line-height: 1.5;
}

/* Kutu Hover Efekti */
.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: #d4af37;
}

/* Sağ Taraf (Metin Alanı) */
.about-right {
    flex: 1;
}

.about-subtitle {
    color: #d4af37;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.about-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #ffffff;
}

.about-text {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Rozetler / Onay Maddeleri */
.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column; /* Mobilde alt alta gelirler */
        gap: 40px;
    }
    
    .about-right {
        text-align: center;
    }
    
    .about-badges {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr; /* Küçük telefonlarda kutular tek sütun olur */
    }
    .about-title {
        font-size: 28px;
    }
}

/* Beceriler Bölümü Tasarımı */
.skills-section {
    padding: 100px 8%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #0b1325;
}

.skills-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 60px;
}

/* Sol İçerik Alanı */
.skills-content {
    flex: 1;
    max-width: 550px;
}

.skills-subtitle {
    color: #d4af37;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.skills-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #0b1325;
}

.skills-title .highlight {
    color: #d4af37;
}

.skills-description {
    font-size: 15px;
    color: #52606d;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Küçük Bilgi Kartları */
.skills-mini-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mini-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.mini-feature i {
    font-size: 20px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    padding: 12px;
    border-radius: 4px;
}

.mini-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0b1325;
    margin-bottom: 5px;
}

.mini-feature p {
    font-size: 13px;
    color: #627d98;
}

/* Sağ Taraf - Yetenek Barları */
.skills-bars {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.skill-bar-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 15px;
    color: #0b1325;
}

.skill-info i {
    color: #d4af37;
    margin-right: 5px;
}

/* İlerleme Çubuklarının Altyapısı */
.progress-line {
    width: 100%;
    height: 10px;
    background-color: #e2e8f0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-line span {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #0b1325 0%, #d4af37 100%);
    position: absolute;
    left: 0;
    top: 0;
}

/* Doluluk Oranları (Yüzdeler) */
.wordpress-fill { width: 100% !important; }
.elementor-fill { width: 95%; }
.whmcs-fill { width: 100%; }
.html-css-fill { width: 90%; }
.speed-security-fill { width: 85%; }
.photoshop-fill { width: 50%; }


/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .skills-container {
        flex-direction: column;
        gap: 40px;
    }
    .skills-content {
        max-width: 100%;
        text-align: center;
    }
    .mini-feature {
        text-align: left;
    }
}

/* Ürünler Bölümü Tasarımı */
.products-section {
    padding: 100px 8%;
    background-color: #0b1325; /* Premium koyu arka plan */
    color: #ffffff;
}

.products-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.products-subtitle {
    color: #d4af37;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.products-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
}

.products-title .highlight {
    color: #d4af37;
}

.products-description {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
}

/* Ürün Grid Yapısı */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

/* Ürün Kartı Tasarımı */
.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

/* Kartın Üstündeki Rozet */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Ürün İkon Alanı */
.product-icon {
    padding: 40px 30px 20px 30px;
}

.product-icon i {
    font-size: 40px;
    color: #d4af37;
}

/* Ürün Bilgileri */
.product-info {
    padding: 0 30px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.4;
}

.product-info p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Açıklamaların yüksekliğini eşitler */
}

/* Ürün Özellik Maddeleri */
.product-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.product-features span {
    font-size: 13px;
    color: #a0aec0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features span i {
    color: #d4af37;
}

/* Kartın Alt Kısmı (Fiyat ve Buton) */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

/* Ürün Detay Butonu */
.product-btn {
    background-color: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 8px 18px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background-color: #d4af37;
    color: #0b1325;
}

/* Kart Hover Efekti */
.product-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* Tabletlerde 2 sütun */
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
    .products-title {
        font-size: 30px;
    }
}

/* Portföy Bölümü Tasarımı */
.portfolio-section {
    padding: 100px 8%;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    color: #0b1325;
}

.portfolio-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.portfolio-subtitle {
    color: #d4af37;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.portfolio-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #0b1325;
}

.portfolio-title .highlight {
    color: #d4af37;
}

.portfolio-description {
    font-size: 15px;
    color: #52606d;
    line-height: 1.7;
}

/* Portföy Grid Yapısı */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

/* Proje Kartı */
.portfolio-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

/* Görsel Alanı ve Hover Efektleri */
.portfolio-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #0b1325;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Görsel Üzerindeki Karartma Katmanı */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 37, 0.85); /* Header renginde yarı şeffaf katman */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-link {
    color: #0b1325;
    background-color: #d4af37;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

/* Proje Kartı Hover Durumu */
.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(11, 19, 37, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.portfolio-item:hover .portfolio-img-wrapper img {
    transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-link {
    transform: translateY(0);
}

/* Proje Alt Bilgileri */
.portfolio-info {
    padding: 25px;
}

.project-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4af37;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.portfolio-info h3 {
    font-size: 19px;
    font-weight: 600;
    color: #0b1325;
    margin-bottom: 12px;
    line-height: 1.4;
}

.portfolio-info p {
    font-size: 14px;
    color: #627d98;
    line-height: 1.6;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr); /* Tabletlerde 2 sütun */
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
    .portfolio-title {
        font-size: 30px;
    }
}

/* Hizmetler Bölümü Tasarımı */
.services-section {
    padding: 100px 8%;
    background-color: #0b1325; /* Premium koyu arka plan */
    color: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.services-subtitle {
    color: #d4af37;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.services-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
}

.services-title .highlight {
    color: #d4af37;
}

.services-description {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
}

/* Hizmet Kartları Grid Yapısı */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

/* Hizmet Kutusu Tasarımı */
.service-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 30px;
    border-radius: 6px;
    text-align: left;
    transition: all 0.3s ease;
}

/* Hizmet İkonları */
.service-icon {
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 36px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.08);
    padding: 15px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.service-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Hizmet Kutusu Hover Efekti */
.service-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.service-box:hover .service-icon i {
    background: #d4af37;
    color: #0b1325;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Tabletlerde 2 sütun */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
    .services-title {
        font-size: 30px;
    }
}

/* ==========================================================================
   İletişim Bölümü Tasarımı - Koyu Arka Plan & Turkuaz Uyumlu
   ========================================================================== */
.contact-section {
    padding: 100px 8%;
    background: #0b1329; /* Sitenin ana koyu arka plan rengi */
    color: #ffffff; /* Genel yazı rengi beyaz yapıldı */
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 80px;
}

/* Sol Taraf Form Alanı */
.contact-form-area {
    flex: 1.2;
}

.contact-subtitle {
    color: #d4af37; /* Altın sarısı yerine canlı turkuaz mavi */
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff; /* Başlık beyaz yapıldı */
}

.contact-title .highlight {
    color: #d4af37; /* Vurgulu kelime turkuaz yapıldı */
}

.contact-description {
    font-size: 15px;
    color: #94a3b8; /* Koyu zeminde okunaklı soft gri */
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Form Elemanları */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(56, 189, 248, 0.1); /* Çok hafif turkuaz sınır çizgisi */
    background-color: #111a36; /* İç alanlar için kartlarla uyumlu lacivert/siyah tonu */
    color: #ffffff; /* Input içi yazı rengi beyaz */
    font-family: inherit;
    font-size: 14px;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
}

/* Inputa Tıklanınca (Focus Durumu) */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #d4af37; /* Odaklanınca parlayan turkuaz çizgi */
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15); /* Hafif turkuaz parlama efekti */
}

/* Form Gönder Butonu */
.contact-submit-btn {
    background-color: #d4af37; /* Buton rengi turkuaz yapıldı */
    color: #0b1329; /* Açık renk zemin üzerine koyu yazı ile yüksek kontrast */
    border: none;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: fit-content;
}

.contact-submit-btn:hover {
    background-color: #0ea5e9; /* Üzerine gelince biraz daha koyu maviye döner */
    color: #ffffff; /* Yazı beyaza döner */
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3); /* Turkuaz gölge efekti */
}

/* Sağ Taraf Bilgi Alanı */
.contact-info-area {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #111a36; /* Kart arka planı koyu yapıldı */
    border: 1px solid rgba(56, 189, 248, 0.05); /* Soft sınır çizgisi */
    padding: 20px;
    border-radius: 6px;
}

.info-icon i {
    font-size: 24px;
    color: #d4af37; /* İkon rengi turkuaz */
    background: rgba(56, 189, 248, 0.1); /* Arka planına hafif saydam turkuaz */
    padding: 12px;
    border-radius: 4px;
}

.info-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff; /* Kart başlığı beyaz */
    margin-bottom: 5px;
}

.info-card p a {
    font-size: 14px;
    color: #94a3b8; /* Link rengi yumuşak gri */
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card p a:hover {
    color: #d4af37; /* Üzerine gelince link rengi turkuaza döner */
}

/* Sosyal Medya İkonları */
.contact-social h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff; /* Sosyal medya başlığı beyaz */
    margin-bottom: 15px;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #111a36; /* İkon kutularının arka planı koyulaştırıldı */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #d4af37; /* Üzerine gelince tamamen turkuaz olur */
    color: #0b1329; /* İkonun rengi koyu tona bürünür */
    transform: translateY(-3px);
    border-color: #d4af37;
}

/* Tablet ve Mobil Cihazlar İçin Tam Uyum (Responsive) */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    .contact-info-area {
        margin-top: 0;
    }
    .contact-submit-btn {
        width: 100%; /* Mobilde butonun tam genişlik kaplaması için */
    }
}

/* FOOTER TASARIMI */
.main-footer {
    background-color: #050a14; /* Header'dan bir tık daha koyu kapatıcı ton */
    color: #a0aec0;
    padding: 30px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }
    .contact-form-area, .contact-info-area {
        width: 100%;
    }
    .contact-submit-btn {
        width: 100%; /* Mobilde butonu tam genişlik yapar */
    }
    .footer-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* 4 Ürün Yan Yana Düzeni */
.products-grid.four-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Sütun */
    gap: 20px; /* Kartlar arası boşluğu hafif daralttık ki sığsınlar */
    width: 100%;
}

/* Kartların iç padding değerini 4'lü düzende yazıları sıkıştırmasın diye hafif optimize edelim */
.products-grid.four-columns .product-card {
    padding: 30px 20px;
}

.products-grid.four-columns .product-features span {
    font-size: 13px; /* Yazı boyutunu 4'lü grid için bir tık kibarlaştırdık */
}

/* Mobil ve Tablet Uyumluluğu (Responsive) */
@media (max-width: 1200px) {
    .products-grid.four-columns {
        grid-template-columns: repeat(2, 1fr); /* Büyük tabletlerde 2'li sıra */
    }
}

@media (max-width: 768px) {
    .products-grid.four-columns {
        grid-template-columns: 1fr; /* Mobilde alt alta tek sütun */
    }
}

/* Müşteri Yorumları Bölümü - Beyaz Arka Plan */
.testimonials-section {
    padding: 80px 4%;
    background-color: #ffffff; /* Arka plan tamamen beyaz yapıldı */
    width: 100%;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-subtitle {
    color: #d4af37; /* Beyaz zeminde daha net okunan koyu turkuaz/mavi */
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.testimonials-title {
    font-size: 36px;
    color: #0f172a; /* Başlık rengi beyaz zemin için koyu gri/siyah yapıldı */
    margin-bottom: 15px;
}

.testimonials-title .highlight {
    color: #d4af37; /* Vurgulanan kelime rengi */
}

.testimonials-description {
    color: #475569; /* Açıklama metni beyaz zemin uyumlu yumuşak füme */
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}

/* Grid Yerine Flexbox Kullanarak Taşan Kartları Ortala */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Kartların satırda ortalanmasını sağlar */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Kartların Genişliğini Sabitle (3'lü düzen için hesaplandı) */
.testimonial-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    
    /* 30px gap değerini düşerek kartların tam 3 sütun dizilmesini sağlar */
    width: calc(33.333% - 20px); 
    min-width: 300px; /* Kartların mobilde çok sıkışmaması için minimum genişlik */
}

/* Hover ve İçerik Ayarları Aynen Kalıyor */
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #0284c7;
    box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.1);
}

/* Responsive Düzen (Mobil ve Tablet Uyumlu) */
@media (max-width: 992px) {
    .testimonial-card {
        width: calc(50% - 15px); /* Tabletlerde yan yana 2'li dizilim */
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 100%; /* Mobilde tamamen kaplasın */
    }
}

/* Kart Tasarımları */
.testimonial-card {
    background-color: #f8fafc; /* Kartların içi hafif kırık beyaz/gri tonu yapıldı */
    border: 1px solid #e2e8f0; /* Soft sınır çizgisi */
    border-radius: 12px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); /* Tatlı arka plan gölgesi */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #0284c7; /* Üzerine gelince belirginleşen mavi sınır */
    box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.1); /* Mavi tonlu modern hover gölgesi */
}

/* Yıldızlar */
.testimonial-stars {
    color: #ea580c; /* Beyaz zeminde kendini gösteren canlı turuncu/altın yıldızlar */
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-text {
    color: #1e293b; /* Yorum yazısı okunaklı koyu gri yapıldı */
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

/* Kullanıcı Alanı */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #e2e8f0; /* İç çizgi rengi */
    padding-top: 15px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background-color: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    font-size: 18px;
    border: 1px solid #cbd5e1;
}

.user-info h4 {
    color: #0f172a; /* İsim rengi */
    font-size: 16px;
    margin-bottom: 3px;
    font-weight: 600;
}

.user-info span {
    color: #64748b; /* Ünvan rengi */
    font-size: 13px;
}

/* Responsive Düzen (Mobil ve Tablet Uyumlu) */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-title {
        font-size: 28px;
    }
}