.contact-hero-area {
    background-color: #f8f9fa;
}

.contact-hero-area .row {
    align-items: stretch;
}

.contact-hero-content {
    background-color: var(--black-color);
    padding: 40px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.contact-hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white-color);
}

.contact-hero-content p {
    color: var(--white-color);
}

.contact-hero-image {
    height: 100%;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.contact-hero-image img {
    width: 100%;
    border-radius: 10px;
}

.contact-options-area {
    background-color: var(--white-color);
}

.contact-option-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white-color);
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-option-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.contact-option-card .icon {
    margin-bottom: 20px;
}

.contact-option-card .icon i {
    font-size: 48px;
    color: var(--main-color);
}

.contact-option-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-option-card .contact-link {
    color: var(--main-color);
    font-weight: 600;
    text-decoration: none;
}

.branch-locations-area {
    background-color: #f8f9fa;
}

.branch-card {
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.branch-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.branch-content {
    padding: 30px;
}

.branch-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.branch-info {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.branch-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.branch-info li i {
    color: var(--main-color);
    margin-right: 10px;
    font-size: 18px;
}