/* style/contact-us.css */
#contact-us-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-us-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-us-info {
    flex: 1;
    min-width: 320px;
}

.contact-us-map {
    flex: 1.5;
    min-width: 320px;
}

.contact-us-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.contact-us-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #007bff;
}

.contact-us-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-us-item i {
    font-size: 20px;
    color: #007bff;
    margin-right: 15px;
    width: 25px;
    padding-top: 3px;
    text-align: center;
}

.contact-us-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.contact-us-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-us-item a:hover {
    color: #007bff;
}

.contact-socials {
    margin-top: 30px;
}

.contact-socials h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.contact-social-item {
    text-align: center;
}

.contact-social-item img {
    width: 110px;
    height: 110px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-social-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.contact-social-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.map-and-image .map-container {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-and-image .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-and-image .office-image-container {
    margin-top: 30px;
}

.map-and-image .office-image-container h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.map-and-image .office-image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
} 