/* ===================================
   BOOKING PAGE STYLES
   =================================== */

.btn-back {
    padding: 12px 30px;
    background: transparent;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.booking-page {
    min-height: 100vh;
    background: var(--light-gray);
    padding: 120px 0 60px;
}

.booking-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

/* ===================================
   SIDEBAR
   =================================== */
.booking-sidebar {
    position: sticky;
    top: 120px;
}

.stylist-profile {
    background: var(--white);
    padding: 40px;
    margin-bottom: 30px;
}

.stylist-image {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    overflow: hidden;
}

.stylist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stylist-details h2 {
    font-size: 2rem;
    color: var(--dark);
    margin: 15px 0 10px;
}

.stylist-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.booking-info-box {
    background: var(--dark);
    color: var(--white);
    padding: 40px;
}

.booking-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.booking-info-box ul {
    list-style: none;
    margin-bottom: 30px;
}

.booking-info-box ul li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.booking-info-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.contact-quick {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-quick p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.contact-quick strong {
    color: var(--white);
}

.contact-quick a {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 600;
}

/* ===================================
   BOOKING FORM CONTAINER
   =================================== */
.booking-form-container {
    background: var(--white);
    padding: 60px;
}

.form-header {
    margin-bottom: 50px;
}

.form-header h1 {
    font-size: 3rem;
    color: var(--dark);
    margin: 15px 0 20px;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ===================================
   FORM STYLES
   =================================== */
.booking-form {
    max-width: 800px;
}

.form-section {
    margin-bottom: 50px;
}

.form-section h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

/* ===================================
   SUBMIT BUTTON
   =================================== */
.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: var(--dark);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 30px;
}

.btn-submit:hover {
    background: var(--primary-gold);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ===================================
   SUCCESS MESSAGE
   =================================== */
.success-message {
    text-align: center;
    padding: 80px 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--primary-gold);
    color: var(--white);
    font-size: 4rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-message h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.success-message p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .booking-wrapper {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }
    
    .stylist-image {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar {
        position: static;
    }
    
    .stylist-profile {
        display: grid;
        grid-template-columns: 250px 1fr;
        gap: 30px;
        align-items: center;
    }
    
    .stylist-image {
        height: 300px;
    }
    
    .booking-info-box {
        display: none;
    }
}

@media (max-width: 768px) {
    .booking-page {
        padding: 100px 0 40px;
    }
    
    .booking-wrapper {
        padding: 0 20px;
    }
    
    .booking-form-container {
        padding: 40px 25px;
    }
    
    .form-header h1 {
        font-size: 2.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stylist-profile {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .stylist-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .booking-form-container {
        padding: 30px 20px;
    }
    
    .form-header h1 {
        font-size: 2rem;
    }
    
    .form-section h3 {
        font-size: 1.3rem;
    }
    
    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}

/* ===================================
   TABLET OPTIMIZATION
   =================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar {
        position: static;
    }
    
    .stylist-profile {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 30px;
        align-items: center;
    }
    
    .stylist-image {
        height: 350px;
    }
}

/* ===================================
   LANDSCAPE MOBILE
   =================================== */
@media (max-width: 926px) and (orientation: landscape) {
    .booking-page {
        padding: 90px 0 30px;
    }
    
    .stylist-image {
        height: 300px;
    }
    
    .booking-info-box {
        display: none;
    }
}
