/* ==========================================
   1. 2026 Modern CSS Reset ve Değişkenler 
   ========================================== */
:root {
    --bg-primary: #ffffff;
    --bg-dark: #1A1A1A;
    --text-main: #2C3E50;
    --text-muted: #7F8C8D;
    --accent-color: #F2A900; /* Canlı Safran Sarısı - Dekorasyon vurgusu */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==========================================
   2. Header & Navigasyon Stilleri 
   ========================================== */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); /* 2026 Modern cam efekti */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 800;
    color: var(--bg-dark);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent-color);
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--bg-dark);
    padding: 8px 0;
}

.nav-link:hover, .nav-item:hover > .nav-link {
    color: var(--accent-color);
}

/* Dropdown / Açılır Menü (Masaüstü için) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-dark);
    min-width: 220px;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item a:hover {
    background-color: rgba(255,255,255,0.05);
    color: var(--accent-color);
    padding-left: 25px; /* Şık bir kayma efekti */
}

/* CTA Buton */
.header-cta .btn-quote {
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 650;
    font-size: 14px;
}

.header-cta .btn-quote:hover {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(242, 169, 0, 0.3);
}

/* Mobil Hamburger Menü Butonu (Masaüstünde Gizli) */
.mobile-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

/* ==========================================
   3. Modern Hero Section Stilleri 
   ========================================== */
.hero-section {
    padding: 70px 0;
    background-color: #FAFAFA;
    min-height: calc(85vh - 70px);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Sol taraf biraz daha geniş */
    gap: 50px;
    align-items: center;
}

.hero-content .hero-sub {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 850;
    line-height: 1.15;
    color: var(--bg-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 650;
    font-size: 15px;
    display: inline-block;
}

.hero-buttons .btn-primary {
    background-color: var(--bg-dark);
    color: #ffffff;
}

.hero-buttons .btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    box-shadow: 0 5px 20px rgba(242, 169, 0, 0.3);
}

.hero-buttons .btn-secondary {
    border: 2px solid var(--bg-dark);
    color: var(--bg-dark);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--bg-dark);
    color: #ffffff;
}

/* Sağ Taraf Görsel Alanı */
.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-bg {
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   4. Footer Alanı Stilleri 
   ========================================== */
.site-footer-area {
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 60px 0 0 0;
    margin-top: 50px;
    border-top: 3px solid var(--accent-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Yan yana 4 kolon */
    gap: 40px;
}

.footer-col h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-col h3 span {
    color: var(--accent-color);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col p {
    color: #B3B3B3;
    font-size: 14px;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #B3B3B3;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-col strong {
    color: #ffffff;
}

/* Footer Alt Kısım */
.footer-bottom {
    background-color: #111111;
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: #777777;
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================
   5. Responsive / Mobil Kırılmalar & Grid Düzeltmeleri
   ========================================== */

/* Tablet & Küçük Ekranlar (Ara Geçiş Ekranları) */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr; /* Yapıyı alt alta alır */
        text-align: center;
        gap: 40px;
    }

    .hero-content p {
        margin: 0 auto 30px auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrap {
        max-width: 600px;
        margin: 0 auto;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr; /* 4 kolonu 2x2 matris yapar, taşmayı önler */
        gap: 30px;
    }
}

/* Tam Mobil Görünüm (Telefonlar) */
@media (max-width: 768px) {
    /* Hamburger Menü Butonunu Görünür ve Boyutlu Yapıyoruz */
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 24px;
        position: relative;
        z-index: 1001;
    }
    
    /* İçindeki Çizgilerin Şekli */
    .mobile-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 2px 0;
        background-color: var(--bg-dark);
        transition: var(--transition);
        border-radius: 2px;
    }

    /* Masaüstü CTA Butonunu Kapat */
    .header-cta {
        display: none;
    }

    /* Mobil Menü Konumu ve Görünüşü */
    .main-nav {
        display: block; 
        position: fixed;
        left: -100%; 
        top: 70px; 
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: calc(100vh - 70px);
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    /* Menü Aktifken Soldan Kayarak Gelecek */
    .main-nav.active {
        left: 0;
    }

    .main-nav .nav-list {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        align-items: flex-start;
    }

    /* Mobilde Dropdown Yapısı */
    .dropdown-menu {
        position: relative;
        left: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        box-shadow: none;
        padding-left: 15px;
        display: none; 
    }
    
    .nav-item.open .dropdown-menu {
        display: block;
    }

    .dropdown-item a {
        color: var(--text-main);
        padding: 8px 10px;
    }

    .dropdown-item a:hover {
        padding-left: 15px;
    }

    /* Hamburger Butonunun 'X' Şeklini Alması Düzeltmesi */
    .mobile-toggle.active .bar:nth-child(2) { 
        opacity: 0; 
    }
    .mobile-toggle.active .bar:nth-child(1) { 
        transform: translateY(7px) rotate(45deg); 
    }
    .mobile-toggle.active .bar:nth-child(3) { 
        transform: translateY(-7px) rotate(-45deg); 
    }

    /* Hero Mobil Düzenlemeleri */
    .hero-section {
        padding: 40px 0;
    }
    .hero-container {
        grid-template-columns: 1fr; 
        gap: 35px;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        margin: 0 auto 30px auto;
    }
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }
    .hero-buttons .btn {
        width: 100%; /* Butonlar mobilde tam genişlik kaplar */
        text-align: center;
    }
    .hero-image-bg {
        height: 300px;
    }

    /* Footer Mobil Düzenlemeleri */
    .footer-container {
        grid-template-columns: 1fr; /* Telefon ekranında tamamen tek kolona düşer */
        gap: 30px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%); /* Başlık altındaki çizgileri mobilde ortalar */
    }

    .footer-col ul li a:hover {
        padding-left: 0; /* Mobilde sola yaslı kayma efektini sıfırlıyoruz */
    }
    
    .bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ==========================================
   6. Hizmetlerimiz (Services) Alanı Stilleri
   ========================================== */
.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.services-sub {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.services-header h2 {
    font-size: 38px;
    font-weight: 850;
    color: var(--bg-dark);
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.services-header h2 span {
    color: var(--accent-color);
}

.services-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Kartların Izgara (Grid) Yapısı */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tekil Kart Stili */
.service-card {
    background-color: #FAFAFA;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

/* Hover Efekti: Kart yukarı esner ve gölge alır */
.service-card:hover {
    transform: translateY(-10px);
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.05);
}

/* Kartın altındaki safran sarısı çizgi efekti */
.service-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.service-card:hover::after {
    width: 100%;
}

/* İkon Alanı */
.service-icon {
    margin-bottom: 25px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--bg-dark);
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 750;
    color: var(--bg-dark);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-dark);
    display: inline-block;
}

.service-card:hover .service-link {
    color: var(--accent-color);
}
/* ==========================================
   Hizmetler Mobil & Tablet Uyum Kırılmaları
   ========================================== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 kolona düşer */
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    .services-header h2 {
        font-size: 28px;
    }
    .services-grid {
        grid-template-columns: 1fr; /* Mobilde tamamen tek kolona düşer */
        gap: 20px;
    }
    .service-card {
        padding: 30px 20px;
        text-align: center;
    }
    .icon-box {
        margin: 0 auto; /* Mobilde ikonları ortalar */
    }
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--bg-dark);
    border-radius: 8px;
    transition: var(--transition);
    /* İkonu tam ortalamak için ekledik */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.icon-box svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff; /* İkon rengi beyaz */
    transition: var(--transition);
}

/* Kartın üzerine gelindiğinde ikonun rengini koyu yapıyoruz */
.service-card:hover .icon-box svg {
    stroke: var(--bg-dark);
}


/* ==========================================
   7. Neden Biz? (Why Choose Us) Stilleri
   ========================================== */
.why-us-section {
    padding: 90px 0;
    background-color: #FAFAFA;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Sol görsel, sağ içerik dengesi */
    gap: 60px;
    align-items: center;
}

/* Sol Görsel Alanı */
.why-us-image {
    position: relative;
}

.why-us-img-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    height: 500px;
}

.why-us-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Yıllık Deneyim Rozeti */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    border-bottom: 4px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
}

.experience-badge h3 {
    font-size: 32px;
    font-weight: 850;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sağ İçerik Alanı */
.why-us-sub {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.why-us-content h2 {
    font-size: 38px;
    font-weight: 850;
    color: var(--bg-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.why-us-content h2 span {
    color: var(--accent-color);
}

.why-us-main-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Maddelerin Listesi */
.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon-box {
    width: 36px;
    height: 36px;
    background-color: rgba(242, 169, 0, 0.1); /* Safran sarısı şeffaf arka plan */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-box svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-color);
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 750;
    color: var(--bg-dark);
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================
   Neden Biz? Mobil Uyum Kırılmaları
   ========================================== */
@media (max-width: 992px) {
    .why-us-container {
        grid-template-columns: 1fr; /* Alt alta dizilim */
        gap: 40px;
    }
    
    .why-us-image {
        order: 2; /* Mobilde görsel içerik maddelerinin altına düşsün */
    }

    .why-us-img-box {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 50px 0;
    }

    .why-us-content h2 {
        font-size: 28px;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .experience-badge h3 {
        font-size: 26px;
    }
}


/* ==========================================
   8. Hızlı Teklif / CTA Stilleri
   ========================================== */
.cta-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Sol tarafa hafif bir dekoratif renk geçişi */
.cta-section::before {
    content: '';
    position: absolute;
    left: -100px;
    top: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 169, 0, 0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 850;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.cta-content h2 span {
    color: var(--accent-color);
}

.cta-content p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Buton Alanı */
.cta-action {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cta-phone {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 750;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-cta-phone svg {
    width: 18px;
    height: 18px;
}

.btn-cta-phone:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
}

.btn-cta-form {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.btn-cta-form:hover {
    background-color: #ffffff;
    color: var(--bg-dark);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* ==========================================
   CTA Mobil Uyum Kırılmaları
   ========================================== */
@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .cta-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .cta-action {
        flex-direction: column;
        width: 100%;
    }
    .btn-cta-phone, .btn-cta-form {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   9. Hakkımızda Sayfasına Özel Stiller
   ========================================== */

/* Sayfa Başlığı / Breadcrumb Alanı */
.page-header {
    background-color: var(--bg-dark);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-header h1 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 850;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.page-header h1 span {
    color: var(--accent-color);
}

.page-header .page-header-container {
    display: block;
    text-align: center;
}

.breadcrumb {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
}

.breadcrumb a {
    color: #ffffff;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

/* Hikayemiz ve Vizyon Alanı (Grid) */
.about-main-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-content h2 {
    font-size: 34px;
    font-weight: 850;
    color: var(--bg-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-text-content h2 span {
    color: var(--accent-color);
}

.about-text-content p {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text-content p.highlight {
    font-size: 18px;
    font-weight: 600;
    color: var(--bg-dark);
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

/* Değerlerimiz / İstatistik Kutuları */
.values-section {
    padding: 60px 0;
    background-color: #FAFAFA;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: #ffffff;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 750;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Hakkımızda Mobil Uyum Kırılmaları */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text-content p.highlight {
        border-left: none;
        border-top: 2px solid var(--accent-color);
        border-bottom: 2px solid var(--accent-color);
        padding: 10px 0;
    }
    
    .values-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-header h1 { 
        font-size: 32px; 
    }
    .about-text-content h2 { 
        font-size: 26px; 
    }
}

/* ==========================================
   9. Hakkımızda Sayfası Gelişmiş Stiller
   ========================================== */

/* Sayfa Başlığı / Breadcrumb Alanı */
.page-header {
    background-color: var(--bg-dark);
    padding: 60px 0;
    text-align: center;
    position: relative;
}
.page-header h1 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 850;
    letter-spacing: -1px;
    margin-bottom: 10px;
}
.page-header h1 span {
    color: var(--accent-color);
}
.page-header .page-header-container {
    display: block;
    text-align: center;
}
.breadcrumb {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
}
.breadcrumb a {
    color: #ffffff;
}
.breadcrumb a:hover {
    color: var(--accent-color);
}

/* Hikayemiz Bölümü */
.about-main-section {
    padding: 80px 0;
    background-color: #ffffff;
}
.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text-content h2 {
    font-size: 34px;
    font-weight: 850;
    color: var(--bg-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.about-text-content h2 span {
    color: var(--accent-color);
}
.about-text-content p {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-text-content p.highlight {
    font-size: 18px;
    font-weight: 600;
    color: var(--bg-dark);
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

/* Değerlerimiz Alanı */
.values-section {
    padding: 60px 0;
    background-color: #FAFAFA;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.value-card {
    background-color: #ffffff;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
.value-card h3 {
    font-size: 20px;
    font-weight: 750;
    color: var(--bg-dark);
    margin-bottom: 12px;
}
.value-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Ortak Başlık Stili */
.section-title-center {
    text-align: center;
    margin-bottom: 50px;
}
.section-sub-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}
.section-title-center h2 {
    font-size: 36px;
    font-weight: 850;
    color: var(--bg-dark);
}
.section-title-center h2 span {
    color: var(--accent-color);
}

/* Öncesi / Sonrası (Before-After) Stilleri */
.gallery-section {
    padding: 80px 0;
    background-color: #ffffff;
}
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.gallery-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.gallery-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-box:hover img {
    transform: scale(1.03);
}
.badge-ba {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}
.before-badge { left: 20px; background-color: #e74c3c; }
.after-badge { right: 20px; background-color: #2ecc71; }

/* Yorumlar Stilleri */
.reviews-section {
    padding: 80px 0;
    background-color: #FAFAFA;
}
.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.review-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.02);
}
.stars {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 18px;
}
.review-card p {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.review-card h4 {
    font-size: 16px;
    font-weight: 750;
    color: var(--bg-dark);
}
.review-card span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Sıkça Sorulan Sorular (FAQ) Stilleri */
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.faq-item {
    background-color: #FAFAFA;
    padding: 25px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}
.faq-item h4 {
    font-size: 18px;
    font-weight: 750;
    color: var(--bg-dark);
    margin-bottom: 10px;
}
.faq-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive Geliştirmeler */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .about-text-content p.highlight { border-left: none; border-top: 2px solid var(--accent-color); border-bottom: 2px solid var(--accent-color); padding: 10px 0; }
    .values-container, .reviews-container { grid-template-columns: 1fr; gap: 20px; }
    .gallery-item { grid-template-columns: 1fr; gap: 15px; }
    .gallery-box { height: 250px; }
}
@media (max-width: 768px) {
    .page-header h1 { font-size: 32px; }
    .about-text-content h2, .section-title-center h2 { font-size: 26px; }
}

/* ==========================================
   10. Hizmetlerimiz Sayfasına Özel Stiller
   ========================================== */
.services-page-section {
    padding: 80px 0;
    background-color: #FAFAFA;
}

.services-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Şık 2'li düzen */
    gap: 40px;
}

.services-page-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

/* Üzerine gelindiğinde hafifçe kalksın ve üst tarafa vurgu rengi atsın */
.services-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.services-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.services-page-card:hover::before {
    transform: scaleX(1);
}

/* İkon Alanı */
.services-page-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.services-page-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
    transition: var(--transition);
}

.services-page-card:hover .services-page-icon {
    background-color: var(--accent-color);
}

.services-page-card:hover .services-page-icon svg {
    stroke: var(--bg-dark);
}

/* İçerik Metinleri */
.services-page-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.services-page-card p {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Hizmet Alt Özellik Listesi */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.service-features-list li {
    font-size: 14px;
    font-weight: 650;
    color: var(--bg-dark);
}

/* Hizmetlerimiz Sayfası Mobil Uyum */
@media (max-width: 992px) {
    .services-page-container {
        grid-template-columns: 1fr; /* Mobilde alt alta tek sıra */
        gap: 30px;
    }
    .services-page-card {
        padding: 30px;
    }
}

/* ==========================================
   11. İletişim Sayfasına Özel Stiller
   ========================================== */
.contact-page-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Sol bilgi, sağ form dengesi */
    gap: 60px;
    align-items: flex-start;
}

/* Sol Taraf Bilgi Alanları */
.contact-sub {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.contact-info-wrap h2 {
    font-size: 36px;
    font-weight: 850;
    color: var(--bg-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-info-wrap h2 span {
    color: var(--accent-color);
}

.contact-main-desc {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    background-color: var(--bg-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 12px;
}

.contact-info-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-color);
}

.contact-info-text h4 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
    font-size: 18px;
    font-weight: 750;
    color: var(--bg-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-text a:hover {
    color: var(--accent-color);
}

/* Sağ Taraf Form Alanı */
.contact-form-wrap {
    background-color: #FAFAFA;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.02);
}

.contact-form-wrap h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.contact-form-wrap h3 span {
    color: var(--accent-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group-row {
    display: flex;
    gap: 20px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-dark);
}

.contact-form input, .contact-form select, .contact-form textarea {
    padding: 14px 18px;
    font-size: 14.5px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    background-color: #ffffff;
    color: var(--bg-dark);
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.1);
}

.btn-submit-form {
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-weight: 750;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.btn-submit-form:hover {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* İletişim Sayfası Mobil Kırılmalar */
@media (max-width: 992px) {
    .contact-page-container {
        grid-template-columns: 1fr; /* Alt alta dizilim */
        gap: 50px;
    }
    .contact-form-wrap {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .form-group-row {
        flex-direction: column;
        gap: 20px;
    }
    .contact-info-text p, .contact-info-text a {
        font-size: 16px;
    }
}

/* ==========================================
   12. Blog & Blog Detay Sayfası Stilleri
   ========================================== */
.blog-page-section, .blog-detail-section {
    padding: 80px 0;
    background-color: #FAFAFA;
}

.blog-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Jilet gibi 3'lü kolon */
    gap: 30px;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.blog-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--bg-dark);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 750;
    padding: 6px 12px;
    border-radius: 4px;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--bg-dark);
    line-height: 1.4;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.blog-card-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-read-more {
    font-size: 14px;
    font-weight: 750;
    color: var(--bg-dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card:hover .btn-read-more {
    color: var(--accent-color);
}

/* --- Blog Detay Sayfası Stilleri --- */
.blog-detail-container {
    max-width: 800px; /* Okuma kolaylığı için dar tutuldu */
    margin: 0 auto;
    padding: 0 20px;
}

.blog-article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.blog-detail-img {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
}

.blog-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.blog-article h2 {
    font-size: 32px;
    font-weight: 850;
    color: var(--bg-dark);
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.blog-detail-content-text p {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-detail-content-text p.lead-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--bg-dark);
    border-left: 3px solid var(--accent-color);
    padding-left: 15px;
}

.blog-turn-back {
    margin-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 25px;
}

.btn-back {
    font-size: 14.5px;
    font-weight: 750;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.btn-back:hover {
    color: var(--bg-dark);
}

/* Mobil Kırılmalar */
@media (max-width: 992px) {
    .blog-page-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-page-container {
        grid-template-columns: 1fr;
    }
    .blog-article {
        padding: 25px;
    }
    .blog-detail-img {
        height: 250px;
    }
    .blog-article h2 {
        font-size: 24px;
    }
}


/* ==========================================
   13. Hizmet Bölgelerimiz & Detay Stilleri
   ========================================== */
.regions-page-section, .region-detail-section {
    padding: 80px 0;
    background-color: #FAFAFA;
}

.regions-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Şık yan yana ikili kartlar */
    gap: 35px;
}

.region-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.region-card-img {
    height: 240px;
    overflow: hidden;
}

.region-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.region-card:hover .region-card-img img {
    transform: scale(1.03);
}

.region-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.region-card-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.region-card-content p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-region-detail {
    font-size: 14px;
    font-weight: 750;
    color: var(--bg-dark);
    text-decoration: none;
    transition: var(--transition);
}

.region-card:hover .btn-region-detail {
    color: var(--accent-color);
}

/* --- Bölge Detay Sayfası Tasarımı --- */
.region-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.region-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.region-detail-main {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.region-detail-img-box {
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.region-detail-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.region-detail-main h2 {
    font-size: 30px;
    font-weight: 850;
    color: var(--bg-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.region-detail-main h2 span {
    color: var(--accent-color);
}

.region-lead {
    font-size: 17px;
    font-weight: 600;
    color: var(--bg-dark);
    line-height: 1.7;
    border-left: 3px solid var(--accent-color);
    padding-left: 15px;
    margin-bottom: 20px;
}

.region-detail-main p {
    font-size: 15.5px;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Bölge Avantaj Listesi */
.region-advantages {
    background-color: #FAFAFA;
    padding: 25px 30px;
    border-radius: 8px;
    margin-top: 35px;
}

.region-advantages h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 15px;
}

.region-advantages ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.region-advantages li {
    font-size: 14.5px;
    font-weight: 650;
    color: var(--bg-dark);
}

/* Sidebar Call To Action Kutusu */
.region-cta-box {
    background-color: var(--bg-dark);
    padding: 35px 30px;
    border-radius: 12px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.region-cta-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.region-cta-box p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-sidebar-cta {
    display: block;
    background-color: var(--accent-color);
    color: var(--bg-dark);
    padding: 15px;
    border-radius: 6px;
    font-weight: 750;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.btn-sidebar-cta:hover {
    transform: translateY(-2px);
    background-color: #ffffff;
}

/* Mobil Kırılmalar */
@media (max-width: 992px) {
    .regions-page-container {
        grid-template-columns: 1fr;
    }
    .region-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .region-detail-main {
        padding: 25px;
    }
    .region-detail-img-box {
        height: 240px;
    }
}


<style>
.process-section {
    padding: 100px 20px;
    background-color: #ffffff;
    color: #2d3748;
}
.process-container {
    max-width: 1200px;
    margin: 0 auto;
}
.process-header {
    text-align: center;
    margin-bottom: 60px;
}
.process-sub {
    display: inline-block;
    color: #f2a900;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.process-header h2 {
    font-size: 34px;
    color: #1a202c;
    font-weight: 800;
    margin-bottom: 12px;
}
.process-header h2 span {
    color: #f2a900;
}
.process-header p {
    color: #718096;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    position: relative;
}
.process-card {
    background: #f8f9fa;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 35px 25px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: #f2a900;
    background: #ffffff;
}
.process-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    font-weight: 800;
    color: #e2e8f0;
    transition: color 0.3s ease;
}
.process-card:hover .process-number {
    color: #f2a900;
}
.process-icon-box {
    width: 60px;
    height: 60px;
    background: #fff9e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #f2a900;
    transition: background 0.3s ease, color 0.3s ease;
}
.process-card:hover .process-icon-box {
    background: #f2a900;
    color: #ffffff;
}
.process-icon-box svg {
    width: 28px;
    height: 28px;
}
.process-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}
.process-card p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}
