/* Breadcrumb */
.breadcrumb {
    background: #f5f5f5;
    padding: 15px 0;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #f5a623;
}

/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-title {
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f5a623;
    display: inline-block;
    width: 100%;
}

.contact-quote {
    text-align: center;
    font-style: italic;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Info Boxes */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-box {
    display: flex;
    border: 2px solid #333;
    background: white;
    overflow: hidden;
    transition: all 0.3s;
}

.contact-info-box:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.contact-icon {
    background: #000;
    width: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
}

.contact-details {
    padding: 25px 20px;
    flex: 1;
}

.contact-label {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-value {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.contact-value a {
    color: #0066cc;
    text-decoration: none;
}

.contact-value a:hover {
    color: #f5a623;
}

.contact-hotline {
    font-weight: 600;
    color: #333;
}

/* Map Section */
.map-section {
    margin-top: 40px;
}

.map-container {
    width: 100%;
    height: 450px;
    border: 2px solid #e0e0e0;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}
