/* کل تنظیمات سایت */
#booking { position: relative; min-height: 100vh; background-image: url('../img/background.jpg'); background-size: cover; background-position: center; display: flex; align-items: center; }
.section { width: 100%; }

/* هدر و لوگو */
.booking-cta { padding: 10px 15px; margin: 10px 0; display: flex; align-items: center; justify-content: center; gap: 15px; flex-wrap: wrap; background: rgba(0, 0, 0, 0.2); border-radius: 12px; }
.logo-box { background: #ffffff; border-radius: 8px; padding: 2px 12px; display: inline-flex; align-items: center; }
.slogan-text { color: #fff; font-size: 15px; margin: 0; font-weight: bold; border-right: 2px solid rgba(255,255,255,0.3); padding-right: 15px; }

/* فرم جستجو */
.booking-form { background: #fff; padding: 15px; border-radius: 12px; margin-bottom: 10px; }
.inline-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: flex-end; }
.flex-item { flex: 1; min-width: 110px; }
.form-label { color: #52adc8; display: block; font-weight: 700; font-size: 10px; margin-bottom: 2px; }
.form-control { background-color: #f3f3f3; height: 38px; font-size: 13px; border: none; border-radius: 4px; }
.submit-btn { color: #fff; background-color: #4fa3e3; font-weight: 700; height: 38px; border: none; border-radius: 4px; width: 100%; }

/* توضیحات هوش مصنوعی */
.ai-disclaimer { margin-top: 10px; padding: 12px; background: rgba(255, 255, 255, 0.1); border-radius: 8px; border-right: 4px solid #FBBC05; color: #fff; font-size: 12px; text-align: center; direction: rtl; }

/* استایل کارت پرواز یک‌خطی */
.flight-card {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    direction: rtl;
    border: 1px solid #eee;
}
.airline-info { flex: 1; font-weight: bold; color: #333; font-size: 14px; text-align: right; }
.flight-time { flex: 1; text-align: center; font-size: 20px; font-weight: bold; color: #2d3436; }
.flight-route { flex: 1.5; text-align: center; color: #636e72; font-size: 13px; }
.flight-price { flex: 1.2; text-align: center; color: #007bff; font-size: 20px; font-weight: bold; }
.buy-section { flex: 0.8; }
.btn-buy-now { background: #ffc107; color: #000; border: none; padding: 7px; border-radius: 6px; font-weight: bold; width: 100%; cursor: pointer; }

/* موبایل */
@media (max-width: 768px) {
    .flight-card { flex-direction: column; text-align: center; padding: 15px; }
    .inline-row { flex-direction: column; }
    .flex-item { width: 100%; }
    .slogan-text { border: none; padding: 0; }
}
