/* Modern Footer - Shared Footer Component */
.shared_footer_footer-section {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #1dd1a1, #55a3ff, #a55eea, #26de81) 1;
    margin-top: 30px;
    position: relative;
}

.shared_footer_footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Main */
.shared_footer_footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding: 50px 0 30px 0;
    align-items: start;
}

/* Footer Brand */
.shared_footer_footer-brand {
    max-width: 400px;
}

.shared_footer_brand-logo h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #1dd1a1, #55a3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.shared_footer_brand-tagline {
    display: block;
    color: #a55eea;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shared_footer_brand-description {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 17px;
    margin: 0;
}

/* Footer Navigation */
.shared_footer_footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.shared_footer_nav-group h4 {
    color: #ecf0f1;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 8px;
}

.shared_footer_nav-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #1dd1a1, #55a3ff);
    border-radius: 1px;
}

.shared_footer_nav-group a {
    display: block;
    color: #95a5a6;
    text-decoration: none;
    padding: 8px 0;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
}

.shared_footer_nav-group a:hover {
    color: #55a3ff;
    padding-left: 12px;
}

.shared_footer_nav-group a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1dd1a1, #55a3ff);
    transition: width 0.3s ease;
}

.shared_footer_nav-group a:hover::before {
    width: 8px;
}

/* Contact Items */
.shared_footer_contact-item {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shared_footer_contact-item i {
    color: #55a3ff;
    font-size: 16px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.shared_footer_contact-item span {
    color: #95a5a6;
    font-size: 16px;
    transition: color 0.3s ease;
    flex: 1;
}

.shared_footer_contact-item:hover i {
    color: #1dd1a1;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.shared_footer_contact-item:hover span {
    color: #55a3ff;
}

/* Footer Bottom */
.shared_footer_footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.shared_footer_footer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 15px;
    color: #95a5a6;
}

.shared_footer_separator {
    color: #55a3ff;
    font-weight: 600;
}

/* Enhanced Mobile Responsive Footer */
@media (max-width: 1024px) {
    .shared_footer_footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .shared_footer_footer-nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .shared_footer_footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .shared_footer_footer-section {
        margin-top: 20px;
        border-top: 2px solid transparent;
    }
    
    .shared_footer_footer-content {
        padding: 0 15px;
    }
    
    .shared_footer_footer-main {
        padding: 35px 0 25px 0;
        gap: 35px;
    }
    
    .shared_footer_footer-brand {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .shared_footer_brand-logo h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .shared_footer_brand-description {
        font-size: 16px;
        line-height: 1.7;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .shared_footer_footer-nav {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: left;
    }
    
    .shared_footer_nav-group {
        background: rgba(255,255,255,0.05);
        border-radius: 12px;
        padding: 20px;
        border: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s ease;
    }
    
    .shared_footer_nav-group:hover {
        background: rgba(255,255,255,0.08);
        border-color: rgba(85, 163, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    
    .shared_footer_nav-group h4 {
        text-align: center;
        font-size: 18px;
        margin-bottom: 18px;
        color: #55a3ff;
    }
    
    .shared_footer_nav-group h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    .shared_footer_nav-group a {
        padding: 10px 15px;
        margin: 2px 0;
        border-radius: 8px;
        font-size: 16px;
        background: rgba(255,255,255,0.02);
        border: 1px solid transparent;
        transition: all 0.3s ease;
    }
    
    .shared_footer_nav-group a:hover {
        background: rgba(85, 163, 255, 0.1);
        border-color: rgba(85, 163, 255, 0.3);
        padding-left: 20px;
        color: #1dd1a1;
    }
    
    .shared_footer_contact-item {
        padding: 8px 15px;
        margin: 4px 0;
        border-radius: 8px;
        background: rgba(255,255,255,0.02);
        border: 1px solid transparent;
        transition: all 0.3s ease;
    }
    
    .shared_footer_contact-item:hover {
        background: rgba(85, 163, 255, 0.1);
        border-color: rgba(85, 163, 255, 0.3);
        transform: translateX(5px);
    }
    
    .shared_footer_contact-item i {
        font-size: 18px;
        width: 20px;
    }
    
    .shared_footer_contact-item span {
        font-size: 16px;
    }
    
    .shared_footer_footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 0;
        background: rgba(0,0,0,0.2);
        border-radius: 12px 12px 0 0;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .shared_footer_footer-info {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
        line-height: 1.6;
    }
    
    .shared_footer_separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .shared_footer_footer-content {
        padding: 0 12px;
    }
    
    .shared_footer_footer-main {
        padding: 25px 0 20px 0;
        gap: 25px;
    }
    
    .shared_footer_brand-logo h2 {
        font-size: 26px;
        margin-bottom: 8px;
    }
    
    .shared_footer_brand-description {
        font-size: 15px;
        max-width: 280px;
    }
    
    .shared_footer_footer-nav {
        gap: 20px;
    }
    
    .shared_footer_nav-group {
        padding: 16px;
        border-radius: 10px;
    }
    
    .shared_footer_nav-group h4 {
        font-size: 17px;
        margin-bottom: 15px;
    }
    
    .shared_footer_nav-group h4::after {
        width: 35px;
    }
    
    .shared_footer_nav-group a {
        padding: 8px 12px;
        font-size: 15px;
    }
    
    .shared_footer_nav-group a:hover {
        padding-left: 16px;
    }
    
    .shared_footer_contact-item {
        padding: 6px 12px;
        gap: 8px;
    }
    
    .shared_footer_contact-item i {
        font-size: 16px;
        width: 18px;
    }
    
    .shared_footer_contact-item span {
        font-size: 15px;
        line-height: 1.4;
    }
    
    .shared_footer_footer-bottom {
        padding: 15px 12px;
        margin: 0 -12px;
    }
    
    .shared_footer_footer-info {
        font-size: 14px;
        gap: 6px;
    }
}

/* Extra Small Mobile Phones (320px and below) */
@media (max-width: 360px) {
    .shared_footer_footer-main {
        padding: 20px 0 15px 0;
        gap: 20px;
    }
    
    .shared_footer_brand-logo h2 {
        font-size: 22px;
    }
    
    .shared_footer_brand-description {
        font-size: 14px;
        max-width: 250px;
    }
    
    .shared_footer_nav-group {
        padding: 14px;
    }
    
    .shared_footer_nav-group h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .shared_footer_nav-group a {
        padding: 6px 10px;
        font-size: 14px;
    }
    
    .shared_footer_contact-item {
        padding: 5px 10px;
    }
    
    .shared_footer_contact-item span {
        font-size: 14px;
    }
    
    .shared_footer_footer-info {
        font-size: 13px;
    }
} 