/* Styles for the Book Appointment Page */

:root {
    --primary-color: #2c5aa0;
    --primary-color-rgb: 44, 90, 160;
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --light-text: #fff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.appointment-page {
    padding-top: 80px; /* Adjust for fixed header */
}

/* Hero Section Styles */
.appointment-hero {
    position: relative;
    min-height: 60vh;
    padding: 120px 0;
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}
.appointment-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.appointment-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.appointment-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
    z-index: 1;
}
.appointment-hero .blur-box-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}
.appointment-hero .blur-background-box {
    background: rgba(15, 15, 15, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    border-radius: 18px;
    padding: 40px;
    width: min(1100px, 92%);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.appointment-hero h1 {
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    margin-bottom: 0;
}
.appointment-hero p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 15px auto 0;
}

/* On-Demand Scroller Section */
.bap-ondemand-section {
    padding: 60px 0 0;
    background: #f9f9f9;
}
.bap-scroller-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
    text-align: center;
}
.bap-scroller-title {
    font-size: 2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}
.text-primary-color {
    color: var(--primary-color);
}
.appointment-hero h1::after,
.bap-scroller-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    max-width: 80%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}
.bap-scroller-subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.bap-scroller-view {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}
.bap-scroller-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: bap-scroll 30s linear infinite;
}
.bap-scroller-track:hover {
    animation-play-state: paused;
}
@keyframes bap-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.bap-service-item {
    background: #f4f4f5;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 160px;
    height: 130px;
    font-weight: 600;
    font-size: 0.85rem;
    gap: 8px;
    border: 1px solid #e5e7eb;
}
.bap-service-item span {
    font-size: 2rem;
}

/* Options Wrapper Section */
.bap-options-wrapper {
    padding: 60px 0 80px;
    background: #f9f9f9;
}
.bap-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Static Card Styles */
.bap-static-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
}
.bap-static-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.bap-static-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
}
.bap-static-card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
}
.bap-static-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.bap-static-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 30px;
}
.bap-static-card .submit-btn {
    text-decoration: none;
    display: inline-block;
    width: auto;
    padding: 12px 30px;
}

/* Service Pricing Display */
.bap-service-pricing {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 15px 20px;
    margin: 20px 0;
    text-align: center;
    border: 2px solid rgba(var(--primary-color-rgb), 0.1);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 5px;
    font-weight: 500;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.price-note {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
}

/* Card Actions */
.bap-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.booking-btn {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-btn:hover {
    background: linear-gradient(135deg, #5a6268 0%, #3d4043 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
}

.payment-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a5a8a 100%);
    color: #fff;
    border: none;
    padding: 14px 25px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.payment-btn:hover {
    background: linear-gradient(135deg, #1a5a8a 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(var(--primary-color-rgb), 0.4);
}

.payment-btn:active {
    transform: translateY(-1px);
}

.payment-btn::before {
    content: '💳';
    margin-right: 8px;
    font-size: 1.1rem;
}

.booking-btn::before {
    content: '📅';
    margin-right: 8px;
    font-size: 1.1rem;
}

.payment-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Payment Loading State */
.payment-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.payment-btn.loading::before {
    content: '🔄';
    animation: spin 1s linear infinite;
}

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

/* Appointment Form Section */
.appointment-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.form-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 18px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
    transform: translateY(-2px);
}

.form-group input:invalid {
    border-color: #dc3545;
}

.form-group input:valid {
    border-color: #28a745;
}

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

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 45px;
    appearance: none;
}

.form-actions {
    margin-top: 20px;
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a5a8a 100%);
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(var(--primary-color-rgb), 0.4);
}

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

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

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

/* Form Messages */
#formMessages {
    margin-top: 25px;
}

.form-message {
    margin: 15px 0;
    padding: 18px 20px;
    border-radius: 12px;
    border-left: 5px solid;
    animation: slideInMessage 0.4s ease-out;
    font-weight: 500;
}

.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left-color: #28a745;
}

.error-message {
    background: linear-gradient(135deg, #f8d7da 0%, #f1aeb5 100%);
    color: #721c24;
    border-left-color: #dc3545;
}

.message-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.message-content i {
    font-size: 1.3em;
    flex-shrink: 0;
}

@keyframes slideInMessage {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress Loader Styles */
.progress-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-loader-container {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: scale(0.9);
    animation: scaleIn 0.3s ease forwards;
}

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

.progress-header h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.progress-header p {
    color: var(--text-color);
    margin-bottom: 30px;
    opacity: 0.8;
}

.progress-bar-container {
    margin: 30px 0;
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, #1a5a8a 100%);
    border-radius: 6px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-percentage {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
}

.progress-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: rgba(var(--primary-color-rgb), 0.1);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.progress-step.completed {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-color: #28a745;
}

.step-icon {
    font-size: 1.5rem;
    display: block;
}

.step-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
}

.progress-step.active .step-text {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-step.completed .step-text {
    color: #155724;
    font-weight: 600;
}

.progress-status {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px 20px;
    font-weight: 500;
    color: var(--text-color);
    border-left: 4px solid var(--primary-color);
    text-align: left;
    font-size: 0.95rem;
}

/* Appointment Details Card */
.appointment-details-card {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border: 2px solid #28a745;
    border-radius: 16px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.1);
}

.appointment-details-card h4 {
    color: #155724;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-weight: 600;
    color: #155724;
    font-size: 0.9rem;
}

.detail-value {
    color: #2d5a2d;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.reminder-info {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    color: #155724;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

/* Modal Styles */
.appointment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.appointment-modal.modal-show {
    display: flex;
    opacity: 1;
    visibility: visible;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.modal-container {
    position: relative;
    background: #fff;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.appointment-modal.modal-show .modal-container {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-content {
    padding: 30px;
}

.modal-content .appointment-form {
    gap: 20px;
}

.modal-content .form-row {
    gap: 20px;
}

.modal-content .form-group input,
.modal-content .form-group select,
.modal-content .form-group textarea {
    padding: 12px 15px;
    font-size: 0.95rem;
}

.modal-content .submit-btn {
    padding: 15px 35px;
    font-size: 1rem;
    min-width: 180px;
}

/* Modal Messages */
#modalFormMessages {
    margin-top: 20px;
}

#modalFormMessages .form-message {
    margin: 10px 0;
    padding: 15px 18px;
    font-size: 0.95rem;
}

#modalFormMessages .appointment-details-card {
    margin: 15px 0;
    padding: 20px;
}

#modalFormMessages .appointment-details-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

#modalFormMessages .details-grid {
    grid-template-columns: 1fr;
    gap: 12px;
}

#modalFormMessages .detail-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    align-items: center;
}

#modalFormMessages .detail-label {
    font-size: 0.85rem;
}

#modalFormMessages .detail-value {
    padding: 6px 10px;
    font-size: 0.9rem;
}

/* Modal Responsive Styles */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 25px 20px;
    }
    
    .modal-content .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-content .submit-btn {
        width: 100%;
        padding: 14px 25px;
    }
    
    #modalFormMessages .detail-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 98%;
        margin: 5px;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 18px 20px;
        border-radius: 15px 15px 0 0;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-close-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .modal-content {
        padding: 20px 15px;
    }
    
    .modal-content .form-group input,
    .modal-content .form-group select,
    .modal-content .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Responsive Progress Loader */
@media (max-width: 768px) {
    .progress-loader-container {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .progress-header h3 {
        font-size: 1.5rem;
    }
    
    .progress-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .progress-step {
        padding: 12px 8px;
    }
    
    .step-icon {
        font-size: 1.3rem;
    }
    
    .step-text {
        font-size: 0.75rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .appointment-details-card {
        padding: 20px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .bap-layout-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .appointment-hero h1 {
        font-size: 2.2rem;
    }
    .appointment-hero p {
        font-size: 0.9rem;
    }
    .appointment-hero .blur-background-box {
        padding: 30px;
    }
    .bap-scroller-title {
        font-size: 1.8rem;
    }
    .bap-static-card h3 {
        font-size: 1.6rem;
    }
    
    /* Responsive Pricing Display */
    .bap-service-pricing {
        padding: 12px 15px;
        margin: 15px 0;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .price-label {
        font-size: 0.85rem;
    }
    
    .price-note {
        font-size: 0.75rem;
    }
    
    /* Responsive Card Actions */
    .bap-card-actions {
        gap: 10px;
        margin-top: 20px;
    }
    
    .booking-btn,
    .payment-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .payment-btn {
        padding: 13px 20px;
        font-size: 0.95rem;
    }
    
    /* Responsive Form Styles */
    .form-container {
        margin: 0 20px;
        padding: 30px 25px;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
    
    .submit-btn {
        padding: 15px 35px;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .bap-service-pricing {
        padding: 10px 12px;
        margin: 12px 0;
    }
    
    .price-amount {
        font-size: 1.6rem;
    }
    
    .bap-card-actions {
        gap: 8px;
        margin-top: 18px;
    }
    
    .booking-btn,
    .payment-btn {
        padding: 11px 18px;
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }
    
    .payment-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .form-container {
        margin: 0 15px;
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 14px 25px;
    }
}