.fade-in { animation: fadeIn 0.5s ease-in-out; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

input:focus { border-bottom-color: #C8A660; outline: none; }

/* Image Adjustments */
.hero-image-desktop img {
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}
.hero-image-mobile { z-index: 1; position: relative; }
.hero-image-mobile img {
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
.mobile-text-container { position: relative; z-index: 10; margin-top: -60px; }
.mobile-app-container { background-color: #000000; position: relative; }

html[lang="es"] .hero-image-mobile { z-index: 0; }
html[lang="es"] .mobile-text-container { margin-top: -80px; }
html[lang="es"] .mobile-app-container { background: linear-gradient(to bottom, #000000 0%, #0a0a0a 100%); }

/* Miami Background with Gradient */
.bg-miami-gradient {
    position: absolute;
    inset: 0;
    background-image: url('https://romeogonzalezlaw.com/wp-content/uploads/2025/12/miami_bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

/* FAQ Accordion Styles */
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-item:last-child { border-bottom: none; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1rem;
}
.faq-item.active .faq-icon { transform: rotate(180deg); }

.wizard-option {
    width: 100%;
    border: 2px solid #C8A660;
    background: #C8A660;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 1.25rem;
    border-radius: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.wizard-option i {
    font-size: 0.85rem;
}
.wizard-option:hover {
    background: #000000;
    border-color: #000000;
    color: #fff;
    transform: scale(0.98);
}
.wizard-option:active {
    transform: scale(0.95);
}
.wizard-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.wizard-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #C8A660;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}
.wizard-back:hover {
    color: #B08E4B;
}
.btn-primary {
    width: 100%;
    padding: 14px;
    background: #C8A660;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-primary:hover {
    background: #B08E4B;
}
.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
