:root {
    --primary: #32BCCC;
    --secondary: #8AB56B;
    --accent: #f093fb;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #4caf50;
    --error: #f44336;
    --gray: #6c757d;
    --gradient-1: linear-gradient(100deg, #32BCCC 0%, #8AB56B 100%) !important;
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.booking-wrapper {
    max-width: 1200px;
    margin: 80px auto 80px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.progress-indicator {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 20px 25px;
    background: rgb(25 25 25 / 87%);
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.form-step h2 {
    font-size: 2.5em;
    margin: 0 0 10px;
    background: linear-gradient(100deg, #32BCCC 0%, #8AB56B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.form-step p {
    font-size: 14px;
    margin-bottom: 33px;
    padding-left: 10px;
}
.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    width: 220px;
    height: 4px;
    background: #ddd;
    z-index: -1;
    transition: all 0.5s ease;
    left: 50px !important;
}

.progress-step.completed:not(:last-child)::after {
    background: var(--success);
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 3px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: all 0.5s ease;
}

.progress-step.active .step-circle {
    border-color: var(--primary);
    background: var(--gradient-1);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(50, 188, 204, 0.5);
}

.progress-step.completed .step-circle {
    border-color: var(--success);
    background: var(--success);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: #ffff;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

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

.progress-step.completed .step-label {
    color: var(--success);
}

.booking-content {
    padding: 40px;
    position: relative;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
    color: var(--dark);
    font-size: 14px;
    margin-left: 5px;
}

.form-control {
    width: 100% !important;
    padding: 10px 16px !important;
    border: 1px solid #cdcdcd !important;
    border-radius: 10px !important;
    font-size: 0.8rem !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
    border-left: 4px solid #61b898 !important;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(50, 188, 204, 0.2);
    outline: none;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.service-card {
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(50, 188, 204, 0.2);
}

.service-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--success);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.service-image {
    height: 235px;
    background-size: cover;
    background-position: center;
}

.service-details {
    padding: 20px;
    background: #f5f5f5;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

.service-price {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-description {
    margin-top: 10px;
    color: var(--gray);
    font-size: 0.95rem;
}

.payment-summary {
    background: var(--light);
    border-radius: 15px;
    padding: 25px 25px 12px;
    margin-bottom: 30px;
}

.summary-section {
    margin-bottom: 32px;
}

.summary-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #111;
    border-bottom: 1px solid #ddd;
    padding-bottom: 9px;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    position: relative;
}


.summary-row.total {
    font-weight: 700;
    font-size: 1.3rem;
    border-top: 1px solid #ddd;
    padding-top: 25px;
    margin-top: 16px;
    margin-bottom: 0;
}

.card-element {
    padding: 12px 18px;
    border: 1px solid #cdcdcd !important;
    border-radius: 10px;
    margin-bottom: 20px;
    background: white;
    border-left: 4px solid #61b898 !important;
}

.card-element:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(50, 188, 204, 0.2);
}

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50, 188, 204, 0.4) !important;
}

.btn-outline {
    background: transparent !important;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
}

.btn-outline:hover {
    background: rgba(50, 188, 204, 0.1);
}

.btn-success {
    background: var(--gradient-4);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 233, 123, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin: 20px 10px 0px 10px;
}

.error-message {
    color: var(--error);
    font-size: 0.8rem;
    display: none;
    padding-left: 5px;
}

.success-message {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid var(--success);
    padding: 15px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 20px;
    display: none;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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

.thank-you-content {
    text-align: center;
    padding: 0px 20px;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 20px;
}

.thank-you-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

textarea#message {
    min-height: 120px;
}

.thank-you-content p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.booking-details {
    background: var(--light);
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    margin: 30px auto;
    max-width: 100%;
}

.booking-details h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    margin-bottom: 10px;
    justify-content: space-between !important;
}

input#card-name {
    padding: 12px 18px !important;
}

.payment-form {
    padding: 25px 25px 8px;
    background: rgb(248 249 250 / 75%);
    border-top: 4px dashed rgb(229 229 229 / 75%);
    border-radius: 12px;
}

.detail-label {
    font-weight: 400;
    width: 150px;
    color: #000;
}

.detail-value {
    flex: 1;
    text-align: end;
}

div#services-summary .summary-row span.ser-price {
    background: linear-gradient(100deg, #32BCCC 0%, #8AB56B 100%) !important;
    padding: 4px 12px;
    border-radius: 8px;
    color: #fff !important;
    position: relative;
}



button.btn-primary {
    border: unset !important;
    padding: 14px 35px !important;
}

button.btn-primary {
    border: unset !important;
    padding: 14px 35px !important;
}

button#step3-prev {
    position: absolute !IMPORTANT;
    top: 50px !important;
    right: 47px;
}

button#pay-button {
    background: linear-gradient(100deg, #32BCCC 0%, #8AB56B 100%) !important;
    letter-spacing: 1px;
    border: unset !important;
    padding: 16px 20px;
    border-radius: 8px !important;
}

div#services-summary .summary-row span {
    color: #32bccc !important;
    font-size: 17px;
    font-weight: 500;
}

.progress-indicator::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
    height: 10px;
    background: linear-gradient(100deg, #32BCCC 0%, #8AB56B 100%) !important;
}

.service-flex-class {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

div#services-summary .summary-row span.ser-price::before {
    content: '';
    background: #3abcc4;
    position: absolute;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    left: -5px;
    top: 8px;
}

div#services-summary .summary-row::after {
    content: '';
    position: absolute;
    width: 72%;
    height: 2px;
    border: 1px dashed #dddddd;
    top: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

div#service-error {
    padding: 14px 20px;
    background: rgb(255 0 0 / 13%);
    font-size: 15px;
    text-align: center;
    border-radius: 10px;
    margin-top: 14px;
}

@media (max-width: 768px) {
    .booking-content {
        padding: 35px 20px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-step:not(:last-child) {
        margin-right: 32px;
    }
    
    .progress-step:not(:last-child)::after {
        left: 40px;
        width: 40px;
    }
    
    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .booking-wrapper {
    margin: 50px 10px;
    max-width: 100%;
}

.progress-step:not(:last-child)::after {top: 11px !important;left: 32px !important;width: 90px !important;}

.progress-indicator {
    padding: 32px 10px 20px !important;
}

div#step4-indicator {
    position: relative;
}

.progress-indicator::after {
    height: 6px;
}

.form-step h2 {
    font-size: 1.8em;
    margin-bottom: 8px;
}

.form-step p {
    font-size: 13px;
    padding-left: 5px;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 14px;
}

.form-control {
    padding: 10px 12px !important;
    font-size: 0.8rem !important;
}

textarea#message {
    height: 110px;
}

.service-image {
    height: 175px;
}

.service-description {
    font-size: 13px;
}

.service-title {
    font-size: 1.3rem !important;
}

div#step3 {
    padding-top: 48px;
}

button#step3-prev {
    top: 12px !important;
    right: 14px !important;
}

div#services-summary .summary-row::after {
    opacity: 0;
}

.detail-label {
    width: 80px;
}

.detail-value {
    font-size: ;
}

.detail-row {
    font-size: 12px !important;
}

.summary-section h3 {
    font-size: 14px !important;
}

.summary-row {
    margin-bottom: 10px;
}

div#services-summary .summary-row span {
    font-size: 15px !important;
}

.summary-section {
    margin-bottom: 20px;
}

.summary-row.total {
    font-size: 1rem;
}
    
.payment-form {
    padding: 24px 12px 5px !important;
}

.form-group {
    margin-bottom: 16px;
}

.booking-details {
    margin: 16px auto !important;
    padding: 12px 14px;
}

.thank-you-content {
    padding: 0 !important;
}

.thank-you-icon {
    margin: 0 auto !important;
}

.thank-you-icon dotlottie-wc {
    width: 300px !important;
    height: 150px !important;
    margin: -18px 0 0px !important;
    position: relative;
    right: 0;
}

}

