﻿/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
}

body {
    overflow-y: scroll; 
}

body::-webkit-scrollbar {
        width: 0px;  
background: transparent;  
}





/*.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}*/

/* Progress Bar */
/*.progress-container {
    margin-bottom: 3rem;
}*/

.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

    .progress-bar::before {
        content: '';
        position: absolute;
        height: 2px;
        width: 100%;
        background: #e0e0e0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 0;
    }

/*.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #4299e1;
    border-color: #4299e1;
    color: white;
}

.step-text {
    font-size: 0.875rem;
    color: #666;
}

.step.active .step-text {
    color: #4299e1;
}*/

/* Date Selection */
/*.date-selection {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.date-inputs {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}*/

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.plan-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    border: 2px solid transparent;
}

    .plan-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .plan-card.selected {
        border-color: #4299e1;
    }

/*.plan-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ed64a6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: bold;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.plan-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #4299e1;
    margin-bottom: 1.5rem;
}*/

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

    .plan-features li {
        margin-bottom: 0.3rem;
        padding-left: 1.5rem;
        position: relative;
    }

        .plan-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #48bb78;
        }

/* Form Styles */
.form-step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hidden {
    display: none;
}

.input-group {
    margin-bottom: 1.5rem;
    flex: 1;
}

    .input-group.full-width {
        flex: 0 0 100%;
    }

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #4a5568;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"] {
    width: 100%;
    /*    padding: 0.75rem;*/
    border: 1px solid #e2e8f0;
    /*    border-radius: 4px;*/
    font-size: 1rem;
    transition: border-color 0.2s;
}

    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    input[type="date"]:focus {
        outline: none;
        border-color: #4299e1;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
    }
/**/
/*input[type="file"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}*/

/* Buttons */
/*.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}*/

.select-plan-btn,
.next-btn,
.back-btn,
.pay-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.select-plan-btn {
    width: 100%;
    background-color: #ebf8ff;
    color: #4299e1;
    border: 1px solid #4299e1;
}

    .select-plan-btn:hover {
        background-color: #bee3f8;
    }

.next-btn,
.pay-btn {
    background-color: #4299e1;
    color: white;
    border: none;
}



    .next-btn:hover,
    .pay-btn:hover {
        background-color: #3182ce;
    }

.back-btn {
    background-color: #e2e8f0;
    color: #4a5568;
    border: none;
}

    .back-btn:hover {
        background-color: #cbd5e0;
    }
/*
.review-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}*/

/*.review-group {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 6px;
}*/

/*    .review-group h3 {
        color: #2d3748;
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

.review-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}*/

/*.review-label {
    font-weight: 500;
    color: #4a5568;
}

.plan-dates {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #718096;
}*/

/* Success Page */
/*.success-message {
    text-align: center;*/
/*    padding: 4rem 2rem;*/
/*padding-bottom: 0.1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .success-message h1 {
        color: #48bb78;
        margin-bottom: 1rem;
    }

    .success-message p {
        color: #4a5568;
        margin-bottom: 1rem;
    }*/
/*
.back-home {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #4299e1;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.2s;
}

    .back-home:hover {
        background-color: #3182ce;
    }*/

/* Responsive Design */
/*@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .date-inputs {
        flex-direction: column;
        gap: 1rem;
    }
}
*/






