/* Additional CSS for mobile menu and animations */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

.mobile-menu-btn.active i:before {
    content: "\f00d";  /* Font Awesome X icon */
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
    }
    
    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
}

/* Animation classes */
.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Success message styling */
.success-message {
    text-align: center;
    padding: 30px;
}

.success-message i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Enhance flame logo */
.flame-logo i {
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Add hover effects to contact items */
.contact-item {
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(-5px);
}

/* Improve form styling */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(227, 6, 19, 0.3);
}

/* Add a back-to-top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    background-color: #c00;
}
