/* ==============================================
  
   ============================================== */

/* ==============================================
   1. BASE & LAYOUT
   ============================================== */

.section {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.booking-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
}

.booking-form-wrapper {
    flex: 1 1 750px;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
    border-top: 3px solid #FF6B35;
    min-height: 600px;
    overflow: hidden;
    box-sizing: border-box;
}

.booking-sidebar {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* ==============================================
   2. PROGRESS BAR
   ============================================== */

.booking-progress {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
    margin-bottom: 2rem;
    border-top: 3px solid #FF6B35;
    width: 100%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
    gap: 0.5rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.progress-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #E2E8F0;
    color: #5a5a5a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.progress-step.active .progress-step-circle {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.progress-step.completed .progress-step-circle {
    background: #10B981;
    color: #FFFFFF;
}

.progress-step-label {
    font-size: 0.8125rem;
    color: #5a5a5a;
    font-weight: 600;
    text-align: center;
}

.progress-step.active .progress-step-label {
    color: #FF6B35;
}

.progress-bar {
    height: 8px;
    background: #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* ==============================================
   3. BOOKING STEPS
   ============================================== */

.booking-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.booking-step.active {
    display: block;
}

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

.step-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.step-header h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.step-header p {
    font-size: 1.125rem;
    color: #5a5a5a;
    line-height: 1.6;
}

/* ==============================================
   4. SERVICE CATEGORY CARDS
   ============================================== */

.service-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    align-items: start;
    max-width: 100%;
    margin: 0 auto 2rem;
    width: 100%;
}

.service-category-card {
    background: #F8F9FA;
    padding: 1.75rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 260px;
    position: relative;
    box-sizing: border-box;
}

.service-category-card:hover {
    border-color: #FF6B35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.service-category-card.selected {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-color: #FF6B35;
}

.service-category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: #FF6B35;
    flex-shrink: 0;
}

.service-category-card h3 {
    font-size: 1.125rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-category-card p {
    font-size: 0.875rem;
    color: #5a5a5a;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-select-category {
    padding: 0.75rem 1.75rem;
    background: #FF6B35;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    width: auto;
    min-width: 120px;
    margin-top: auto;
}

.btn-select-category:hover {
    background: #F7931E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* ==============================================
   5. SUB-CATEGORY SELECTION
   ============================================== */

.sub-category-selection {
    margin-top: 2rem;
    padding: 2rem;
    background: #F8F9FA;
    border-radius: 12px;
}

.sub-category-selection h3 {
    font-size: 1.25rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.sub-category-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.sub-category-btn {
    padding: 1rem;
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #1a1a2e;
    font-weight: 500;
}

.sub-category-btn:hover {
    border-color: #FF6B35;
}

.sub-category-btn.selected {
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.05);
    color: #FF6B35;
}

/* ==============================================
   6. FORM ELEMENTS
   ============================================== */

.form-section {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    color: #1a1a2e;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

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

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg width="12" height="8" xmlns="http://www.w3.org/2000/svg"><path d="M1 1l5 5 5-5" stroke="%235a5a5a" stroke-width="2" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #5a5a5a;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ==============================================
   7. CHECKBOXES & RADIOS
   ============================================== */

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #F8F9FA;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.05);
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #FF6B35;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-label {
    color: #FF6B35;
    font-weight: 600;
}

.checkbox-label {
    font-size: 0.9375rem;
    color: #1a1a2e;
    cursor: pointer;
    line-height: 1.4;
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #F8F9FA;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-item:hover {
    border-color: #FF6B35;
}

.radio-item input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #FF6B35;
    flex-shrink: 0;
}

.radio-label {
    font-size: 1rem;
    color: #1a1a2e;
    cursor: pointer;
}

/* ==============================================
   8. BUDGET OPTIONS
   ============================================== */

.budget-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.radio-card-content {
    padding: 1.5rem;
    background: #F8F9FA;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-card:hover .radio-card-content {
    border-color: #FF6B35;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.15);
}

.radio-card input[type="radio"]:checked + .radio-card-content {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-color: #FF6B35;
}

.radio-card-content strong {
    font-size: 1.125rem;
    color: #1a1a2e;
}

.radio-card-content span {
    font-size: 0.9375rem;
    color: #5a5a5a;
}

/* ==============================================
   9. ADDON CATEGORIES
   ============================================== */

.addon-category {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #F8F9FA;
    border-radius: 12px;
}

.addon-category h3 {
    font-size: 1.25rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.addon-category h3 i {
    color: #FF6B35;
}

/* ==============================================
   10. PRICE DISPLAYS
   ============================================== */

.estimated-price-card {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 2rem;
    border-radius: 15px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 2rem;
}

.estimated-price-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.estimated-price-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.estimated-price-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.price-label {
    font-size: 0.9375rem;
    opacity: 0.9;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price-note {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
}

.price-calculator-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
    border-top: 3px solid #FF6B35;
}

.price-calculator-card h3 {
    font-size: 1.25rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-calculator-card h3 i {
    color: #FF6B35;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E2E8F0;
}

.price-item span:first-child {
    color: #5a5a5a;
    font-size: 0.9375rem;
}

.price-item span:last-child {
    color: #1a1a2e;
    font-weight: 600;
    font-size: 1rem;
}

.price-item.total {
    border-bottom: none;
    padding-top: 1rem;
    border-top: 2px solid #1a1a2e;
}

.price-item.total span {
    font-size: 1.25rem;
    font-weight: 700;
}

.price-item.total span:last-child {
    color: #FF6B35;
    font-size: 1.5rem;
}

.price-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #5a5a5a;
}

/* ==============================================
   11. ALERTS
   ============================================== */

.alert-info,
.alert-warning {
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.alert-info {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10B981;
}

.alert-info i {
    color: #10B981;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid #F59E0B;
}

.alert-warning i {
    color: #F59E0B;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-info strong,
.alert-warning strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.alert-info p,
.alert-warning p {
    margin: 0;
    color: #5a5a5a;
    line-height: 1.6;
}

.recommended-features {
    margin-top: 1.5rem;
}

/* ==============================================
   12. FILE UPLOAD
   ============================================== */

.file-upload-area {
    border: 3px dashed #E2E8F0;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.file-upload-area:hover {
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.05);
}

.file-upload-icon {
    font-size: 4rem;
    color: #FF6B35;
    margin-bottom: 1rem;
}

.file-upload-area h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.file-upload-area p {
    color: #5a5a5a;
    margin-bottom: 1rem;
}

.file-upload-area input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.uploaded-files-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.uploaded-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #F8F9FA;
    border-radius: 10px;
    border: 2px solid #E2E8F0;
}

.uploaded-file-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    flex-shrink: 0;
}

.file-name {
    font-weight: 600;
    color: #1a1a2e;
}

.file-size {
    font-size: 0.875rem;
    color: #5a5a5a;
}

.remove-file-btn {
    background: none;
    border: none;
    color: #EF4444;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.remove-file-btn:hover {
    transform: scale(1.2);
}

.file-suggestions {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #F8F9FA;
    border-radius: 12px;
}

.file-suggestions h4 {
    font-size: 1.125rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.file-suggestions ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.file-suggestions li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #5a5a5a;
}

.file-suggestions li i {
    color: #10B981;
}

/* ==============================================
   13. REVIEW SUMMARY
   ============================================== */

.review-summary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-section {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #FF6B35;
}

.summary-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary-section-header h4 {
    font-size: 1.125rem;
    color: #1a1a2e;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.edit-section-btn {
    padding: 0.5rem 1rem;
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 50px;
    color: #FF6B35;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.edit-section-btn:hover {
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.05);
}

.summary-content {
    color: #5a5a5a;
    line-height: 1.75;
}

.summary-content strong {
    color: #1a1a2e;
}

/* ==============================================
   14. PAYMENT SECTION
   ============================================== */

.payment-section {
    margin-top: 2rem;
    padding: 2rem;
    background: #F8F9FA;
    border-radius: 15px;
    border: 2px solid #E2E8F0;
}

.payment-section h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.payment-section > p {
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-card input[type="radio"]:checked + .radio-card-content {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-color: #10B981;
}

.stripe-payment-section {
    margin-top: 2rem;
}

.payment-card-container {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #E2E8F0;
}

.payment-card-container h4 {
    font-size: 1.125rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.stripe-card-element {
    padding: 1rem 1.25rem;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    background: #FFFFFF;
}

.payment-errors {
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.75rem;
    display: none;
}

.payment-errors.show {
    display: block;
}

.agreement-checkbox {
    padding: 1.5rem;
    background: #F8F9FA;
    border-radius: 12px;
}

.agreement-checkbox .checkbox-label {
    font-size: 1rem;
}

.agreement-checkbox a {
    color: #FF6B35;
    text-decoration: underline;
}

/* ==============================================
   15. NAVIGATION & INDICATORS
   ============================================== */

.booking-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #E2E8F0;
}

.autosave-indicator {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: #10B981;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.autosave-indicator.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================================
   16. SIDEBAR COMPONENTS
   ============================================== */

.trust-badges-card {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #F8F9FA;
    border-radius: 10px;
}

.trust-badge-item i {
    color: #FF6B35;
    font-size: 1.25rem;
}

.trust-badge-item span {
    color: #1a1a2e;
    font-weight: 600;
    font-size: 0.9375rem;
}

.social-proof-card {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 1.5rem;
    border-radius: 15px;
    color: #FFFFFF;
    text-align: center;
}

.social-proof-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-display .stars {
    display: flex;
    gap: 0.25rem;
}

.rating-display .stars i {
    color: #FFFFFF;
    font-size: 1.25rem;
}

.rating-display span {
    font-size: 1.125rem;
    font-weight: 700;
}

/* ==============================================
   17. LOADING OVERLAY
   ============================================== */

.booking-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.booking-loading.show {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #E2E8F0;
    border-top-color: #FF6B35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-content h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.loading-content p {
    color: #5a5a5a;
    margin: 0;
}

/* ==============================================
   18. CONSULTATION CALENDAR
   ============================================== */

.consultation-calendar {
    padding: 1.5rem;
    background: #F8F9FA;
    border-radius: 12px;
}

.calendar-intro {
    color: #5a5a5a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* ==============================================
   19. FEATURE GRIDS
   ============================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tag {
    padding: 0.75rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #FF6B35;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #1a1a2e;
    font-weight: 600;
    text-align: center;
}

.service-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* ==============================================
   20. RESPONSIVE DESIGN - TABLET
   ============================================== */

@media (max-width: 1200px) {
    .booking-container {
        flex-direction: column;
        gap: 2rem;
    }

    .booking-sidebar {
        position: relative;
        top: 0;
        order: -1;
        width: 100%;
        flex: 1 1 auto;
    }

    .booking-form-wrapper {
        flex: 1 1 auto;
        width: 100%;
    }

    .price-calculator-card,
    .trust-badges-card,
    .social-proof-card {
        display: none;
    }

    .service-selection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .progress-step-label {
        display: none;
    }

    .budget-options {
        grid-template-columns: 1fr;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .sub-category-options {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==============================================
   21. RESPONSIVE DESIGN - MOBILE
   ============================================== */

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .booking-container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1.5rem;
        padding: 0 1rem;
        width: 100%;
        overflow: visible;
    }

    .booking-progress {
        width: 100%;
        max-width: 100%;
        margin: 0 0 1.5rem 0;
        padding: 1.5rem 1rem;
    }

    .progress-steps {
        justify-content: flex-start;
        gap: 0.5rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .progress-step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .booking-form-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 2rem 1.5rem;
        min-height: auto;
        height: auto;
    }

    .step-header h2 {
        font-size: 1.5rem;
    }

    .step-header p {
        font-size: 1rem;
    }

    .service-selection-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        width: 100%;
        max-width: 100%;
    }

    .service-category-card {
        width: 100%;
        max-width: 100%;
        min-height: 240px;
    }

    .service-category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-navigation .btn {
        width: 100%;
    }

    .autosave-indicator {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .booking-progress {
        padding: 1rem;
    }

    .progress-step-circle {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }

    .booking-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .step-header h2 {
        font-size: 1.25rem;
    }

    .step-header p {
        font-size: 0.9375rem;
    }

    .service-category-card {
        padding: 1.5rem 1rem;
    }

    .file-upload-area {
        padding: 2rem 1rem;
    }

    .file-upload-icon {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-cta {
        flex-direction: column;
    }

    .service-cta .btn {
        width: 100%;
    }
}



/* Mobile Price Summary Bar */
.mobile-price-bar {
    display: none;
}

@media (max-width: 1200px) {
    .mobile-price-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
        color: #FFFFFF;
        padding: 1rem 1.5rem;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        z-index: 999;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-price-label {
        font-size: 0.875rem;
        font-weight: 600;
        opacity: 0.9;
    }

    .mobile-price-amount {
        font-size: 1.75rem;
        font-weight: 900;
    }

    .mobile-price-toggle {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #FFFFFF;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-price-toggle:hover {
        background: rgba(255, 255, 255, 0.3);
    }
}


/* Price Modal for Mobile */
.price-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.price-modal {
    background: #FFFFFF;
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    overflow: hidden;
}

.price-modal-header {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.price-modal-header button {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
}

.price-modal-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-modal-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E2E8F0;
}

.price-modal-item.total {
    border-top: 2px solid #1a1a2e;
    border-bottom: none;
    padding-top: 1rem;
    padding-bottom: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.price-modal-item.total span:last-child {
    color: #FF6B35;
}

.price-modal-note {
    padding: 1rem 1.5rem;
    background: #F8F9FA;
    margin: 0;
    font-size: 0.875rem;
    color: #5a5a5a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* ==============================================
   END OF BOOKING STYLES
   ============================================== */