/*
Theme Name: GeneratePress Child
Theme URI: 
Description: Custom child theme for Fast-Sales Solutions - Victoria TX Cash Home Buyer
Author: 
Author URI: 
Template: generatepress
Version: 1.0.0
*/

/* ==========================================================================
   CUSTOM STYLES (extracted from HTML files)
   ========================================================================== */

/* Fade Up Animation - Safe Version */
.fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Only hide elements if JavaScript is confirmed working */
.js-enabled .fade-up:not(.visible) {
    opacity: 0;
    transform: translateY(30px);
}

.js-enabled .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 500px;
    opacity: 1;
}

/* Wizard Animations */
.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.wizard-step.active {
    display: block;
}

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

/* Card Selection Styles */
.option-card {
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-card:hover {
    border-color: #0D9488;
    background-color: #F0FDFA;
}

.option-card.selected {
    border-color: #0D9488;
    background-color: #CCFBF1;
    box-shadow: 0 0 0 2px #0D9488;
}

/* Situation Card Selection */
.situation-card.selected {
    background-color: #CCFBF1;
    border-color: #0D9488;
    color: #0F766E;
}

/* Contact Method Selection */
.contact-method-opt.selected {
    background-color: #CCFBF1;
    border-color: #0D9488;
    font-weight: bold;
    color: #0F766E;
}