/* ADU Calculator Styles - Updated to match IPA Construction branding */

#tmx-adu-calculator-form {
    max-width: 800px;
    margin: 40px auto;
    font-family: 'Raleway', sans-serif;
    padding: 40px;
    border-radius: 12px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

/* Results Display Card - Inspired by competitor but using your branding */
#tmx-adu-calculator-results-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid #F9F8F2;
}

#house {
    background-image: url('ipa-construction-adu.svg');
    background-repeat: no-repeat;
    background-position: center;
}

#house.show {
    opacity: 1;
}

#tmx-adu-calculator-results-card.show {
    opacity: 1;
    transform: translateY(0);
}

#tmx-adu-calculator-results-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    color: #333333;
    margin-bottom: 8px;
    font-weight: 400;
}

#tmx-adu-calculator-results-card .price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #083A3A;
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

#tmx-adu-calculator-results-card .price-details {
    color: #333333DE;
    font-size: 16px;
    margin-top: 12px;
}

/* Form Section */
.tmx-calculator-section {
    margin-bottom: 30px;
}

.tmx-calculator-section h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    text-align: center;
}

.tmx-calculator-section h5 {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    text-align: center;
}

/* Dropdown Container */
.tmx-dropdown-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: 50px;
}

/* Select Styling */
#tmx-adu-calculator-form select {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    padding: 14px 20px;
    border: 2px solid #D6CFC2;
    border-radius: 8px;
    background: #FFFFFF;
    color: #333333;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.2s ease;
    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 16px center;
    background-size: 16px;
    padding-right: 50px;
}

#tmx-adu-calculator-form select:focus {
    outline: none;
    border-color: #083A3A;
    box-shadow: 0 0 0 3px rgba(8, 58, 58, 0.1);
}

#tmx-adu-calculator-form select:hover {
    border-color: #9F876B;
}

/* Option styling */
#tmx-adu-calculator-form select option {
    padding: 10px;
    color: #333333;
    background: #FFFFFF;
}

/* Price Output - Legacy support for existing functionality */
#tmx-adu-calculator-price-output {
    display: none; /* Hidden since we're using the new results card */
}

.tmx-calculator-section-subtext {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    #tmx-adu-calculator-form {
        margin: 20px;
        padding: 24px;
    }
    
    .tmx-dropdown-container {
        flex-direction: column;
        gap: 16px;
    }
    
    #tmx-adu-calculator-form select {
        width: 100%;
        min-width: unset;
    }
    
    #tmx-adu-calculator-results-card .price-amount {
        font-size: 36px;
    }
    
    #tmx-adu-calculator-results-card h3 {
        font-size: 20px;
    }

        .tmx-calculator-section h4 {
        font-family: 'Raleway', sans-serif;
        font-size: 26px;
        color: #333333;
        margin-bottom: 16px;
        text-align: center;
        font-weight: 700;
    }

    .tmx-calculator-section h5 {
        font-family: 'Merriweather', serif;
        font-size: 16px;
        color: #333333;
        text-align: center;
    }
}

@media (max-width: 480px) {
    #tmx-adu-calculator-results-card {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    #tmx-adu-calculator-results-card .price-amount {
        font-size: 28px;
    }
}

/* Loading Animation */
.tmx-calculator-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #D6CFC2;
    border-radius: 50%;
    border-top-color: #083A3A;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Additional Enhancement - Info Tooltips */
.tmx-info-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 8px;
}

.tmx-info-tooltip::after {
    content: 'ⓘ';
    color: #9F876B;
    cursor: help;
    font-size: 14px;
}

/* Form Labels */
.tmx-form-label {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    color: #333333;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

/* Success Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tmx-slide-in {
    animation: slideInUp 0.4s ease-out;
}