/* ============================================
   MAP SECTION & FOOTER - ENHANCED DESIGN
   Professional location display and footer
   ============================================ */

/* ===== ENHANCED MAP SECTION ===== */
.map-section-enhanced {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.map-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.map-container-enhanced {
    position: relative;
    z-index: 1;
}

/* Map Header */
.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.map-badge i {
    font-size: 1.1rem;
}

.map-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 15px;
}

.map-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    font-weight: 500;
}

/* Map Wrapper with Info Cards */
.map-wrapper-with-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

/* Map Frame */
.map-frame-enhanced {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(102, 126, 234, 0.1);
    height: 500px;
    background: #f1f5f9;
    width: 100%;
}

.map-frame-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #10b981 0%, #3b82f6 50%, #8b5cf6 100%);
    z-index: 10;
}

.map-frame-enhanced iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Location Info Cards */
.location-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.location-info-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.location-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.location-info-card:hover::before {
    transform: scaleY(1);
}

.location-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.location-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.location-card-content {
    margin-left: 65px;
}

.location-card-text {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 10px;
    line-height: 1.6;
}

.location-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.location-card-action:hover {
    color: #059669;
    gap: 12px;
}

/* Quick Directions */
.quick-directions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    color: #1e293b;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.direction-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.direction-btn i {
    font-size: 1.2rem;
}

/* ===== ENHANCED FOOTER ===== */
.footer-enhanced {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.footer-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.footer-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Footer Main Content */
.footer-main {
    padding: 70px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-column {
    margin-bottom: 40px;
}

.footer-logo-section {
    max-width: 350px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-column-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

/* Footer Links */
.footer-links-enhanced {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-enhanced li {
    margin-bottom: 12px;
}

.footer-links-enhanced a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer-links-enhanced a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-links-enhanced a:hover {
    color: white;
    padding-left: 25px;
}

.footer-links-enhanced a:hover::before {
    opacity: 1;
    transform: scale(1.3);
}

/* Contact Info in Footer */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.98rem;
    line-height: 1.6;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: white;
}

/* Social Media Links */
.footer-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Newsletter Form */
.footer-newsletter-form {
    margin-top: 20px;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    gap: 10px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-submit-btn {
    padding: 14px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.newsletter-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Trust Badges */
.footer-trust-badges {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 700;
}

.trust-badge i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .location-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .map-section-enhanced {
        padding: 50px 0;
    }

    .map-title {
        font-size: 2rem;
    }

    .map-subtitle {
        font-size: 1rem;
    }

    .map-frame-enhanced {
        height: 350px;
    }

    .location-info-cards {
        grid-template-columns: 1fr;
    }

    .footer-main {
        padding: 50px 0 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .map-title {
        font-size: 1.8rem;
    }

    .map-frame-enhanced {
        height: 300px;
        border-radius: 16px;
    }

    .direction-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .footer-column-title {
        font-size: 1.15rem;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-submit-btn {
        width: 100%;
    }
}
