/* Modern Theme for Bizform Embeds */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #f9fafb;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-header {
    margin-bottom: 25px;
    text-align: center;
    border-bottom: none;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #1a202c;
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #4c6fff;
}

h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #4a5568;
}

/* Progress bar */
.progress-bar {
    width: 100%;
    height: 10px;
    background: #e2e8f0;
    border-radius: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #4c6fff, #6e8fff);
    border-radius: 30px;
    transition: width 0.5s ease;
}

/* Form elements */
.form-group {
    margin-bottom: 25px;
}

.options-list {
    list-style: none;
    margin-top: 15px;
}

.option-item {
    margin-bottom: 12px;
}

.option-label {
    display: block;
    padding: 14px 18px;
    background: #f9fafb;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #4a5568;
}

.option-label:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

input[type="radio"] {
    margin-right: 12px;
}

input[type="radio"]:checked + .option-label {
    background: rgba(76, 111, 255, 0.1);
    border-color: #4c6fff;
    color: #4c6fff;
    font-weight: 500;
}

.btn {
    display: inline-block;
    background: #4c6fff;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 15px;
}

.btn:hover {
    background: #3a5af9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 111, 255, 0.3);
}

.btn.secondary {
    background: #718096;
}

.btn.secondary:hover {
    background: #4a5568;
    box-shadow: 0 5px 15px rgba(74, 85, 104, 0.3);
}

/* Recommendations */
.recommendations-header {
    margin-bottom: 30px;
    text-align: center;
}

.recommendations-count {
    display: inline-block;
    background: rgba(76, 111, 255, 0.1);
    color: #4c6fff;
    padding: 8px 18px;
    border-radius: 30px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
}

.service-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-details:hover {
    transform: translateY(-5px);
}

.service-details:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.service-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.03);
}

.price-tag {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4c6fff;
    margin: 15px 0;
}

.duration-tag {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Lead form */
.lead-capture-form {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px dashed #e2e8f0;
}

.lead-capture-form h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #4c6fff;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 20px;
}

.form-row .form-group {
    flex: 1;
    min-width: 240px;
    padding: 0 10px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a5568;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #4c6fff;
    outline: none;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-check input {
    margin-right: 10px;
    margin-top: 6px;
}

.form-check label {
    font-size: 14px;
    color: #4a5568;
}

.form-submit {
    margin-top: 25px;
}

/* Alert messages */
.alert {
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 8px;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(72, 187, 120, 0.1);
    color: #2f855a;
    border: 2px solid #48bb78;
}

.alert-danger {
    background-color: rgba(245, 101, 101, 0.1);
    color: #c53030;
    border: 2px solid #f56565;
}

/* Branding */
.branding {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #a0aec0;
}

.branding a {
    color: #4c6fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.branding a:hover {
    color: #3a5af9;
    text-decoration: underline;
}

/* Add Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .card {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.7rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}