@charset "UTF-8";
/* =============================================================
   REZERVASYON.CSS — Yıldız Otel | Rezervasyon Sayfası
   ============================================================= */

/* ─────────────────────────────────────────────
   Rezervasyon Ana Section
───────────────────────────────────────────── */
.rez-main-section {
    padding: 80px 0;
    background: var(--gray-light);
}

/* Form Kartı */
.rez-form-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
}

.rez-form-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.rez-form-card > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.rez-form-card .form-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201,168,76,0.25);
}

.rez-form-card .btn-submit {
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 36px;
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rez-form-card .btn-submit:hover {
    background: #b8922f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

.kvkk-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.kvkk-label a {
    color: var(--gold);
    text-decoration: underline;
}

/* ─────────────────────────────────────────────
   Bilgi Kartı (Sağ Kolon)
───────────────────────────────────────────── */
.rez-info-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rez-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 26px 24px;
    box-shadow: var(--shadow-sm);
}

.rez-info-card h5 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.rez-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.87rem;
    color: var(--text-dark);
}

.rez-info-item:last-child {
    margin-bottom: 0;
}

.rez-info-item i {
    color: var(--gold);
    margin-top: 3px;
    width: 16px;
    text-align: center;
    font-size: 0.88rem;
}

.rez-info-item a {
    color: var(--text-dark);
    transition: var(--transition);
}

.rez-info-item a:hover {
    color: var(--gold);
}

/* Avantaj Listesi */
.rez-avantaj-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rez-avantaj-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.rez-avantaj-list li:last-child {
    border-bottom: none;
}

.rez-avantaj-list li i {
    color: var(--gold);
    font-size: 0.85rem;
}

/* Hızlı İletişim Butonları */
.rez-quick-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rez-quick-btns a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.btn-rez-tel {
    background: var(--navy);
    color: var(--white) !important;
    border: 2px solid var(--navy);
}

.btn-rez-tel:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
}

.btn-rez-wa {
    background: #25d366;
    color: var(--white) !important;
    border: 2px solid #25d366;
}

.btn-rez-wa:hover {
    background: #1ebe5a;
    border-color: #1ebe5a;
}

/* ─────────────────────────────────────────────
   Rezervasyon Süreci (3 Adım)
───────────────────────────────────────────── */
.rez-surec-section {
    padding: 80px 0;
    background: var(--navy);
}

.rez-surec-section .section-title h2 {
    color: var(--white);
}

.rez-surec-section .section-title p {
    color: rgba(255,255,255,0.65);
}

.rez-surec-section .title-divider {
    background: var(--gold);
}

.rez-step {
    text-align: center;
    padding: 28px 20px;
    position: relative;
}

.rez-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 4px 16px rgba(201,168,76,0.4);
    position: relative;
    z-index: 2;
}

.rez-step-line {
    position: absolute;
    top: 52px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(201,168,76,0.25);
    z-index: 1;
}

.rez-step:last-child .rez-step-line {
    display: none;
}

.rez-step h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.rez-step p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991.98px) {
    .rez-info-sticky { position: static; }
    .rez-main-section { padding: 60px 0; }
}
@media (max-width: 767.98px) {
    .rez-form-card { padding: 24px 18px; }
    .rez-surec-section { padding: 60px 0; }
    .rez-step-line { display: none; }
}
