.address-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.85), rgba(37, 99, 235, 0.75));
}

.breadcrumb {
    padding: 24px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb .current {
    color: var(--primary-color);
}

.address-section {
    margin-bottom: 60px;
}

.address-card {
    text-align: center;
    padding: 48px 40px;
    margin-bottom: 32px;
}

.address-card .card-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.address-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.address-text {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
}

.address-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.map-display {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-display img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    font-size: 48px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -100%); }
    50% { transform: translate(-50%, -115%); }
}

.traffic-section {
    margin-bottom: 60px;
}

.traffic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.traffic-card {
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.traffic-icon {
    font-size: 40px;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: 50%;
}

.traffic-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.traffic-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.traffic-content .tip {
    font-size: 13px;
    color: #888;
    padding-left: 16px;
    position: relative;
}

.traffic-content .tip::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 12px;
}

.contact-hint .hint-inner {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
}

.hint-text h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.hint-text p {
    font-size: 15px;
    opacity: 0.9;
}

.hint-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.hint-actions .btn-primary {
    background: #fff;
    color: var(--primary-color);
}

.hint-actions .btn-primary:hover {
    background: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.hint-actions .btn-outline {
    border-color: #fff;
    color: #fff;
}

.hint-actions .btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .address-card {
        padding: 32px 20px;
    }

    .address-card h2 {
        font-size: 22px;
    }

    .address-text {
        font-size: 15px;
        padding: 16px;
    }

    .address-actions {
        flex-direction: column;
    }

    .address-actions .btn {
        width: 100%;
    }

    .map-display img {
        height: 280px;
    }

    .map-marker {
        font-size: 36px;
    }

    .traffic-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .traffic-card {
        padding: 24px 20px;
    }

    .traffic-icon {
        width: 48px;
        height: 48px;
        font-size: 28px;
    }

    .traffic-card h3 {
        font-size: 17px;
    }

    .contact-hint .hint-inner {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .hint-actions {
        width: 100%;
        flex-direction: column;
    }

    .hint-actions .btn {
        width: 100%;
    }
}