/* Footer Styles */
.hepigo-footer-section {
    width: 100%;
    margin-top: 4rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hepigo-footer-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Red Contact Section */
.hepigo-footer-contact-red {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    padding: 50px 0;
    color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.hepigo-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.hepigo-contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.hepigo-contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hepigo-contact-item:hover .hepigo-contact-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hepigo-contact-icon i {
    font-size: 20px;
    color: #fff;
}

.hepigo-contact-content {
    flex: 1;
}

.hepigo-contact-content h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hepigo-contact-content p {
    margin: 5px 0 0;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Dark Info Section */
.hepigo-footer-info-dark {
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 60px 0 30px;
    color: #fff;
}

.hepigo-footer-info-dark h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.hepigo-footer-info-dark h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #ff0000;
    border-radius: 2px;
}

.hepigo-footer-info-dark p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.hepigo-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hepigo-services-list li {
    font-size: 14px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.hepigo-services-list li:hover {
    color: #ff0000;
    padding-left: 5px;
}

/* Bottom Row */
.hepigo-footer-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 40px;
}

.hepigo-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.hepigo-social-media-icons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.hepigo-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hepigo-social-icon:hover {
    background: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    border-color: #ff0000;
}

.hepigo-social-icon i {
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hepigo-footer-contact-red {
        padding: 40px 0;
    }

    .hepigo-footer-info-dark {
        padding: 50px 0 25px;
    }

    .hepigo-footer-info-dark h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767.98px) {
    .hepigo-footer-contact-red {
        padding: 35px 0;
    }

    .hepigo-contact-item {
        padding: 15px;
    }

    .hepigo-footer-info-dark {
        padding: 40px 0 20px;
        text-align: center;
    }

    .hepigo-footer-info-dark h3 {
        font-size: 16px;
    }

    .hepigo-services-list {
        display: inline-block;
        text-align: left;
    }

    .hepigo-footer-bottom-row {
        padding-top: 20px;
        margin-top: 30px;
    }

    .hepigo-copyright {
        text-align: center;
        font-size: 13px;
    }

    .hepigo-social-media-icons {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 575.98px) {
    .hepigo-footer-contact-red {
        padding: 30px 0;
    }

    .hepigo-contact-item {
        flex-direction: row;
        text-align: left;
        padding: 12px;
    }

    .hepigo-contact-icon {
        width: 45px;
        height: 45px;
    }

    .hepigo-contact-icon i {
        font-size: 18px;
    }

    .hepigo-contact-content h4 {
        font-size: 14px;
    }

    .hepigo-contact-content p {
        font-size: 13px;
    }

    .hepigo-footer-info-dark {
        padding: 35px 0 20px;
    }

    .hepigo-footer-info-dark h3 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .hepigo-footer-info-dark p,
    .hepigo-services-list li {
        font-size: 13px;
    }

    .hepigo-social-icon {
        width: 38px;
        height: 38px;
    }

    .hepigo-social-icon i {
        font-size: 15px;
    }
}
