.form-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px;
    position: relative;
    margin: 80px auto 60px;
    padding: 35px;
}

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

.form-header h1 {
    color: #007cc3;
    margin-bottom: 10px;
    font-size: 40px;
}

.form-header p {
    color: #7f8c8d;
    font-size: 17px;
    margin-bottom: 35px !important;
}

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

.step.active {
    display: block;
}

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

.step-title {
    color: #2f9edd;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
    border-color: #2f9edd;
    outline: none;
    box-shadow: 0 0 0 2px rgba(47, 158, 221, 0.2);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.radio-option:hover {
    background-color: #f8f9fa;
    border-color: #2f9edd;
}

.radio-option input {
    margin-right: 12px;
}

.radio-option.selected {
    background-color: #e3f2fd;
    border-color: #2f9edd;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 10px 30px;
    border: none;
    border-radius: 12px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #2f9edd !important;
    color: white;
}

.btn-primary:hover {
    background-color: #1e8bc3;
}

.btn-secondary {
    background-color: #ecf0f1;
    color: #7f8c8d;
}

.btn-secondary:hover {
    background-color: #bdc3c7;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.progress-bar {
    height: 6px;
    background: #ecf0f1;
    border-radius: 3px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #007cc3, #060606);
    width: 25%;
    transition: width 0.5s ease;
}

.price-display {
    background: #2f9edd;
    color: white;
    padding: 27px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.price-display h3 {
    margin: 0 0 5px;
    font-size: 25px;
    color: #ffffff;
    display: inline-block;
    border-bottom: 2px solid;
}

.price-display .price {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
}

.price-display .price-info {
    font-size: 16px;
    opacity: 0.9;
}

.summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.summary h4 {
    margin-top: 0;
    color: #2c3e50;
}

.summary p {
    margin: 8px 0;
    color: #34495e;
}

.summary .label {
    font-weight: 600;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.loading {
    display: none;
    text-align: center;
    margin: 20px 0;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2f9edd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.thank-you-container {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.thank-you-container.active {
    display: block;
    animation: fadeIn 0.8s;
}

.thank-you-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px 0px 7px;
}

.thank-you-title {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thank-you-message {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.thank-you-details {
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
}

.thank-you-details h4 {
    color: #2f9edd;
    margin-bottom: 15px;
    font-size: 18px;
}

.thank-you-details p {
    margin: 8px 0;
    color: #34495e;
}

.thank-you-details .label {
    font-weight: 600;
}

.thank-you-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.form-container h2.step-title {
    font-size: 18px;
}

.radio-option label {
    margin: 0;
    font-weight: 700;
    line-height: 32px;
}

div#step4 label {font-size: 14px;margin: 0 5px;font-weight: 700;color: #000;}

div#step4 input {
    border-radius: 13px;
    height: 48px;
}

.form-container h2.step-title ~ p {
    margin-bottom: 25px;
}

div#summary p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.thank-you-details p {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 600px) {
    .form-container {
        padding: 20px;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .form-header h1 {
        font-size: 24px;
    }
    
    div#summary p {
        font-size: 14px !important;
    }
    
    .price-display h3 {
        font-size: 20px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .thank-you-title {
        font-size: 26px;
    }
    
    .thank-you-message {
        font-size: 16px;
    }


    
}

@media (max-width: 400px) {
    body {
        padding: 10px;
    }
    
    .form-container {
        padding: 15px;
    }
    
    .radio-option {
        padding: 10px;
    }
}

