/* Custom Pricing Section Styles */
.custom-pricing-advanced {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 80px 20px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin: 60px auto;
    max-width: 1200px;
    border: 1px solid #eeeeee;
    position: relative;
    overflow: hidden;
}

.pricing-decor {
    position: absolute;
    border-radius: 50%;
}

.pricing-decor-1 {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 51, 51, 0.05);
}

.pricing-decor-2 {
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 51, 51, 0.03);
}

.pricing-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.pricing-badge {
    display: inline-block;
    background-color: rgba(255, 51, 51, 0.1);
    color: #ff3333;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.pricing-header h2 {
    color: #000000;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.pricing-header h2 span {
    color: #ff3333;
}

.pricing-header p {
    color: #666666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.location-note {
    color: #ff3333;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

.pricing-calculator-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.calculator-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eeeeee;
    text-align: left;
}

.calculator-form h3 {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
}

.calculator-form h3::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 4px;
    background-color: #ff3333;
    position: absolute;
    left: 0;
    bottom: -10px;
}

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

.form-group label {
    display: block;
    color: #444444;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 1rem;
    color: #333333;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    transition: all 0.3s ease;
}

select:focus {
    border-color: #ff3333;
    box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.1);
    outline: none;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.option-item label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1 1 200px;
}

.checkbox-option input {
    margin-right: 10px;
    accent-color: #ff3333;
}

.checkbox-option span {
    color: #444444;
}

/* Additional styles for the form */
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 1rem;
    color: #333333;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #ff3333;
    box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.1);
    outline: none;
}

/* Adjust quote display area */
#initial-quote-placeholder {
    transition: all 0.3s ease;
}

#user-details-form {
    text-align: left;
}

#user-details-form h3 {
    text-align: center;
    margin-bottom: 20px;
}

#user-details-form p {
    text-align: center;
    margin-bottom: 25px;
}

.quote-display {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eeeeee;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-content {
    margin-bottom: 30px;
}

.quote-content svg {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    stroke: #ff3333;
    stroke-width: 2;
    fill: none;
}

.quote-content h3 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.quote-content p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

#quote-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff3333;
    margin: 20px 0;
    line-height: 1;
}

#quote-details {
    background-color: rgba(255, 51, 51, 0.05);
    border-left: 3px solid #ff3333;
    padding: 15px;
    text-align: left;
    border-radius: 0 8px 8px 0;
    margin-bottom: 25px;
}

#quote-details p {
    color: #444444;
    margin: 5px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.quote-actions {
    margin-top: auto;
}

.cta-button {
    display: inline-block;
    background-color: #ff3333;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ff3333;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    color: #ff3333;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge svg {
    width: 24px;
    height: 24px;
    stroke: #ff3333;
    stroke-width: 2;
    fill: none;
}

.badge span {
    color: #666666;
    font-size: 0.9rem;
}

/* Hover effects */
.checkbox-option:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cta-button:hover {
    background-color: #ffffff;
    color: #ff3333;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 51, 51, 0.3);
}

.contact-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pricing-header h2 {
        font-size: 2.2rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-calculator-container {
        flex-direction: column;
        align-items: center;
    }
    
    .calculator-form,
    .quote-display {
        max-width: 100%;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pricing-header h2 {
        font-size: 1.8rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
}