/* === TEMEL AYARLAR VE DEĞİŞKENLER === */
:root {
    --primary-color: #1a3a5d;   /* Kurumsal Koyu Mavi */
    --secondary-color: #d4a373; /* Vurgu Rengi - Şık Kahve/Altın */
    --background-color: #f8f7f4;/* Hafif Kırık Beyaz Arka Plan */
    --text-color: #333333;      /* Ana Metin Rengi */
    --light-gray: #e9ecef;
    --white: #ffffff;

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    --container-width: 1200px;
    --header-height: 80px;
}

/* === GENEL RESETLEME VE AYARLAR === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.7;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    line-height: 1.2;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}
.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.section-tag {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}
.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}
.text-center { text-align: center; }

/* =============================================== */
/* === YENİ HEADER VE MENÜ STİLLERİ (SIFIRDAN) === */
/* =============================================== */

/* --- Genel Header Ayarları --- */
.site-header {
    background-color: var(--white);
    height: 100px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-logo img {
    max-height: 85px;
    border-radius: 50%;
}

/* --- Masaüstü Menüsü (768px üstü) --- */
.main-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: 35px;
}

.main-nav a {
    color: var(--primary-color);
    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
    text-decoration: none;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-btn {
    padding: 10px 20px;
    margin-left: 30px;
}

/* --- Mobil Menü Butonu (Hamburger) --- */
.mobile-nav-toggle {
    display: none; /* Masaüstünde gizli */
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002; /* Her şeyin üstünde */
    padding: 0;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 4px;
    position: absolute;
    transition: transform 0.25s ease-in-out, background-color 0.25s ease-in-out;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/* --- Mobil Menü (Gizli Durum) --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.mobile-nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 20px;
}

.mobile-nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 2rem;
    font-family: var(--font-secondary);
    padding: 10px;
    transition: color 0.3s ease;
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    margin-top: 30px;
    
}


/* --- MOBİL GÖRÜNÜM (768px ve altı) --- */
@media (max-width: 768px) {
    .desktop-nav {
        display: none; /* Masaüstü menüsünü ve butonunu gizle */
    }

    .mobile-nav-toggle {
        display: block; /* Hamburger butonunu göster */
    }
}

/* --- MENÜ AÇIKKEN UYGULANACAK STİLLER (JS ile body.menu-open) --- */
body.menu-open {
    overflow: hidden; /* Arka planın kaymasını engelle */
}

body.menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hamburger -> X Animasyonu */
body.menu-open .hamburger-inner {
    transform: rotate(45deg);
    background-color: var(--white); /* Çarpı rengi beyaz olsun */
}

body.menu-open .hamburger-inner::before {
    transform: rotate(90deg) translate(-10px, 0px);
    width: 30px;
}

body.menu-open .hamburger-inner::after {
    transform: rotate(-90deg) translate(10px, 0px);
    width: 30px;
}

body.menu-open .mobile-nav-toggle {
    position: fixed; /* Menü açıldığında ekranın sağ üstünde sabit kalsın */
    top: 20px;
    right: 20px;
}
/* === HERO SECTION === */
.hero-section {
    height: calc(100vh - var(--header-height));
    background: linear-gradient(rgba(26, 58, 93, 0.7), rgba(26, 58, 93, 0.7)), url('../images/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}
.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 15px;
}
.hero-subtitle {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* === INFO CARDS SECTION === */
.info-cards-section {
    background-color: var(--background-color);
    padding: 80px 0;
}
.info-cards-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.info-cards-section .card {
    text-align: center;
    padding: 20px;
}
.info-cards-section .card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.info-cards-section .card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* === ABOUT SHORT SECTION === */
.about-short-section {
    padding: 100px 0;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-content p {
    margin-bottom: 25px;
}

/* === FEATURED PRODUCTS SECTION === */
.featured-products-section {
    background-color: var(--background-color);
    padding: 100px 0;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.product-card img {
    transition: transform 0.5s ease;
    max-height: 400px;
    object-fit: cover;
    max-width: 400px;
}
.product-card:hover img {
    transform: scale(1.1);
}
.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 40px 20px 20px;
    color: var(--white);
}
.product-info h3 {
    color: var(--white);
    margin-bottom: 5px;
}
.product-info a {
    color: var(--white);
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.product-card:hover .product-info a {
    opacity: 1;
    transform: translateY(0);
}
.product-info a i {
    margin-left: 5px;
}

/* ======================================= */
/* === YENİ VE PROFESYONEL FOOTER CSS === */
/* ======================================= */

.site-footer-new {
    background-color: var(--primary-color);
    color: #a9b3be; /* Beyaza yakın ama daha yumuşak bir gri */
    padding-top: 60px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    max-height: 100px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.footer-about {
    line-height: 1.8;
}

.widget-title {
    font-family: var(--font-secondary);
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    margin-bottom: 12px;
}

.widget-list a {
    color: #a9b3be;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.widget-list a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
}

.contact-list i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
    width: 15px;
}

/* --- Alt Bar --- */
.footer-bottom {
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    margin: 0;
}

.social-links a {
    color: #a9b3be;
    margin-left: 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

/* --- Footer Mobil Uyumluluk --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-widget {
        margin-bottom: 20px;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 20px;
    }
}

/* === WHATSAPP FLOAT BUTTON === */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* === MOBİL UYUMLULUK (RESPONSIVE) === */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .about-image { order: -1; margin-bottom: 30px; }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header .main-nav, .header-btn { display: none; } /* Menüyü ve butonu gizle */
    .mobile-nav-toggle { display: block; } /* Hamburger ikonu göster */
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    .product-grid { grid-template-columns: 1fr; }
    .site-footer .container { flex-direction: column; gap: 15px; }
}

/* === İÇ SAYFALAR İÇİN ORTAK BAŞLIK ALANI === */
.page-header {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}
.page-header h1 {
    font-size: 3rem;
    color: var(--white);
}
.page-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 10px auto 0;
}

/* === ÜRÜNLER SAYFASI - KATEGORİ VİTRİNİ === */
.category-showcase {
    padding: 80px 0;
    background-color: var(--background-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-color);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover; /* Resimlerin orantılı kalmasını sağlar */
}

.category-card .card-content {
    padding: 25px;
    flex-grow: 1; /* Kartların aynı hizada bitmesini sağlar */
    display: flex;
    flex-direction: column;
}

.category-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.category-card p {
    margin-bottom: 20px;
    flex-grow: 1; /* Açıklamaların aynı hizada bitmesini sağlar */
}

.category-card span {
    font-weight: 700;
    color: var(--secondary-color);
    align-self: flex-start; /* Butonu/linki aşağıya sabitler */
}

.category-card span i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.category-card:hover span i {
    transform: translateX(5px);
}


/* === MOBİL UYUMLULUK GÜNCELLEMESİ === */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* === ALT KATEGORİ SAYFASI === */
.subcategory-selection {
    padding: 80px 0;
}
.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.subcategory-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    color: var(--white);
    display: block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.subcategory-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.subcategory-card:hover img {
    transform: scale(1.05);
}
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s ease;
}
.subcategory-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(212, 163, 115, 0.8) 0%, rgba(212, 163, 115, 0.5) 50%, transparent 100%);
}
.subcategory-card h3 {
    color: var(--white);
    font-size: 2rem;
    margin: 0;
}
.subcategory-card p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}
.subcategory-card span {
    font-weight: 700;
    font-size: 1.1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}
.subcategory-card:hover span {
    transform: translateY(0);
    opacity: 1;
}

/* === TEKLİF FORMU SAYFASI === */
.offer-form-section {
    padding: 80px 0;
    background-color: var(--background-color);
}
.offer-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.form-step {
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.form-step:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.form-step h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.2);
}
.form-submit {
    text-align: center;
    margin-top: 40px;
}
.btn-submit {
    padding: 15px 50px;
    font-size: 1.2rem;
}

/* === HAKKIMIZDA SAYFASI STİLLERİ === */

/* --- Hikayemiz Bölümü --- */
.story-section {
    padding: 100px 0;
    background-color: var(--white);
}
.story-content p {
    margin-bottom: 20px;
}
.story-image img {
    border-radius: 8px;
    box-shadow: -20px -20px 0 0 var(--background-color);
    max-height: 500px;
    height: 500px;
    object-fit: cover;
}
/* Grid'in ters sıralaması için (resim sağda) */
.grid-2 .story-content {
    /* Mobil görünüm için sıralamayı ayarlar */
    order: 2;
}
.grid-2 .story-image {
    order: 1;
}
/* Geniş ekranlarda sıralamayı düzeltir */
@media (min-width: 992px) {
    .grid-2 .story-content {
        order: 1;
    }
    .grid-2 .story-image {
        order: 2;
    }
}


/* --- Misyon & Vizyon Bölümü --- */
.mission-vision-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}
.mission-vision-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.mission-card, .vision-card {
    background-color: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}
.mission-card h3, .vision-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* --- Değerlerimiz Bölümü --- */
.values-section {
    padding: 100px 0;
    background-color: var(--background-color);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}
.value-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* --- Mobil Uyum İçin Ekstra Ayarlar --- */
@media (max-width: 992px) {
    .story-section .grid-2 {
        gap: 40px;
    }
    .story-image {
        /* Mobil görünümde gölgeyi sıfırla */
        box-shadow: none !important;
    }
    .mission-vision-section .container {
        grid-template-columns: 1fr;
    }
}

/* === İLETİŞİM SAYFASI STİLLERİ === */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Sol sütun daha dar, sağ daha geniş */
    gap: 60px;
    background-color: var(--white);
}

/* Sol Taraf: Bilgiler */
.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.contact-info p {
    margin-bottom: 30px;
    line-height: 1.8;
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
    margin-top: 5px;
    width: 25px;
    text-align: center;
}
.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.info-item p {
    margin-bottom: 5px;
    line-height: 1.6;
}
.info-item a {
    color: var(--text-color);
    transition: color 0.3s ease;
}
.info-item a:hover {
    color: var(--secondary-color);
}

/* Sağ Taraf: Form */
.contact-form-wrapper {
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 8px;
}
.contact-form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 25px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form button {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.1rem;
}

/* Harita Bölümü */
.map-section iframe {
    display: block; /* iframe altındaki boşluğu kaldırır */
    width: 100%;
}


/* Mobil Uyum İçin İletişim Sayfası */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-form-wrapper {
        margin-top: 30px;
    }
}


/* === NASIL ÇALIŞIYORUZ (SÜREÇ) SAYFASI STİLLERİ === */
.process-section {
    padding: 100px 0;
    background-color: var(--background-color);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Ters yerleşim için */
.process-step.reverse .process-content {
    order: 1;
}
.process-step.reverse .process-image {
    order: 2;
}

.process-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.process-content {
    position: relative;
}

.step-number {
    font-size: 6rem;
    font-weight: 700;
    color: var(--light-gray);
    position: absolute;
    top: -50px;
    left: -20px;
    z-index: 0;
    line-height: 1;
}

.process-step.reverse .step-number {
    left: auto;
    right: -20px;
}

.process-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.process-content h3 i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.5rem;
}

.process-content p {
    position: relative;
    z-index: 1;
}

/* Harekete Geçirici Mesaj (CTA) Bölümü */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}
.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.cta-section p {
    margin-bottom: 30px;
    opacity: 0.9;
}


/* Mobil Uyum İçin Süreç Sayfası */
@media (max-width: 992px) {
    .process-step,
    .process-step.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    .process-step.reverse .process-content,
    .process-step .process-content {
        order: 2;
    }
    .process-step.reverse .process-image,
    .process-step .process-image {
        order: 1;
    }
    .step-number {
        font-size: 4rem;
        top: -20px;
        left: 0;
    }
    .process-step.reverse .step-number {
        right: auto;
        left: 0;
    }
}

/* =============================== */
/* === HIZLI TEKLİF MODAL CSS === */
/* =============================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    
    /* Başlangıçta gizli */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    
    /* Açılış animasyonu */
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.modal-close-btn:hover {
    color: var(--text-color);
    transform: rotate(90deg);
}

.modal-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.modal-kategori-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.modal-kategori-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.modal-kategori-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(26, 58, 93, 0.2);
}

.modal-kategori-link i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.modal-kategori-link:hover i {
    color: var(--white);
}

.modal-kategori-link span {
    font-weight: 500;
    text-align: center;
}

/* ======================================= */
/* === SIKÇA SORULAN SORULAR (SSS) CSS === */
/* ======================================= */

.faq-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden; /* Animasyonun düzgün çalışması için */
}

.faq-question {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question i {
    font-size: 1rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    /* Başlangıçta kapalı */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), padding 0.4s ease;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    line-height: 1.8;
    margin: 0;
}

/* === AKTİF DURUM (JS ile kontrol edilecek) === */

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    /* Açıldığında max-height'i içeriğin sığabileceği bir değere ayarlıyoruz */
    /* JavaScript bu değeri dinamik olarak hesaplayacak */
}



/* ======================================= */
/* ===         BLOG & MAKALE CSS        === */
/* ======================================= */

/* --- Blog Listeleme Sayfası --- */
.blog-listing-section {
    padding: 80px 0;
}

.blog-post-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    background-color: var(--white);
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    overflow: hidden;
    text-decoration: none;
    color: var(--text-color);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-post-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.blog-card-meta i {
    margin-right: 5px;
}

.blog-card-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.blog-card-excerpt {
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card-readmore {
    font-weight: 700;
    color: var(--secondary-color);
}

/* --- Tek Makale Sayfası --- */
.article-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 8px;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

.article-meta {
    color: #777;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.article-featured-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
}

.article-body p {
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.article-body h2, .article-body h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* --- Mobil Uyum --- */
@media (max-width: 768px) {
    .blog-post-card {
        grid-template-columns: 1fr;
    }
    .blog-card-image {
        height: 200px;
    }
    .article-container {
        padding: 30px 20px;
    }
    .article-header h1 {
        font-size: 2rem;
    }
}