/**
 * Smart Estimate Pro - Apple Style Theme
 * Clean, minimalist, and highly polished UI inspired by Cupertino design guidelines.
 */

#sep-calculator-wrapper.sep-container {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    padding: 40px !important;
    color: #1d1d1f !important;
    transition: all 0.3s ease-in-out;
}

#sep-calculator-wrapper h3 {
    color: #1d1d1f !important;
    font-weight: 600 !important;
    letter-spacing: -0.5px !important;
}

#sep-calculator-wrapper p {
    color: #86868b !important;
    font-weight: 400 !important;
}

/* Form Elements */
#sep-calculator-wrapper select, 
#sep-calculator-wrapper input[type="text"],
#sep-calculator-wrapper input[type="email"],
#sep-calculator-wrapper input[type="number"] {
    background-color: #f5f5f7 !important;
    border: 1px solid transparent !important;
    border-radius: 12px !important;
    color: #1d1d1f !important;
    transition: all 0.2s ease-in-out !important;
    font-size: 17px !important;
    padding: 14px 16px !important;
    box-shadow: none !important;
}

#sep-calculator-wrapper select:focus, 
#sep-calculator-wrapper input:focus {
    background-color: #ffffff !important;
    border-color: #0071e3 !important;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.2) !important;
    outline: none !important;
}

/* Custom Checkbox */
.sep-addon-checkbox {
    accent-color: #0071e3 !important;
    transform: scale(1.1);
    cursor: pointer;
}

/* Buttons */
#sep-calculate-btn {
    background-color: #0071e3 !important;
    color: #ffffff !important;
    border-radius: 14px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    padding: 16px 24px !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: all 0.2s ease !important;
}

#sep-calculate-btn:hover {
    background-color: #0077ed !important;
    transform: scale(1.02);
}

#sep-book-btn {
    background-color: #34c759 !important;
    color: #ffffff !important;
    border-radius: 14px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    padding: 16px 24px !important;
    cursor: pointer;
    transition: all 0.2s ease !important;
}

#sep-book-btn:hover {
    background-color: #32d74b !important;
    transform: scale(1.02);
}

/* Progress Bar */
.sep-progress-bar {
    background-color: #e5e5ea !important;
    border-radius: 4px !important;
}

.sep-progress-fill {
    background-color: #0071e3 !important;
    border-radius: 4px !important;
}

/* Result Container */
#sep-result-container {
    background-color: #fbfbfd !important;
    border: 1px solid #e5e5ea !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03) !important;
}

#sep-result-container h4 {
    color: #1d1d1f !important;
    font-weight: 700 !important;
    letter-spacing: -1px !important;
}

/* Labels and small text */
#sep-calculator-wrapper label, 
#sep-calculator-wrapper span {
    color: #1d1d1f !important;
}

#sep-calculator-wrapper .sep-step {
    border-top-color: #e5e5ea !important;
}

/* Footer signature */
#sep-footer {
    border-top-color: #e5e5ea !important;
    color: #86868b !important;
}

#sep-footer a {
    color: #0071e3 !important;
}