/* Kurumsal Sayfalar Ortak Stilleri */

/* Sayfa Arka Planı */
body {
    background-color: #0F172A;
    background-image: linear-gradient(to bottom, #1E293B, #0F172A);
    min-height: 100vh;
}

/* Sayfa Başlığı - Tüm sayfalar için ortak */
.page-header {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
    padding: 100px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}

.breadcrumb {
    justify-content: center;
    background-color: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(255, 255, 255, 0.6);
    padding: 0 10px;
    font-weight: 300;
}

/* İçerik Bölümü - Ortak */
.section-padding {
    padding: 100px 0;
    background-color: transparent;
}

.bg-light {
    background: transparent;
    border-radius: 20px;
    margin: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.02em;
}

.title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* İstatistikler - Ortak Stil */
.stats-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.stats-item:hover {
    transform: translateY(-5px);
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stats-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Kartlar - Ortak Stil */
.card-base {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.card-base:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(79, 70, 229, 0.3) !important;
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3) !important;
}

/* Boş Durum - Ortak */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state-icon {
    font-size: 5rem;
    color: rgba(79, 70, 229, 0.15);
    margin-bottom: 30px;
}

.empty-state h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.empty-state p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* CTA Bölümü - Ortak */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.cta-box {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    line-height: 1.7;
}

.btn-light {
    background-color: white;
    color: #1F2937;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

.btn-light:hover {
    background-color: #F3F4F6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: white;
    color: #1F2937;
    transform: translateY(-2px);
}

/* Floating Elements */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.square {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    top: 50%;
    right: 10%;
    transform: rotate(45deg);
    animation: float 8s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .page-header {
        padding: 80px 0 60px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .cta-box h2 {
        font-size: 1.6rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .stats-text {
        font-size: 0.9rem;
    }
    
    .btn-light, .btn-outline-light {
        padding: 12px 24px;
        font-size: 0.95rem;
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .btn-outline-light {
        margin-left: 0 !important;
    }
}


/* ═══════════════════════════════════════════════════════
   GLOBAL DARK THEME OVERRIDES — Beyaz alan kapatma
═══════════════════════════════════════════════════════ */

/* Bootstrap bg-light override */
.bg-light {
    background: rgba(255,255,255,.03) !important;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Bootstrap form controls — dark tema */
.form-control,
.form-select {
    background: rgba(255,255,255,.07) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .9rem;
    padding: 12px 16px;
    transition: all .3s ease;
}

.form-control::placeholder { color: rgba(255,255,255,.32) !important; }
.form-control:focus,
.form-select:focus {
    background: rgba(255,255,255,.1) !important;
    border-color: rgba(79,70,229,.5) !important;
    box-shadow: 0 0 0 3px rgba(79,70,229,.12) !important;
    color: #fff !important;
    outline: none;
}

.form-select option { background: #1a1a2e; color: #fff; }

/* Input group */
.input-group-text {
    background: rgba(255,255,255,.07) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    color: rgba(255,255,255,.5) !important;
    border-radius: 10px 0 0 10px !important;
}

.input-group .form-control { border-radius: 0 10px 10px 0 !important; }

/* Form labels */
.form-label {
    color: rgba(255,255,255,.75) !important;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Form check */
.form-check-input {
    background-color: rgba(255,255,255,.1) !important;
    border-color: rgba(255,255,255,.2) !important;
}
.form-check-input:checked {
    background-color: #4F46E5 !important;
    border-color: #4F46E5 !important;
}
.form-check-label {
    color: rgba(255,255,255,.65) !important;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .85rem;
}
.form-check-label a { color: #818CF8 !important; }

/* Alert overrides */
.alert-warning {
    background: rgba(245,158,11,.12) !important;
    border-color: rgba(245,158,11,.25) !important;
    color: #F59E0B !important;
    border-radius: 10px;
}

/* Textarea */
textarea.form-control { resize: vertical; min-height: 120px; }

/* Btn primary override */
.btn-primary {
    background: linear-gradient(135deg, #4F46E5, #10B981) !important;
    border: none !important;
    border-radius: 10px !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
    padding: 13px 24px !important;
    transition: all .3s ease !important;
    box-shadow: 0 6px 20px rgba(79,70,229,.35) !important;
}
.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(79,70,229,.5) !important;
}

/* Btn outline primary */
.btn-outline-primary {
    border-color: rgba(79,70,229,.5) !important;
    color: #818CF8 !important;
    border-radius: 10px !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
}
.btn-outline-primary:hover {
    background: linear-gradient(135deg, #4F46E5, #10B981) !important;
    border-color: transparent !important;
    color: #fff !important;
}

/* Page header — Space Grotesk */
.page-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
}

/* Section titles */
.section-title h2 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
}

/* Card text colors */
.card-base h3, .card-base h4, .card-base h5 { color: #fff !important; }
.card-base p { color: rgba(255,255,255,.7) !important; }

/* Testimonial card dark */
.testimonial-card {
    background: rgba(255,255,255,.05) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 16px !important;
    color: #fff !important;
}
.testimonial-card p { color: rgba(255,255,255,.75) !important; }
.testimonial-card h4 { color: #fff !important; }
.testimonial-card .rating i { color: #F59E0B; }

/* Testimonial form card */
.testimonial-form-card {
    background: rgba(255,255,255,.05) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 16px !important;
    padding: 36px !important;
}

/* Privacy sidebar */
.privacy-nav-card {
    background: rgba(255,255,255,.05) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 14px !important;
    padding: 24px !important;
}
.privacy-nav-card h4 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; }
.privacy-nav-list { list-style: none; padding: 0; margin: 0; }
.privacy-nav-list a {
    display: block;
    padding: 9px 14px;
    color: rgba(255,255,255,.6) !important;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .88rem;
    transition: all .25s ease;
    margin-bottom: 4px;
}
.privacy-nav-list a:hover,
.privacy-nav-list a.active {
    background: rgba(79,70,229,.15) !important;
    color: #818CF8 !important;
}

.privacy-contact {
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 14px !important;
    padding: 24px !important;
}
.privacy-contact h4 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; }
.privacy-contact p { color: rgba(255,255,255,.6) !important; font-size: .88rem; }

/* Privacy content */
.privacy-section {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 36px;
    margin-bottom: 24px;
}
.privacy-header { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.privacy-header h2 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; font-size: 1.5rem !important; margin: 0 !important; }
.last-updated { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 6px; font-family: 'Space Grotesk', sans-serif; }
.privacy-body h3, .privacy-body h4 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; margin-top: 20px; }
.privacy-body p, .privacy-body li { color: rgba(255,255,255,.7) !important; font-family: 'Space Grotesk', sans-serif; line-height: 1.8; }
.privacy-body ul { padding-left: 20px; }
.privacy-body strong { color: rgba(255,255,255,.9) !important; }

/* Social area cards */
.social-area-card {
    background: rgba(255,255,255,.05) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 16px !important;
    padding: 32px !important;
    transition: all .35s ease !important;
}
.social-area-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(79,70,229,.3) !important;
    box-shadow: 0 20px 50px rgba(79,70,229,.15) !important;
}
.social-area-card h3 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; }
.social-area-card p { color: rgba(255,255,255,.65) !important; }
.area-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #4F46E5, #10B981);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff;
    margin-bottom: 18px;
}
.check-list { list-style: none; padding: 0; margin: 12px 0 0; }
.check-list li {
    color: rgba(255,255,255,.7) !important;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .88rem;
    padding: 5px 0;
    display: flex; align-items: center; gap: 8px;
}
.check-list li::before { content: '✓'; color: #10B981; font-weight: 700; }

/* Participation form card */
.participation-form-card {
    background: rgba(255,255,255,.05) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 16px !important;
    padding: 36px !important;
}
.participation-form-card h3 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; margin-bottom: 24px !important; }

/* Partnership form card */
.partnership-form-card {
    background: rgba(255,255,255,.05) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 16px !important;
    padding: 36px !important;
}
.partnership-form-card h3 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; margin-bottom: 24px !important; }

/* Partnership content */
.partnership-content h2 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; }
.partnership-content p { color: rgba(255,255,255,.7) !important; }
.feature-item { display: flex; gap: 16px; margin-bottom: 20px; }
.feature-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(79,70,229,.2), rgba(16,185,129,.2));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #4F46E5;
}
.feature-text h4 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; font-size: 1rem !important; margin-bottom: 4px !important; }
.feature-text p { color: rgba(255,255,255,.6) !important; font-size: .85rem !important; margin: 0 !important; }

/* Jobs hero */
.jobs-hero-content h1, .jobs-hero-title { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; }
.jobs-hero-subtitle { color: rgba(255,255,255,.75) !important; font-family: 'Space Grotesk', sans-serif !important; }
.jobs-hero-highlight { color: #10B981 !important; font-family: 'Space Grotesk', sans-serif !important; font-size: 1.2rem; }
.jobs-hero-features { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.hero-feature-item {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    flex: 1; min-width: 160px; max-width: 200px;
    transition: all .35s ease;
}
.hero-feature-item:hover { transform: translateY(-6px); border-color: rgba(79,70,229,.3); }
.hero-feature-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #4F46E5, #10B981);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    margin: 0 auto 14px;
}
.hero-feature-item h4 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; font-size: .95rem !important; margin-bottom: 6px !important; }
.hero-feature-item p { color: rgba(255,255,255,.6) !important; font-size: .82rem !important; margin: 0 !important; }

/* Apply button */
.btn-apply-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 8px 25px rgba(37,211,102,.35);
}
.btn-apply-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37,211,102,.5); color: #fff !important; }

/* Contact method cards */
.contact-method-card {
    text-align: center;
    padding: 28px 20px !important;
}
.method-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(79,70,229,.2), rgba(16,185,129,.2));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #4F46E5;
    margin: 0 auto 14px;
}
.contact-method-card h5 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; }
.method-link {
    display: inline-flex; align-items: center;
    color: #818CF8 !important;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .85rem; font-weight: 600;
    text-decoration: none;
    transition: color .25s ease;
}
.method-link:hover { color: #10B981 !important; }

/* Growth option cards */
.growth-option-card { padding: 28px !important; }
.growth-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #4F46E5, #10B981);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    margin-bottom: 16px;
}
.growth-option-card h4 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; }
.growth-option-card p { color: rgba(255,255,255,.65) !important; font-size: .88rem; }
.growth-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: #818CF8 !important; font-family: 'Space Grotesk', sans-serif;
    font-size: .85rem; font-weight: 600; text-decoration: none;
    transition: color .25s ease;
}
.growth-link:hover { color: #10B981 !important; }

/* Office location cards */
.office-location-card { padding: 28px !important; }
.office-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(79,70,229,.2), rgba(16,185,129,.2));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #4F46E5;
    margin-bottom: 16px;
}
.office-location-card h4 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; }
.office-location-card p { color: rgba(255,255,255,.65) !important; font-size: .9rem; }

/* Working hours card */
.working-hours-card { padding: 32px !important; }
.working-hours-list { }
.working-day {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.working-day:last-child { border-bottom: none; }
.day-name { color: rgba(255,255,255,.75) !important; font-family: 'Space Grotesk', sans-serif; font-weight: 500; }
.day-hours { color: #10B981 !important; font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
.working-hours-note {
    display: flex; align-items: center; gap: 10px;
    background: rgba(79,70,229,.1);
    border: 1px solid rgba(79,70,229,.2);
    border-radius: 10px;
    padding: 12px 16px;
    color: rgba(255,255,255,.7) !important;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .85rem;
}
.working-hours-note i { color: #818CF8; }

/* Contact section titles */
.contact-section-title h2 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; font-size: 1.8rem !important; }
.contact-section-title p { color: rgba(255,255,255,.55) !important; font-family: 'Space Grotesk', sans-serif !important; }

/* Contact map card */
.contact-map-card { padding: 32px !important; }
.contact-map-card h3 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; }

/* Contact info card */
.contact-info-card { padding: 36px !important; }
.contact-info-header h3 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; }
.contact-info-item-new { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.contact-info-item-new:last-child { border-bottom: none; }
.contact-info-icon-new {
    width: 40px; height: 40px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(79,70,229,.2), rgba(16,185,129,.2));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #4F46E5;
}
.contact-info-content-new h5 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; font-size: .9rem !important; margin-bottom: 3px !important; }
.contact-info-content-new p { color: rgba(255,255,255,.65) !important; font-size: .85rem !important; margin: 0 !important; }
.contact-info-content-new a { color: rgba(255,255,255,.65) !important; text-decoration: none; }
.contact-info-content-new a:hover { color: #818CF8 !important; }

/* Contact form card */
.contact-form-card { padding: 36px !important; }
.contact-form-card h3 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; }

/* Social projects */
.project-content h3 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; }
.project-description { color: rgba(255,255,255,.7) !important; font-family: 'Space Grotesk', sans-serif !important; }
.project-content-text { color: rgba(255,255,255,.65) !important; font-family: 'Space Grotesk', sans-serif !important; font-size: .9rem; line-height: 1.75; }
.project-content-text * { color: rgba(255,255,255,.65) !important; }
.project-date { color: rgba(255,255,255,.45) !important; font-size: .82rem; font-family: 'Space Grotesk', sans-serif; }
.project-cta .btn-outline-primary { margin-top: 16px; }
.project-status {
    position: absolute; top: 14px; left: 14px;
    padding: 5px 14px; border-radius: 20px;
    font-size: .75rem; font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}
.project-status.active { background: rgba(16,185,129,.2); color: #10B981; border: 1px solid rgba(16,185,129,.3); }
.project-status.completed { background: rgba(79,70,229,.2); color: #818CF8; border: 1px solid rgba(79,70,229,.3); }
.project-status.planned { background: rgba(245,158,11,.2); color: #F59E0B; border: 1px solid rgba(245,158,11,.3); }
.project-image { position: relative; border-radius: 16px; overflow: hidden; }
.project-image img { border-radius: 16px !important; }

/* Participation ways */
.participation-ways { margin-top: 24px; }
.way-item { display: flex; gap: 16px; margin-bottom: 20px; }
.way-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(79,70,229,.2), rgba(16,185,129,.2));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #4F46E5;
}
.way-text h4 { color: #fff !important; font-family: 'Space Grotesk', sans-serif !important; font-size: 1rem !important; margin-bottom: 4px !important; }
.way-text p { color: rgba(255,255,255,.6) !important; font-size: .85rem !important; margin: 0 !important; }

/* Testimonials page */
.add-testimonial { background: rgba(255,255,255,.02) !important; }
.rating i { color: #F59E0B; }
.rating .far.fa-star { color: rgba(255,255,255,.2); }

/* KVKK page */
.kvkk-content-section { }

/* Jobs page */
.jobs-hero-section { }
.apply-section { }
