/* ========== EMERGENCY FIXES ========== */

/* App icons */
.app-icon {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: white;
    box-shadow: 0 10px 20px rgba(217,119,6,0.3);
    z-index: 2;
}

/* Feature icons */
.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(217,119,6,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2em;
    color: var(--accent);
    transition: all 0.3s;
}

/* Contact item icon wrapper */
.contact-item > div:first-child {
    width: 50px;
    height: 50px;
    background: rgba(217,119,6,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3em;
    flex-shrink: 0;
}

/* Social links */
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Preloader hide */
.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Ensure all sections visible */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
}

/* Slider track */
.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
}

/* Counter color */
.counter {
    color: var(--accent) !important;
    font-size: 2rem;
    font-weight: 800;
}

/* Scroll indicator */
.scroll-indicator {
    animation: bounce 2s infinite;
    font-size: 1.5em;
    color: var(--text-muted);
}

/* Logo emoji */
.logo span:first-child {
    margin-right: 0.4em;
}

/* Button icons */
.btn span {
    display: inline-block;
}

/* Feature list checkmarks */
.feature-list li span {
    color: var(--accent);
    margin-right: 0.8rem;
    font-weight: bold;
    font-size: 1.2em;
}