/* ========================================
   Footer Styles - Modern & Impressive Design
   ======================================== */

/* ========== FOOTER MAIN STYLES ========== */
.dss-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.dss-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* ========== FOOTER TOP SECTION ========== */
.dss-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 40px;
    padding: 60px 80px;
    position: relative;
    z-index: 1;
}

/* ========== LEFT SECTION ========== */
.dss-footer-left {
    padding-right: 20px;
}

.dss-footer-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #e12b31, #e72c32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    letter-spacing: 1px;
}

.dss-footer-content {
    font-size: 16px;
    line-height: 1.8;
    color: #b8c5d6;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.dss-footer-social {
    display: flex;
    gap: 12px;
}

.dss-footer-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dss-footer-social-icon:hover {
    background: linear-gradient(135deg, #e12b31, #e72c32);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    border-color: transparent;
}

.dss-footer-social-icon i {
    font-size: 18px;
    color: #ffffff;
}

/* ========== MIDDLE SECTION ========== */
.dss-footer-middle {
    padding: 0 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.dss-footer-section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.dss-footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e12b31, #e72c32);
    border-radius: 2px;
}

.dss-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dss-footer-link-item {
    margin-bottom: 10px;
}

.dss-footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b8c5d6;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 0;
    letter-spacing: 1px;
}

.dss-footer-link:hover {
    color: #e12b31;
    transform: translateX(8px);
}

.dss-footer-link i {
    width: 30px;
    height: 30px;
    background: rgba(233, 69, 96, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #e12b31;
    transition: all 0.3s ease;
}

.dss-footer-link:hover i {
    background: linear-gradient(135deg, #e12b31, #e72c32);
    color: #ffffff;
}

/* ========== RIGHT SECTION ========== */
.dss-footer-right {
    padding-left: 20px;
}

.dss-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dss-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dss-footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.dss-footer-contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e12b31, #e72c32);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dss-footer-contact-icon i {
    font-size: 18px;
    color: #ffffff;
}

.dss-footer-contact-info {
    flex: 1;
}

.dss-footer-contact-label {
    font-size: 12px;
    color: #8892a6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.dss-footer-contact-text {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.5;
    letter-spacing: 1px;
    margin-bottom: 0;
}
.dss-footer-contact-text a{
    color: #ffffff;
}

/* ========== FOOTER BOTTOM SECTION ========== */
.dss-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.dss-footer-copyright {
    font-size: 18px;
    color: #8892a6;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.dss-footer-copyright span {
    color: #e12b31;
    font-weight: 600;
}

.dss-footer-bottom-links {
    display: flex;
    gap: 30px;
}

.dss-footer-bottom-link {
    color: #8892a6;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dss-footer-bottom-link:hover {
    color: #e12b31;
}

/* ========== DECORATIVE ELEMENTS ========== */
.dss-footer-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

.dss-footer-glow-1 {
    background: #e12b31;
    top: -100px;
    right: 10%;
}

.dss-footer-glow-2 {
    background: #0f3460;
    bottom: -100px;
    left: 5%;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .dss-footer-top {
        grid-template-columns: 1fr 1fr;
        padding: 50px 40px;
    }

    .dss-footer-middle {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
    }

    .dss-footer-right {
        grid-column: span 2;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        padding-left: 0;
    }

    .dss-footer-bottom {
        padding: 25px 40px;
    }
}

@media (max-width: 768px) {
    .dss-footer-top {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        gap: 30px;
    }

    .dss-footer-left {
        padding-right: 0;
    }

    .dss-footer-social {
        justify-content: flex-start;
    }

    .dss-footer-middle {
    text-align: left;
    padding: 0;
    padding-top: 30px;
    }
    
    .dss-footer-link {
        justify-content: start;
    }

    .dss-footer-right {
        grid-column: span 1;
    }

    .dss-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 25px;
    }

    .dss-footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}
