/* İK Hero Section */
.ik-hero-section {
    position: relative;
    min-height: 60vh;
    padding: 11.5rem 2rem 4rem;
    background-color: #030f1d;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ik-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;

    z-index: 0;
    filter: blur(2px);
    transform: scale(1.1);
}

/* İK sayfası için özel görsel */
.ik-hero-section-specific::before {
    background: linear-gradient(rgba(3, 15, 29, 0.5), rgba(7, 28, 44, 0.65)),
                url('../images/ik-hero.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

/* Form sayfası için özel görsel */
.form-hero-section::before {
    background: linear-gradient(rgba(3, 15, 29, 0.5), rgba(7, 28, 44, 0.65)),
                url('../images/form-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Career sayfası için özel görsel */
.career-hero-section::before {
    background: linear-gradient(rgba(3, 15, 29, 0.5), rgba(7, 28, 44, 0.65)),
                url('../images/career-hero.jpg');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
}

.ik-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.ik-hero-content {
    color: var(--text-white);
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ik-hero-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.ik-hero-subtitle {
    font-size: 0.75rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ik-hero-subtitle::before {
    content: '';
    width: 20px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
    display: block;
    flex-shrink: 0;
}

.ik-hero-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.ik-hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

/* Section Container */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* İK Section Styles */
.ik-policy-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.ik-positions-section {
    padding: 5rem 2rem;
}


.ik-section-line {
    width: 40px;
    height: 1px;
    background-color: var(--light-teal);
    margin-bottom: 1rem;
}

.ik-section-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-teal);
    margin-bottom: 1rem;
}

.ik-section-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.ik-section-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 700px;
}

/* İK Policy Content */

.ik-policy-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
    max-width: 900px;
}

.ik-policy-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.ik-policy-subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.ik-policy-intro {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 200;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.ik-policy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.ik-policy-list li {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 200;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
}

.ik-policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-size: 1.5rem;
    line-height: 1.4;
}

/* İK CTA Banner */
.ik-cta-banner {
    background-color: var(--dark-teal-soft);
    border-radius: 12px;
    margin-bottom: -8rem;
    margin-left: 2rem;
    margin-right: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4.5rem;
}

/*030f1d*/

.ik-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}

.ik-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ik-cta-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.ik-cta-left {
    display: flex;
    align-items: center;
}

.ik-cta-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.3;
    margin: 0;
    margin-bottom: 6.5rem;
}

.ik-cta-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ik-cta-description {
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.8;
    margin: 0;
}

.ik-cta-button {
    display: inline-block;
    background-color: var(--text-white);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ik-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* CTA Spacer */
.ik-cta-spacer {
    width: 100%;
    height: 4rem;
    background-color: var(--bg-card);
}



/* Responsive */
@media (max-width: 968px) {
    .ik-hero-title {
        font-size: 2.5rem;
    }
    
    .ik-policy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .ik-cta-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .ik-cta-title {
        font-size: 2rem;
    }
    
}

@media (max-width: 768px) {
    .ik-hero-section {
        min-height: 50vh;
        padding: 9rem 1.5rem 3rem;
    }
    
    .ik-hero-title {
        font-size: 2rem;
    }
    
    .ik-policy-section,
    .ik-positions-section {
        padding: 4rem 1.5rem;
    }
    
    .ik-main-title {
        font-size: 2rem;
    }
    
    .ik-policy-subtitle {
        font-size: 1.5rem;
    }
    
    .ik-section-title {
        font-size: 2rem;
    }
    
    .ik-policy-section {
        padding: 3rem 1.5rem;
    }
    
    .ik-cta-container {
        padding: 3rem 1.5rem;
    }
    
    .ik-cta-title {
        font-size: 1.75rem;
    }
    
    .ik-cta-description {
        font-size: 1rem;
    }
    
    .ik-cta-footer {
        padding: 1.5rem 1.5rem;
    }
}

