/* Kurumsal Sayfası CSS */

/* Hero bölümü */
.page-hero-container {
	background: #121857;
	background: radial-gradient(circle, rgba(18, 24, 87, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(18, 24, 87, 1) 100%);
    padding: 4rem 0;
    margin-bottom: 0;
}

.page-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Tab menü */
.tab-container {
    background-color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tab-menu {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
}

.tab-link {
    display: inline-block;
    padding: 1.5rem 2rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.tab-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #5271ff;
    transition: width 0.3s;
}

.tab-link:hover {
    color: #5271ff;
}

.tab-link.active {
    color: #5271ff;
    font-weight: 700;
}

.tab-link.active:after {
    width: 100%;
}

/* Tab içeriği */
.tab-content-container {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* İçerik grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #333;
}

.content-text .subtitle {
    font-size: 1.2rem;
    color: #5271ff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.content-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hakkımızda Bölümü için Stil */
.stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1.5rem;
}

.stat-box {
    background-color: #f8f9ff;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #5271ff;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.9rem;
    color: #555;
}

.team-section, .values-section {
    margin-top: 4rem;
}

.team-section h3, .values-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-member .team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.team-member p {
    font-size: 0.9rem;
    color: #666;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-box {
    background-color: #f8f9ff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-box:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.value-icon img {
    width: 100%;
    height: 100%;
}

.value-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.value-box p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Kariyer Bölümü için Stil */
.benefits-list {
    list-style-type: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #555;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5271ff;
    font-weight: bold;
}

.open-positions {
    margin-top: 3rem;
}

.open-positions h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.position-card {
    background-color: #f8f9ff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
}

.position-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.position-type {
    font-size: 0.85rem;
    color: #5271ff;
    margin-bottom: 1rem;
}

.position-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.position-apply {
    background-color: #5271ff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.position-apply:hover {
    background-color: #4562e6;
}

.open-application {
    background-color: #f0f5ff;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.open-application h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.open-application p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: #555;
}

.application-btn {
    background-color: #5271ff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.application-btn:hover {
    background-color: #4562e6;
}

/* İş Ortaklıkları Bölümü için Stil */
.partners-section {
    margin-top: 3rem;
}

.partners-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-logo {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    height: 50px;
    object-fit: contain;
}

.partnership-types {
    margin-top: 4rem;
}

.partnership-types h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.partnership-card {
    background-color: #f8f9ff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-5px);
}

.partnership-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.partnership-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.become-partner {
    background-color: #f0f5ff;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.become-partner h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.become-partner p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: #555;
}

.partner-btn {
    background-color: #5271ff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.partner-btn:hover {
    background-color: #4562e6;
}

/* İletişim Bölümü için Stil */
.contact-info {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-icon img {
    width: 20px;
    height: 20px;
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #333;
}

.contact-text p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.contact-form-container {
    background-color: #f8f9ff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #5271ff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #4562e6;
}

.map-section {
    margin-top: 4rem;
}

.map-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive Ayarlar */
@media (max-width: 1200px) {
    .team-grid, .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .positions-grid, .partnership-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .tab-menu {
        justify-content: flex-start;
    }
    
    .tab-link {
        padding: 1rem 1.5rem;
    }
    
    .stats-row {
        flex-wrap: wrap;
    }
    
    .stat-box {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .team-grid, .values-grid, .partners-grid, .positions-grid, .partnership-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .tab-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .stats-row {
        flex-direction: column;
    }
    
    .stat-box {
        width: 100%;
        margin-bottom: 1rem;
    }
}