/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #01579b 100%);
    color: #ffffff;
    margin-top: auto;
}

.footer-content {
    padding: 60px 0 40px 0;
    position: relative;
}

.footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer-section {
    padding: 0 15px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4fc3f7, #29b6f6);
    border-radius: 2px;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 18px;
    color: #ffffff;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.4);
}

.contact-info {
    flex: 1;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #4fc3f7;
    text-decoration: none;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.footer-links li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #4fc3f7;
    font-size: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.footer-links li:hover::before {
    transform: translateY(-50%) translateX(3px);
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.footer-link:hover {
    color: #4fc3f7;
    text-decoration: none;
    padding-left: 5px;
}

/* Service Locations Dropdown */
.locations-dropdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-dropdown {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.location-dropdown:hover {
    background: rgba(255, 255, 255, 0.08);
}

.country-dropdown {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    color: #4fc3f7;
    font-size: 1rem;
    list-style: none;
    outline: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(79, 195, 247, 0.2);
}

.country-dropdown:hover {
    background: rgba(255, 255, 255, 0.05);
}

.country-dropdown i.fas.fa-map-marker-alt {
    margin-right: 10px;
    font-size: 14px;
}

.dropdown-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.location-dropdown[open] .dropdown-arrow {
    transform: rotate(180deg);
}

.city-dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.1);
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.city-dropdown-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.city-dropdown-list li:last-child {
    border-bottom: none;
}

.city-link {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.city-link:hover {
    background: rgba(79, 195, 247, 0.1);
    color: #4fc3f7;
    text-decoration: none;
    padding-left: 25px;
}

.city-link::before {
    content: '▶';
    position: absolute;
    left: 20px;
    color: #4fc3f7;
    font-size: 8px;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.city-link:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-link {
    color: #4fc3f7;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.brand-link:hover {
    color: #29b6f6;
    text-decoration: none;
}

.developer-credit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
}

.dev-link {
    color: #81c784;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dev-link:hover {
    color: #66bb6a;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        padding: 40px 0 30px 0;
    }
    
    .footer-section {
        margin-bottom: 40px;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    
    .contact-icon i {
        font-size: 16px;
    }
    
    .developer-credit {
        text-align: center;
        margin-top: 15px;
    }
    
    .locations-grid {
        gap: 15px;
    }
    
    .location-group {
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .contact-link,
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .copyright,
    .developer-credit {
        font-size: 0.85rem;
    }
}