/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 07 2025 | 20:40:07 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #edf3ff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #b71c1c;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #b71c1c;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e53935;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    color: #b71c1c;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #e53935, #b71c1c);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(229, 57, 53, 0.2);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.2);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #b71c1c;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(183, 28, 28, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(229, 57, 53, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #e53935;
}

.service-card h3 {
    color: #b71c1c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #333;
    font-size: 0.95rem;
}

/* Why Us Section */
.why-us {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-us-text {
    color: #b71c1c;
}

.why-us-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.advantage {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.advantage-icon {
    background: linear-gradient(45deg, #e53935, #b71c1c);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.advantage-text h4 {
    margin-bottom: 0.5rem;
}

.advantage-text p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Process Timeline */
.process {
    padding: 4rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    flex: 1;
    margin: 0 2rem;
    color: #b71c1c;
}

.timeline-number {
    background: linear-gradient(45deg, #e53935, #b71c1c);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.2);
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    color: #b71c1c;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #333;
    display: none;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #b71c1c;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.contact-info {
    color: #b71c1c;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    background: linear-gradient(45deg, #e53935, #b71c1c);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: rgba(183, 28, 28, 0.1);
    padding: 2rem 0;
    text-align: center;
    color: #b71c1c;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .why-us-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    .timeline-content {
        margin: 1rem 0;
    }
    .nav-links {
        display: none;
    }
}

.cg-blog3-item {
    background-color: #EDF3FF; /* Açık mavi-gri bir ton */
}



/* Belirtilen tüm sayfalardaki ana başlıkların stilini düzenle */
.page-id-2429 .elementor-gt-heading.sec_title,
.single-post .elementor-gt-heading.sec_title,
.page-id-2614 .elementor-gt-heading.sec_title,
.page-id-2646 .elementor-gt-heading.sec_title,
.page-id-2671 .elementor-gt-heading.sec_title,
.page-id-2704 .elementor-gt-heading.sec_title,
.page-id-2711 .elementor-gt-heading.sec_title,
.page-id-2721 .elementor-gt-heading.sec_title,
.page-id-2735 .elementor-gt-heading.sec_title,
.page-id-2215 .elementor-gt-heading.sec_title,
.page-id-2746 .elementor-gt-heading.sec_title,
.page-id-2758 .elementor-gt-heading.sec_title,
.page-id-2780 .elementor-gt-heading.sec_title,
.page-id-2795 .elementor-gt-heading.sec_title,
.page-id-2813 .elementor-gt-heading.sec_title,
.page-id-2950 .elementor-gt-heading.sec_title,
.page-id-2993 .elementor-gt-heading.sec_title,
.page-id-3006 .elementor-gt-heading.sec_title,
.page-id-3017 .elementor-gt-heading.sec_title,
.page-id-2693 .elementor-gt-heading.sec_title {
    font-family: 'Space Grotesk', sans-serif; /* Daha şık bir font */
    font-weight: 700;
    color: #032532; /* Koyu lacivert renk */
    text-align: center;
    font-size: 3.5rem; /* Masaüstü için büyük font boyutu */
    letter-spacing: -1px;
    line-height: 1.2;
    text-transform: uppercase;
    
    /* Animasyon ile ilgili tüm özellikleri kaldır */
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* =================================================================== */
/* TÜM SAYFALAR İÇİN BİRLEŞTİRİLMİŞ BAŞLIK STİLLERİ           */
/* =================================================================== */

/* 1. ALT BAŞLIK ANİMASYONUNU KALDIRMA
------------------------------------------------------------------- */
/* "Bizden Haberler" sayfası, tüm tekli yazılar ve diğer belirtilen sayfalardaki alt başlık animasyonunu kaldır */
.page-id-2429 .elementor-gt-heading.sec_title .split-line > div,
.single-post .elementor-gt-heading.sec_title .split-line > div,
.page-id-2614 .elementor-gt-heading.sec_title .split-line > div,
.page-id-2646 .elementor-gt-heading.sec_title .split-line > div,
.page-id-2671 .elementor-gt-heading.sec_title .split-line > div,
.page-id-2704 .elementor-gt-heading.sec_title .split-line > div,
.page-id-2711 .elementor-gt-heading.sec_title .split-line > div,
.page-id-2721 .elementor-gt-heading.sec_title .split-line > div,
.page-id-2735 .elementor-gt-heading.sec_title .split-line > div,
.page-id-2215 .elementor-gt-heading.sec_title .split-line > div,
.page-id-2746 .elementor-gt-heading.sec_title .split-line > div,
.page-id-2758 .elementor-gt-heading.sec_title .split-line > div,
.page-id-2780 .elementor-gt-heading.sec_title .split-line > div,
.page-id-2795 .elementor-gt-heading.sec_title .split-line > div,
.page-id-2813 .elementor-gt-heading.sec_title .split-line > div,
.page-id-2950 .elementor-gt-heading.sec_title .split-line > div,
.page-id-2993 .elementor-gt-heading.sec_title .split-line > div,
.page-id-3006 .elementor-gt-heading.sec_title .split-line > div,
.page-id-3017 .elementor-gt-heading.sec_title .split-line > div,
.page-id-3068 .elementor-gt-heading.sec_title .split-line > div,
.page-id-2693 .elementor-gt-heading.sec_title .split-line > div {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* 2. BAŞLIK ALTINA ÇİZGİ EKLEME
------------------------------------------------------------------- */
/* "Bizden Haberler" sayfası, tüm tekli yazılar ve diğer belirtilen sayfalardaki başlığın altındaki çizgi efekti */
.page-id-2429 .elementor-gt-heading.sec_title::after,
.single-post .elementor-gt-heading.sec_title::after,
.page-id-2614 .elementor-gt-heading.sec_title::after,
.page-id-2646 .elementor-gt-heading.sec_title::after,
.page-id-2671 .elementor-gt-heading.sec_title::after,
.page-id-2704 .elementor-gt-heading.sec_title::after,
.page-id-2711 .elementor-gt-heading.sec_title::after,
.page-id-2721 .elementor-gt-heading.sec_title::after,
.page-id-2735 .elementor-gt-heading.sec_title::after,
.page-id-2215 .elementor-gt-heading.sec_title::after,
.page-id-2746 .elementor-gt-heading.sec_title::after,
.page-id-2758 .elementor-gt-heading.sec_title::after,
.page-id-2780 .elementor-gt-heading.sec_title::after,
.page-id-2795 .elementor-gt-heading.sec_title::after,
.page-id-2813 .elementor-gt-heading.sec_title::after,
.page-id-2950 .elementor-gt-heading.sec_title::after,
.page-id-2993 .elementor-gt-heading.sec_title::after,
.page-id-3006 .elementor-gt-heading.sec_title::after,
.page-id-3017 .elementor-gt-heading.sec_title::after,
.page-id-3068 .elementor-gt-heading.sec_title::after,
.page-id-2693 .elementor-gt-heading.sec_title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #0EB6BD; /* Turkuaz çizgi rengi */
    margin: 20px auto 0;
}

/* 3. MOBİL UYUMLULUK (RESPONSIVE) AYARLARI
------------------------------------------------------------------- */
/* Tabletler için (1024px ve altı) */
@media (max-width: 1024px) {
    .page-id-2429 .elementor-gt-heading.sec_title,
    .single-post .elementor-gt-heading.sec_title,
    .page-id-2614 .elementor-gt-heading.sec_title,
    .page-id-2646 .elementor-gt-heading.sec_title,
    .page-id-2671 .elementor-gt-heading.sec_title,
    .page-id-2704 .elementor-gt-heading.sec_title,
    .page-id-2711 .elementor-gt-heading.sec_title,
    .page-id-2721 .elementor-gt-heading.sec_title,
    .page-id-2735 .elementor-gt-heading.sec_title,
    .page-id-2215 .elementor-gt-heading.sec_title,
	.page-id-2746 .elementor-gt-heading.sec_title,
	.page-id-2758 .elementor-gt-heading.sec_title,
	.page-id-2780 .elementor-gt-heading.sec_title,
	.page-id-2795 .elementor-gt-heading.sec_title,
	.page-id-2813 .elementor-gt-heading.sec_title,
		.page-id-3017 .elementor-gt-heading.sec_title,
		.page-id-3006 .elementor-gt-heading.sec_title,
		.page-id-2893 .elementor-gt-heading.sec_title,
		.page-id-2950 .elementor-gt-heading.sec_title,
			.page-id-3068 .elementor-gt-heading.sec_title,
    .page-id-2693 .elementor-gt-heading.sec_title {
        font-size: 2.5rem;
    }
}

/* Mobil cihazlar için (767px ve altı) */
@media (max-width: 767px) {
    .page-id-2429 .elementor-gt-heading.sec_title,
    .single-post .elementor-gt-heading.sec_title,
    .page-id-2614 .elementor-gt-heading.sec_title,
    .page-id-2646 .elementor-gt-heading.sec_title,
    .page-id-2671 .elementor-gt-heading.sec_title,
    .page-id-2704 .elementor-gt-heading.sec_title,
    .page-id-2711 .elementor-gt-heading.sec_title,
    .page-id-2721 .elementor-gt-heading.sec_title,
    .page-id-2735 .elementor-gt-heading.sec_title,
    .page-id-2215 .elementor-gt-heading.sec_title,
    .page-id-2746 .elementor-gt-heading.sec_title,
	.page-id-2758 .elementor-gt-heading.sec_title,
	.page-id-2780 .elementor-gt-heading.sec_title,
	.page-id-2795 .elementor-gt-heading.sec_title,
	.page-id-2813 .elementor-gt-heading.sec_title,
		.page-id-3017 .elementor-gt-heading.sec_title,
		.page-id-3006 .elementor-gt-heading.sec_title,
		.page-id-2893 .elementor-gt-heading.sec_title,
		.page-id-2950 .elementor-gt-heading.sec_title,
			.page-id-3068 .elementor-gt-heading.sec_title,
    .page-id-2693 .elementor-gt-heading.sec_title {
        font-size: 2rem;
        letter-spacing: normal;
    }
}



/* Blog kartlarının stili */
.cg-blog3-item {
    border: 1px solid #e0e0e0; /* Açık gri, düz bir kenarlık ekler */
    border-radius: 17px; /* Kenarları yuvarlatır */
    transition: all 0.3s ease-in-out; /* Animasyon geçişlerini yumuşatır */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Hafif bir gölge ekler */
}

/* Kartın üzerine gelindiğinde (hover) uygulanacak stil */
.cg-blog3-item:hover {
    border: 1px solid #032532; /* Daha belirgin, düz bir kenarlık rengi */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Gölgeyi biraz büyütür */
    transform: translateY(-5px); /* Kartı hafifçe yukarı kaldırır */
}