/* User Provided CSS */
body { 
    font-family: 'Segoe UI', sans-serif; 
    background: #f8f9fa; 
    color: #2d3748; 
    margin: 0; 
} 

.agendar-hero { 
    padding: 6rem 2rem 4rem; 
    background: #f8f9fa; /* Light background similar to image 3 */
    text-align: center; 
    color: #2d3748; /* Dark text for contrast */
} 

.hero-badge { 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    gap: .5rem; 
    padding: .6rem 1.5rem; 
    background: #ff6b00; /* Orange background like "Agendar" button */
    border-radius: 999px; 
    margin-bottom: 1rem; 
    color: white; /* White text on orange */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: none;
    text-shadow: none;
} 

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000000;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-shadow: none;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border-radius: 50px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #22c55e;
}

.status-indicator.busy {
    background-color: #ef4444;
}

.status-indicator.pulse {
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
} 

.agendar-main { 
    max-width: 1200px; 
    margin: -3rem auto 4rem; 
    padding: 0 1rem; 
} 

.booking-layout { 
    display: grid; 
    grid-template-columns: 1fr 350px; 
    gap: 2rem; 
} 

/* Responsive adjustment */
@media (max-width: 900px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }
}

.form-card { 
    background: white; 
    padding: 2.5rem; 
    border-radius: 24px; 
    box-shadow: 0 20px 50px rgba(0,0,0,.12); 
} 

.form-step { display: none; } 
.form-step.active { display: block; animation: fadeIn 0.3s ease-in-out; } 

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.property-option { 
    padding: 1rem; 
    border: 2px solid #e2e8f0; 
    border-radius: 16px; 
    cursor: pointer; 
    margin-bottom: .8rem; 
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
} 

.property-option:hover {
    border-color: #cbd5e0;
}

.property-option.selected { 
    border-color: #ff6b00; 
    background: rgba(255,107,0,.05); 
} 

.btn { 
    padding: 1rem; 
    border-radius: 12px; 
    font-weight: 700; 
    cursor: pointer; 
    border: none; 
    transition: transform 0.1s;
} 

.btn:active {
    transform: scale(0.98);
}

.btn-primary { 
    background: linear-gradient(135deg,#ff6b00,#d35400); 
    color: white; 
} 

.btn-secondary { 
    background: white; 
    border: 2px solid #e2e8f0; 
    color: #4a5568;
    margin-right: 1rem;
} 

.sidebar .info-card { 
    background: white; 
    padding: 2rem; 
    border-radius: 24px; 
    box-shadow: 0 10px 30px rgba(0,0,0,.08); 
    position: sticky;
    top: 2rem;
}

/* =========================================
   ADDITIONAL STYLES FOR FULL FUNCTIONALITY
   ========================================= */

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    position: relative;
}

.progress-line {
    position: absolute;
    top: 15px; /* Half of circle height (30px) */
    left: 0;
    width: 0%; /* Dynamic width */
    height: 3px;
    background: #ff6b00;
    z-index: 1;
    transition: width 0.3s ease;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e2e8f0;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 80px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.step.active, .step.completed {
    opacity: 1;
}

.step-circle {
    width: 30px;
    height: 30px;
    background: #e2e8f0;
    color: #718096;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.step.active .step-circle {
    background: #ff6b00;
    color: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.2);
}

.step.completed .step-circle {
    background: #ff6b00;
    color: white;
}

.step span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Form Inputs */
.form-input, .form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #ff6b00;
}

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

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.time-slot {
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.2s;
}

.time-slot:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
}

.time-slot.selected {
    border-color: #ff6b00;
    background: #fff5eb;
    color: #c05621;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #edf2f7;
}

/* Titles and Headers */
.section-title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-icon {
    font-size: 2.5rem;
    color: #ff6b00;
    margin-bottom: 1rem;
}

.form-title {
    font-size: 1.8rem;
    margin: 0;
    color: #1a202c;
}

.form-subtitle {
    color: #718096;
    margin: 0.5rem 0 0;
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 2rem;
    color: #718096;
}

/* Sidebar Summary */
.sidebar h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #edf2f7;
    font-size: 1.2rem;
}

.sidebar p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #4a5568;
}

.sidebar p span {
    font-weight: 600;
    color: #2d3748;
    text-align: right;
    max-width: 60%;
}
