/* Genel stiller */

@font-face {
    font-family: 'HelveticaNeue_bold';
    src: url('assets/font/font_bold.otf') format('opentype');
    font-weight: bold;
    font-style: Bold;
}
@font-face {
    font-family: 'HelveticaNeue';
    src: url('assets/font/font.otf') format('opentype');
    font-weight: bold;
    font-style: Bold;
}
.advantages-grid li{
    list-style-type: none;
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'HelveticaNeue', sans-serif;
}
  

:root {
    --primary-color: #276142; /* Kurumsal yeşil */
    --secondary-color: #000000; /* Kurumsal siyah */
    --light-green: rgba(39, 97, 66, 0.1); /* Açık yeşil arkaplan için */
    --medium-green: rgba(39, 97, 66, 0.2); /* Orta yeşil arkaplan için */
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666;
    --white: #ffffff;
    --hover-green: #1d4b31; /* Hover durumu için koyu yeşil */
    --error-color: #d32f2f;
}

  /* İnsan Kaynakları Section */
  .hr-principles {

    padding: 50px 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.principles-grid .principle-card:last-child {
    grid-column: 1 / -1; /* 1'den sonuna kadar uzansın, yani tam genişlik */
}

.principle-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
}


/* CKEditor içeriği için stiller */
.content-area mark,
.ck-content mark {
    background-color: #fff3a3;
    color: #222;
    padding: 0 0.2em;
    border-radius: 0.2em;
}

.content-area blockquote,
.ck-content blockquote {
    border-left: 4px solid var(--primary-color, #276142);
    margin: 1em 0;
    padding: 0.5em 1em;
    background: #f8f9fa;
    color: #444;
    font-style: italic;
}

.content-area ul,
.ck-content ul,
.content-area ol,
.ck-content ol {
    margin: 1em 0 1em 2em;
    padding-left: 1.5em;
}

.content-area pre,
.ck-content pre {
    background: #f4f4f4;
    padding: 0.75em 1em;
    border-radius: 0.25em;
    font-size: 0.95em;
    overflow-x: auto;
    margin: 1em 0;
}

.content-area code,
.ck-content code {
    background: #f4f4f4;
    color: #c7254e;
    padding: 0.1em 0.3em;
    border-radius: 0.2em;
    font-family: "Fira Mono", "Consolas", "Monaco", monospace;
    font-size: 0.95em;
}

.content-area h3,
.ck-content h3,
.content-area h4,
.ck-content h4,
.content-area h5,
.ck-content h5 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
    color: var(--primary-color, #276142);
}


.footer-logo {
    margin-bottom: 15px;
    margin-left: -5px;
    margin-top: 5px;
}

.principle-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}
body {
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--hover-green);
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.btn:hover {
    background-color: var(--hover-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 97, 66, 0.2);
}

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header ve Logo */
header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a{
    margin-top: 5px;
}

.logo img {
    width: 180px;
    max-width: 100%;
    height: auto;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: bold;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Slider */
.hero-slider {
    position: relative;
   
}
/* Eklenen ve değiştirilen stilleri içerir */

/* Slider değişiklikleri (tek görsel için) */
.slider-container {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Açık pozisyonlar için daha uzun içerik stilleri */
.position-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    /* Açıklamayı daha görünür kılmak için ek stiller */
    max-height: none;
    overflow: visible;
}

/* Çok Yakında kutusu için stil */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-green);
    min-height: 300px;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-content {
    padding: 30px;
}

.coming-soon-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.coming-soon h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.coming-soon p {
    color: var(--dark-gray);
}

/* Footer sosyal medya ikonları için stil */
.social-links .fa-youtube {
    color: #FF0000;
}

.social-links .fa-linkedin {
    color: #aaa;
    transition: all 0.2s ease;
}

.social-links .fa-linkedin:hover {
    color: #fff;
}



/* Responsive düzeltmeler */
@media (max-width: 992px) {
    .position-description {
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 768px) {
    body{
        overflow-x: hidden;
        
    }
    .slide {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .slide {
        height: 250px;
    }
}

/* Content Sections */
.section {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 2rem;
    font-family: 'HelveticaNeue_bold', 'sans-serif';
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Hakkımızda */
.about-section {
    background-color:#FBFDF2;
    padding: 90px 0;
    margin: 0 !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}


.hr-text {
    margin-bottom: 30px;
    line-height: 1.7;
}

.hr-text p {
    margin-bottom: 15px;
}

/* Açık Pozisyonlar Section */
.positions-section {
    background-color: #FBFDF2;
    padding: 60px 0;
}

.positions-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.position-card {
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;

    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    border-left: 4px solid #276142;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(39, 97, 66, 0.15);
}

.position-title {
    flex: 0 0 200px;
}

.position-title h3 {
    color: #276142;
    margin-bottom: 5px;
    font-size: 1.3rem;
    font-weight: 600;
}

.position-details {
    flex: 1;
}

.position-meta {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.position-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: justify;
    width: 91%;
}

.btn-apply {
    background-color: #276142;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-apply:hover {
    background-color: #1d4b31;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(39, 97, 66, 0.2);
    color: var(--white);
}

/* Kitaplık Bölümü Güncellenmiş Stiller */
.library-section {
    padding: 60px 0;
    
    margin: 0 !important;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #666;
}

.library-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.library-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.library-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.library-thumbnail {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.library-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.library-item:hover .library-thumbnail img {
    transform: scale(1.1);
}

.post-source {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(10, 102, 194, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.post-source i {
    font-size: 1rem;
}

.library-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.library-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.library-item:hover .library-title {
    color: var(--primary-color);
}

.library-excerpt {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
    line-height: 1.6;
}

.library-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.library-date, .library-author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.read-more-btn:hover {
    gap: 12px;
    color: var(--hover-green);
}

/* Çok Yakında Kutusu Stilleri */
.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(255,255,255,0.8) 100%);
    border: 1px dashed rgba(39, 97, 66, 0.3);
}

.coming-soon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.coming-soon-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.8;
    height: 60px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(39, 97, 66, 0.1);
}

.coming-soon h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.coming-soon p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Responsive Ayarlamalar */
@media (max-width: 992px) {
    .library-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .principles-grid{
        display: flex;
        flex-direction: column;
    }
    .library-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .library-thumbnail {
        height: 320px;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 10px;
    flex-wrap: wrap;
}

.page-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-item:hover, .page-item.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.page-nav {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
}

/* Yatırımlar */
.brands-section {
    padding: 60px 0;
    background-color: #FBFDF2;
    margin: 0 !important;
}

.brands-container {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.brands-container > a {
    width: 100%;
}

.brand-card {
    flex: 1;
    display: flex;
    padding-top: 2.7rem;
    flex-direction: column;
    align-items: center;
    background-color: #f2f5f2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
}


.brand-image {
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    width: 80%;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brand-card:hover .brand-image img {
    transform: scale(1.05);
}

.brand-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

.brand-content {
    padding: 30px;
    flex-grow: 1;
	min-height: 255px;
}

.brand-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: 'helveticaNeue_bold', sans-serif;
    margin-bottom: 15px;
}

.brand-content p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(39, 97, 66, 0.55), rgba(0, 0, 0, 0.75)), url('img/komunite_cta.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-family: 'HelveticaNeue_bold', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.breadcrumbs {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.breadcrumbs a {
    color: #ddd;
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs span {
    margin: 0 5px;
    color: #ddd;
}

/* Form Section */
.form-section {
    padding: 60px 0;
    background-color: var(--white);
    flex: 1;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.form-header {
    background-color: var(--light-green);
    padding: 25px 30px;
    border-bottom: 1px solid var(--medium-green);
}

.form-header h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.position-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.position-title {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.position-type {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.position-location {
    color: var(--dark-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Form Content */
.form-content {
    padding: 30px;
}

.intro-text {
    background-color: var(--light-green);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.intro-text p {
    margin-bottom: 15px;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--dark-gray);
    font-size: 0.85rem;
}

.required:after {
    content: ' *';
    color: var(--error-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(39, 97, 66, 0.2);
    outline: none;
}

.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.invalid .form-control {
    border-color: var(--error-color);
}

.invalid .error-message {
    display: block;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.form-check label {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-col {
    flex: 1;
}

.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px dashed var(--medium-gray);
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background-color: var(--light-green);
}

.file-upload-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.file-upload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-name {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

#iletisim a{
    color: #aaa;
}

.form-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.back-link:hover {
    color: var(--secondary-color);
}

.kvkk-consent {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    font-size: 0.95rem;
}

.recaptcha-container {
    margin: 25px 0;
    display: flex;
    justify-content: center;
}

/* Thank You Content */
.thank-you-section {
    flex: 1;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thank-you-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.thank-you-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.success-icon::before {
    content: '✓';
    font-size: 60px;
    color: #fff;
    margin-bottom: -0.6rem;
}

.thank-you-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.reference-number {
    background-color: var(--light-green);
    padding: 15px 20px;
    border-radius: 5px;
    margin: 30px auto;
    display: inline-block;
}

.reference-number span {
    font-weight: bold;
    color: var(--primary-color);
}

.next-steps {
    text-align: left;
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0 30px;
}

.next-steps h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.next-steps ul {
    list-style-type: none;
}

.next-steps li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.next-steps li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #aaa;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #aaa;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom a {
    color: #888;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {


.footer-bottom{
    flex-direction: column;
}
    .container {
        max-width: 720px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
    }
    
    .library-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-container {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
    
    .position-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .position-title {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .btn-apply {
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .header-container {
        position: relative;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        display:none;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        transition: all 0.4s ease;
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        right: 0;
        display:flex;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 0;
        border-bottom: 1px solid var(--light-gray);
        width: 100%;
    }
    
    .library-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .thank-you-container {
        padding: 30px 20px;
    }
    
    .thank-you-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .slider-container {
        height: 250px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .about-text, .brand-content p {
        font-size: 1rem;
    }
    
    .library-thumbnail {
        height: 300px;
    }
    
    .brand-image {
        height: 200px;
        width: 90%;
    }
    
    .brand-content {
        padding: 20px;
    }
    
    .prev, .next {
        padding: 10px;
        font-size: 16px;
    }
    
    .dot {
        height: 10px;
        width: 10px;
    }
    
    .position-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .btn-apply {
        align-self: center;
        width: 100%;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}


/* Genel Açık Pozisyonlar Stili */
.positions-section {
    background-color: #FBFDF2;
    padding: 60px 0;
}

.section-description {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* Filtre Butonları */
.positions-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #555;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Pozisyon Kartları */
.positions-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.position-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #276142;
    overflow: hidden;
}

.position-card:hover {
    box-shadow: 0 10px 15px rgba(39, 97, 66, 0.15);
}

/* Pozisyon Başlık Bölümü */
.position-header {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.position-header:hover {
    background-color: #f9f9f9;
}

.position-title-section {
    flex: 1;
}

.position-title-section h3 {
    color: #276142;
    margin-bottom: 8px;
    font-family: 'helveticaNeue_bold', 'sans-serif';
    font-size: 1.3rem;
    font-weight: 600;
}

.position-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.badge-type {
    background-color: rgba(39, 97, 66, 0.1);
    color: #276142;
}

.badge-location {
    background-color: rgba(0, 0, 0, 0.05);
    color: #555;
}

/* Genişletme İkonu */
.expand-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.expand-icon span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #276142;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.expand-icon span:nth-child(2) {
    transform: translateY(-50%) rotate(90deg);
}

.position-card.active .expand-icon span:nth-child(2) {
    transform: translateY(-50%) rotate(0);
}

/* Pozisyon İçerik Bölümü (Genişletildiğinde görünür) */
.position-content {
    display: none;
    padding: 0 30px 30px;
    border-top: 1px solid #f0f0f0;
}

.position-card.active .position-content {
    padding-top: 1.7rem;
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* İçerik Bölümleri */
.position-section {
    margin-bottom: 25px;
}

.section-heading {
    color: #276142;
    font-size: 1.1rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 18px;
    background-color: #276142;
    border-radius: 3px;
}

.responsibility-list, .experience-list {
    list-style: none;
    padding-left: 15px;
}

.responsibility-list li, .experience-list li, .advantages-grid li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #555;
    list-style-type: none;
}

.responsibility-list li::before {
    content: "•";
    color: #276142;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.experience-list li::before {
    content: "✓";
    color: #276142;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.advantages-grid li::before {
    content: "•";
    color: #276142;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Avantajlar Bölümü */
.advantages-section {

    padding: 20px 0px;
    border-radius: 8px;
    margin-top: 30px;
}

.advantages-grid {
    display: flex;
    
    gap: 20px;
    margin-top: 15px;
    padding: 10px 20px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.advantage-icon {
    font-size: 1.5rem;
    color: #276142;
    flex-shrink: 0;
}

.advantage-content h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.advantage-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer Bölümü */
.position-footer {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}

.btn-apply {
    background-color: #276142;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-apply:hover {
    background-color: #1d4b31;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(39, 97, 66, 0.2);
    color: white;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .position-header {
        padding: 15px 20px;
    }
    
    .position-content {
        padding: 0 20px 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .section-heading {
        font-size: 1rem;
    }
    
    .position-title-section h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .positions-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
    
    .position-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .position-footer {
        justify-content: center;
    }
    
    .btn-apply {
        width: 100%;
    }
}



