 /* ===== UÇAK SAYFASI GENEL ===== */
.ucak-main-content {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.ucak-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== UÇAK BANNER ===== */
.ucak-banner {
    height: 600px;
    background-image: url("../img/okyanusturucak.png");
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ucak-overlay-box {
    padding: 30px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: white;
    text-align: center;
    max-width: 500px;
}

.ucak-overlay-box i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

/* ===== AKORDİYON TASARIMI ===== */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #333;
    font-weight: 700;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #222;
    transition: 0.3s;
}

.accordion-header:hover {
    background-color: #f1f1f1;
}

.accordion-header i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Aktif Durum */
.accordion-item.active .accordion-header {
    background-color: #000;
    color: #fff;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background: #fff;
}

.accordion-item.active .accordion-body {
    max-height: 200px; /* İçeriğe göre artırılabilir */
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.accordion-body p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .ucak-banner { height: 400px; }
    .section-title { font-size: 22px; }
    .accordion-header { font-size: 15px; }
}
