/* Profesyonel Yolculuk Bölümü - Yeniden Tasarım */
.journey {
    padding: 90px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.journey::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(200, 169, 126, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.journey::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(200, 169, 126, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.journey .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--burgundy-color); /* Changed from #192638 to burgundy */
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(
        --burgundy-color
    ); /* Changed from #c8a97e to burgundy */
    border-radius: 2px;
}

/* Yeniden Tasarlanmış Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Orta çizgi */
.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #e0e0e0;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Yıl alanı */
.timeline-item .year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(
        --burgundy-color
    ); /* Changed from #c8a97e to burgundy */
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3); /* Updated to burgundy shadow */
    z-index: 3;
}

/* Içerik alanı sol taraftaki öğeler için */
.timeline-item:nth-child(odd) .content {
    width: calc(50% - 50px);
    margin-right: auto;
    margin-left: 0;
    text-align: right;
    padding-right: 30px;
}

/* Içerik alanı sağ taraftaki öğeler için */
.timeline-item:nth-child(even) .content {
    width: calc(50% - 50px);
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 30px;
}

/* İçerik kutusunun stilleri */
.timeline-item .content {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 35px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.timeline-item:hover .content {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(
        139,
        0,
        0,
        0.2
    ); /* Changed from rgba(200, 169, 126, 0.2) to burgundy */
}

/* İçerik karesi ile orta çizgi arasındaki bağlantı noktaları */
.timeline-item:nth-child(odd) .content::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: #e0e0e0;
}

.timeline-item:nth-child(even) .content::after {
    content: "";
    position: absolute;
    top: 30px;
    left: -15px;
    width: 30px;
    height: 2px;
    background-color: #e0e0e0;
}

/* Orta noktadaki daire */
.timeline-item::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid var(--burgundy-color); /* Changed from #c8a97e to burgundy */
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(139, 0, 0, 0.1); /* Updated to burgundy shadow */
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    background-color: var(
        --burgundy-color
    ); /* Changed from #c8a97e to burgundy */
    box-shadow: 0 0 0 8px rgba(139, 0, 0, 0.2); /* Updated to burgundy shadow */
}

/* İçerik metni stilleri */
.timeline-item .content h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #192638;
    margin-bottom: 10px;
}

.timeline-item .content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive düzenlemeler */
@media screen and (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-item .year {
        left: 30px;
        transform: translateX(-50%);
        min-width: auto;
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .timeline-item:nth-child(odd) .content,
    .timeline-item:nth-child(even) .content {
        width: calc(100% - 60px);
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
        padding-left: 20px;
        padding-right: 20px;
    }

    .timeline-item::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .content::after,
    .timeline-item:nth-child(even) .content::after {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }

    .timeline-item .content {
        padding: 20px;
    }

    .timeline-item .content h3 {
        font-size: 1.1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-section .section-header h2 {
    color: var(--burgundy-color); /* Updated to burgundy color */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: rgba(
        139,
        0,
        0,
        0.2
    ); /* Updated border color on hover to burgundy */
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3,
.faq-item.active .faq-question h3 {
    color: var(--burgundy-color); /* Updated to burgundy color */
}

.faq-toggle {
    width: 26px;
    height: 26px;
    background-color: rgba(
        139,
        0,
        0,
        0.1
    ); /* Updated toggle background to burgundy */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-toggle i {
    color: var(--burgundy-color); /* Updated icon color to burgundy */
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background-color: var(
        --burgundy-color
    ); /* Updated active toggle background to burgundy */
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 25px;
    opacity: 0;
    transform: translateY(-10px);
}

.faq-answer.active {
    opacity: 1;
    transform: translateY(0);
    max-height: 1000px;
    padding-bottom: 25px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer.active {
        padding-bottom: 20px;
    }
}
