/* GENEL STİL AYARLARI VE RENK PALETİ */
:root {
    --primary-color: #0F4C5C;
    --secondary-color: #D4A24E;
    --text-color: #333333;
    --light-gray: #f8f9fa;
    --white-color: #ffffff;
    --header-height: 110px;
}

/* Tüm etiketler için temel sıfırlama ayarları */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth; /* Sayfa içi linklere yumuşak kaydırma efekti */
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
    padding-top: var(--header-height); 
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

/* ========== HEADER VE NAVBAR STİLLERİ ========== */
header {
    background-color: var(--white-color);
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo-img {
    height: 85px; 
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 22px;
    align-items: center;
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 5px;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--white-color);
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-payment {
    background-color: var(--secondary-color);
    margin-left: 30px;
}

.btn:hover {
    transform: scale(1.05);
}

.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--primary-color); transition: all 0.3s ease-in-out; }

/* ========== HERO SECTION STİLLERİ ========== */
#hero {
    background-image: url('images/hero-background.jpg'); /* URL güncellendi */
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    height: calc(100vh - var(--header-height));
    display: flex; 
    justify-content: center; 
    align-items: center;
    position: relative; 
}

#hero::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(15, 76, 92, 0.6);
}

.hero-content { text-align: center; color: var(--white-color); position: relative; z-index: 2; padding: 0 20px;}
.hero-title { font-size: 56px; margin-bottom: 1rem; }
.hero-subtitle { font-size: 20px; font-weight: 400; max-width: 600px; margin: 0 auto 2rem auto; }
.btn-primary { background-color: var(--secondary-color); font-size: 18px; padding: 15px 30px; }

/* ========== DROPDOWN MENÜ STİLLERİ ========== */
.nav-item.has-dropdown { position: relative; }
.dropdown-menu {
    display: none; position: absolute; top: 100%; left: 0;
    background-color: var(--white-color);
    list-style: none; padding: 10px 0; margin-top: 10px;
    border-radius: 5px; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 260px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, margin-top 0.3s ease;
}
.nav-item.has-dropdown:hover .dropdown-menu { display: block; opacity: 1; visibility: visible; margin-top: 0; }
.dropdown-menu li a { display: block; padding: 10px 20px; text-decoration: none; color: var(--primary-color); font-size: 15px; }
.dropdown-menu li a:hover { background-color: var(--light-gray); color: var(--secondary-color); }

/* ========== POP-UP FORM STİLLERİ ========== */
.popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; justify-content: center; align-items: center;
    z-index: 1000;
}
.popup-content {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.close-popup-btn {
    position: absolute; top: 10px; right: 15px;
    font-size: 30px; color: #aaa; border: none;
    background: transparent; cursor: pointer;
}
.popup-content h3 { margin-bottom: 10px; font-size: 28px; color: var(--primary-color); }
.popup-content p { margin-bottom: 25px; font-size: 16px; }
.popup-content form input, .popup-content form select {
    width: 100%; padding: 12px; margin-bottom: 15px;
    border: 1px solid #ddd; border-radius: 5px; font-size: 16px;
}
.form-group-checkbox {
    display: flex; justify-content: center; align-items: center;
    margin-top: 10px; margin-bottom: 20px;
}
.form-group-checkbox input[type="checkbox"] { width: auto; margin-right: 10px; height: 16px; width: 16px; }
.form-group-checkbox label { font-size: 14px; color: #555; text-align: left; }
.form-group-checkbox label a { color: var(--primary-color); text-decoration: underline; font-weight: 600; cursor: pointer; }
.form-group-checkbox label a:hover { color: var(--secondary-color); }
.btn-submit { width: 100%; border: none; padding: 15px; font-size: 18px; background-color: var(--secondary-color); }
.btn-submit:hover { filter: brightness(1.1); }

/* ========== GİZLİLİK POLİTİKASI MODAL STİLLERİ (GELİŞTİRİLMİŞ) ========== */
#privacy-policy-modal .popup-content {
    text-align: left;
    padding: 0;
    max-width: 800px; /* Genişletildi */
    border-radius: 12px; /* Köşeler yuvarlatıldı */
    box-shadow: 0 10px 40px rgba(0,0,0,0.2); /* Gölge eklendi */
    transform: scale(0.95);
    transition: transform 0.3s ease-out;
}

#privacy-policy-modal.active .popup-content {
    transform: scale(1);
}

#privacy-policy-modal .popup-header {
    background: linear-gradient(to right, var(--primary-color), #1a6a7e); /* Gradient eklendi */
    color: var(--white-color);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px 12px 0 0;
    border-bottom: 3px solid var(--secondary-color);
}

#privacy-policy-modal .popup-header h3 {
    color: var(--white-color);
    font-size: 24px; /* Yazı boyutu ayarlandı */
}

#privacy-policy-modal .close-privacy-btn {
    position: static;
    color: var(--white-color);
    font-size: 35px; /* Boyut büyütüldü */
    font-weight: bold;
    transition: transform 0.2s ease;
}

#privacy-policy-modal .close-privacy-btn:hover {
    transform: scale(1.2); /* Hover efekti eklendi */
}

.privacy-content-body {
    padding: 35px;
    max-height: 70vh; /* Yükseklik artırıldı */
    overflow-y: auto;
    line-height: 1.8; /* Satır yüksekliği artırıldı */
}

.privacy-content-body h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.privacy-content-body h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content-body p, .privacy-content-body li {
    font-size: 16px;
    color: #444;
}

.privacy-content-body a {
    color: var(--secondary-color);
    text-decoration: underline;
}


/* ========== YENİ BÖLÜMLER İÇİN GENEL STİLLER ========== */
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--light-gray); }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 36px; color: var(--primary-color); margin-bottom: 10px; }
.section-title p { font-size: 18px; color: #6c757d; }

/* ========== HİZMETLER BÖLÜMÜ STİLLERİ ========== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card {
    background-color: var(--white-color); padding: 40px; text-align: center;
    border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover .service-card {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-card:hover { 
    /* Bu kural artık .service-card-link:hover tarafından yönetildiği için boş bırakılabilir veya kaldırılabilir. Şimdilik dokunmuyoruz. */
}
.service-icon { font-size: 36px; color: var(--secondary-color); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 15px; color: var(--primary-color); }

/* ========== NEDEN BİZ? BÖLÜMÜ STİLLERİ ========== */
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.why-us-item { text-align: center; }
.why-us-item i { font-size: 40px; color: var(--secondary-color); margin-bottom: 20px; }
.why-us-item h4 { font-size: 20px; color: var(--primary-color); margin-bottom: 10px; }

/* ========== REFERANSLAR BÖLÜMÜ STİLLERİ ========== */
.reference-logos { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 40px; }
.reference-logos img { max-height: 60px; opacity: 0.7; transition: opacity 0.3s ease; }
.reference-logos img:hover { opacity: 1; }

/* ========== BLOG ÖNİZLEME BÖLÜMÜ STİLLERİ ========== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.blog-card { background-color: var(--white-color); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-content { padding: 25px; }
.blog-category { display: inline-block; background-color: var(--secondary-color); color: var(--white-color); padding: 5px 10px; border-radius: 5px; font-size: 12px; font-weight: 600; margin-bottom: 15px; }
.blog-content h3 { font-size: 20px; margin-bottom: 10px; }

.read-more-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block; /* Kart içinde düzgün konumlanması için */
    margin-top: 10px; /* Üstündeki paragrafla arasını açmak için */
}

.blog-card-link:hover .read-more-link {
    color: var(--secondary-color);
}

.blog-content a { text-decoration: none; color: var(--primary-color); font-weight: 600; }
.blog-content a:hover { color: var(--secondary-color); }

/* ========== FOOTER STİLLERİ ========== */
#footer { background-color: var(--primary-color); color: #ccc; padding: 60px 0 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-item h4 { color: var(--white-color); font-size: 20px; margin-bottom: 20px; }
.footer-item p, .footer-item ul li { margin-bottom: 10px; }
.footer-item ul { list-style: none; }
.footer-item ul li a { color: #ccc; text-decoration: none; transition: color 0.3s ease; }
.footer-item ul li a:hover { color: var(--secondary-color); }
.footer-item i { color: var(--secondary-color); margin-right: 10px; }
.social-icons a { color: var(--white-color); font-size: 20px; margin-right: 15px; transition: color 0.3s ease; }
.social-icons a:hover { color: var(--secondary-color); }
.footer-bottom { text-align: center; padding: 20px 0; border-top: 1px solid #444; }


/* =================================================================== */
/* ========== TEŞEKKÜRLER SAYFASI ÖZEL STİLLERİ ========== */
/* =================================================================== */

.thank-you-content {
    text-align: center;
    padding: 80px 20px;
    background-color: #fff;
    border-radius: 10px;
    max-width: 700px;
    margin: 40px auto;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.thank-you-icon {
    font-size: 60px;
    color: #28a745; /* Yeşil onay rengi */
    margin-bottom: 20px;
}

.thank-you-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.thank-you-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.thank-you-actions {
    margin-top: 20px;
}

.thank-you-actions p {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.thank-you-actions .btn {
    margin: 5px 10px;
}

.btn-secondary {
    background-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: #0b3c49;
}


/* =================================================================== */
/* ========== MOBİL UYUMLULUK (MEDIA QUERIES) BAŞLANGIÇ ========== */
/* =================================================================== */

@media (max-width: 992px) {
    /* Bu stiller, ekran 992px'den daha darsa uygulanır (Tabletler ve telefonlar) */

    .hamburger {
        display: block; /* Hamburger menüyü görünür yap */
    }

    .btn-payment {
        margin-right: 15px; /* Hamburger ikonu ile arasına boşluk koy */
    }

    .nav-menu {
        position: fixed; /* Menüyü ekranın üzerine yerleştir */
        left: -100%; /* Başlangıçta ekranın solunda tamamen gizle */
        top: var(--header-height); /* Header'ın altında başlasın */
        flex-direction: column; /* Linkleri alt alta diz */
        background-color: var(--white-color);
        width: 100%;
        height: calc(100vh - var(--header-height));
        text-align: center;
        transition: 0.3s;
        gap: 0;
        margin-left: 0;
    }

    .nav-menu.active {
        left: 0; /* JS ile .active sınıfı eklenince menü soldan gelsin */
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-link {
        display: block;
        padding: 20px 0;
        width: 100%;
    }

    

    .dropdown-menu {
        position: static; /* Mobil menüde dropdown'ların mutlak konumunu kaldır */
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding-left: 30px; /* İçeriği biraz sağa kaydır */
        background-color: var(--light-gray);
    }

    .nav-item.has-dropdown:hover .dropdown-menu {
        /* Hover efektini mobilde devre dışı bırak, tıklama ile kontrol edilecek */
        display: none;
    }

    .nav-item.has-dropdown.active .dropdown-menu {
        /* JS ile .active sınıfı eklenince dropdown görünsün */
        display: block;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    /* Bu stiller, ekran 768px'den daha darsa uygulanır (Telefonlar) */
    
    .section-title h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr; /* Footer elemanlarını alt alta diz */
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}
/* Form Gönderim Mesajı Stili */
#msg {
    color: #28a745;
    margin-top: 10px;
    display: block;
    text-align: center;
    font-weight: 600;
}
/* =================================================================== */
/* ========== YASAL SAYFA STİLLERİ (SÖZLEŞMELER VB.) ========== */
/* =================================================================== */

.legal-content-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    line-height: 1.8;
}

.legal-content-container h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.legal-content-container h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content-container p, .legal-content-container li {
    margin-bottom: 15px;
    color: #444;
}

.legal-content-container ul, .legal-content-container ol {
    padding-left: 25px;
}

.legal-content-container strong {
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content-container pre {
    white-space: pre-wrap;       /* CSS 3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}


/* =================================================================== */
/* ========== HAKKIMIZDA SAYFASI ÖZEL STİLLERİ ========== */
/* =================================================================== */

.page-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.about-us-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-us-image {
    flex: 1;
}

.about-us-image img {
    width: 100%;
    border-radius: 10px;
}

.about-us-content {
    flex: 1;
}

.about-us-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-us-content p {
    margin-bottom: 15px;
}

/* Değerlerimiz bölümündeki ikonları büyütelim */
#why-us .why-us-item i {
    font-size: 48px;
}

/* Ekip Bölümü Stilleri */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    height: auto;
    display: block;
}

.team-info {
    padding: 20px;
}

.team-info h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-info span {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Mobil uyumluluk için ek düzenleme */
@media (max-width: 768px) {
    .about-us-container {
        flex-direction: column;
    }
}
/* =================================================================== */
/* ========== HİZMETLERİMİZ SAYFASI ÖZEL STİLLERİ ========== */
/* =================================================================== */

.service-section {
    padding: 100px 0;
    border-bottom: 1px solid #eee;
}

.service-section-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Her ikinci section'da resim ve yazının yerini değiştir */
.service-section:nth-child(even) .service-section-container {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mobil uyumluluk için ek düzenleme */
@media (max-width: 768px) {
    .service-section-container {
        flex-direction: column !important; /* Yönü her zaman sütun yap */
    }

    .service-text h2 {
        font-size: 28px;
    }
}
/* =================================================================== */
/* ========== HİBE DUYURULARI SAYFASI ÖZEL STİLLERİ ========== */
/* =================================================================== */

.blog-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-preview {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* =================================================================== */
/* ========== BLOG YAZISI DETAY SAYFASI STİLLERİ ========== */
/* =================================================================== */

.blog-post-full .blog-post-title {
    font-size: 40px;
    margin-bottom: 15px;
}

.article-body p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.article-body p:first-of-type {
    font-size: 18px;
    font-weight: 600;
    color: #555;
}

.article-body h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.article-body ul li {
    font-size: 17px;
    padding: 10px 0 10px 25px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.article-body ul li::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 12px;
}

.blog-post-full .btn-secondary {
    margin-top: 30px;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block; /* Kartın tamamını kaplaması için */
}

.blog-post-image-preview {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.blog-post-content-preview h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.blog-post-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.blog-post-content-preview p {
    margin-bottom: 20px;
}

.read-more-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #c3913e;
}

.full-content ul {
    list-style-position: inside;
    padding-left: 20px;
}

.full-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--primary-color);
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Mobil uyumluluk için ek düzenleme */
@media (max-width: 768px) {
    .blog-page-grid {
        grid-template-columns: 1fr;
    }
}
/* =================================================================== */
/* ========== İLETİŞİM SAYFASI ÖZEL STİLLERİ ========== */
/* =================================================================== */

.contact-page-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-details h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-form-container {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
}

.contact-form-container h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.contact-form-container button {
    width: 100%;
    border: none;
}

.map-container {
    width: 100%;
    height: 450px;
    margin-top: 50px;
}

/* Mobil uyumluluk */
@media (max-width: 992px) {
    .contact-page-container {
        grid-template-columns: 1fr;
    }
}
/* =================================================================== */
/* ========== ONLINE ÖDEME SAYFASI ÖZEL STİLLERİ ========== */
/* =================================================================== */

/* =================================================================== */
/* ========== ONLINE ÖDEME SAYFASI ÖZEL STİLLERİ ========== */
/* =================================================================== */

.eft-info-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.bank-details-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bank-logo-container {
    text-align: center;
    margin-bottom: 10px;
}

.bank-logo {
    max-height: 50px;
    width: auto;
}

.bank-info p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    word-break: break-all; /* Uzun IBAN'ların taşmasını engeller */
}

.bank-info p strong {
    color: var(--primary-color);
}

.eft-note {
    background-color: #fff8e1; /* Daha yumuşak bir sarı tonu */
    border-left: 5px solid #ffc107; /* Belirgin bir sarı */
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center; /* İkon ve metni dikeyde ortala */
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.eft-note i {
    font-size: 28px; /* İkonu büyüt */
    color: #ffc107;
}

.eft-note div {
    flex: 1;
}

.eft-note strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px; /* Başlığı büyüt */
    color: #5d4037;
}

.eft-note p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #6d4c41;
}


.pricing-grid {
    display: flex; /* display: grid; yerine flex kullan */
    flex-wrap: wrap; /* Elemanların sığmadığında alt satıra geçmesini sağla */
    justify-content: center; /* Elemanları yatayda ortala */
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background-color: var(--white-color);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    border-width: 2px;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price-base {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 5px;
}

.price-total {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price-total span {
    font-size: 18px;
    font-weight: 400;
    color: #6c757d;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 400;
    color: #6c757d;
}

.pricing-desc {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
    min-height: 50px;
}

.pricing-card .btn {
    width: 100%;
}

.custom-payment-card {
    grid-column: 1 / -1; /* Kartın tam genişlikte olmasını sağlar */
    margin-top: 20px;
}

.custom-payment-form {
    margin-top: 20px;
}

.custom-payment-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

#custom-payment-btn {
    width: 100%;
}
.popup-content form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    resize: vertical; /* Allow vertical resizing, disable horizontal */
}