/* =============================================
   İÇMELER TRANSFER - CUSTOM STYLES
   Ana renk: #c0392b (kırmızı)
   ============================================= */

/* Butonlar */
.btn-icmeler {
    background: linear-gradient(135deg, #c0392b, #922b21);
    color: #fff !important;
    border: none;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(192,57,43,0.35);
    text-decoration: none;
    display: inline-block;
}
.btn-icmeler:hover {
    background: linear-gradient(135deg, #a93226, #7b241c);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,57,43,0.45);
}

/* Vehicle select buton override */
.btn-select {
    background: linear-gradient(135deg, #c0392b, #922b21) !important;
    color: #fff !important;
    border: none;
    padding: 10px 24px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.btn-select:hover {
    background: linear-gradient(135deg, #a93226, #7b241c) !important;
    transform: translateY(-2px);
}

/* Route badge */
.route-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff3f3;
    border: 1px solid #f0c0bc;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.9rem;
    color: #922b21;
    font-weight: 600;
    margin-top: 12px;
}

/* Booking summary bar */
.booking-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff3f3;
    border: 1px solid #f0c0bc;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 0.88rem;
    color: #922b21;
    font-weight: 600;
    margin-top: 12px;
}

/* Price values */
.price-value {
    color: #c0392b !important;
    font-weight: bold !important;
}

/* Details form */
.details-form {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* Section title */
.section-title h2 {
    color: #2c1a1a;
    font-weight: 800;
}

/* Submit button */
button[type="submit"].btn-hoppa,
.btn-hoppa {
    background: linear-gradient(135deg, #c0392b, #922b21);
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(192,57,43,0.35);
}
.btn-hoppa:hover {
    background: linear-gradient(135deg, #a93226, #7b241c);
    color: #fff;
}

/* Success page */
.success-box {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 48px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 20px;
}
.success-box h2 {
    color: #2c1a1a;
    font-weight: 800;
    margin-bottom: 16px;
}

/* Form controls focus */
.form-control:focus,
.form-select:focus {
    border-color: #c0392b;
    box-shadow: 0 0 0 0.2rem rgba(192,57,43,0.15);
}

/* Reservation form (WordPress ana sayfa formu) */
.icmeler-booking-form {
    background: linear-gradient(135deg, #2c1a1a 0%, #c0392b 100%);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.icmeler-booking-form .form-label {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.85rem;
}
.icmeler-booking-form h3 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 8px;
}
.icmeler-booking-form p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .details-form {
        padding: 20px 16px;
    }
    .booking-summary {
        font-size: 0.8rem;
        gap: 8px;
    }
}
