.layout-pageContact {
    /* padding-bottom: 60px; */
}

/* Breadcrumb */



/* Contact Body */


.contact-body {
    padding: 30px 0 25px;
}

.column-left {
    padding-right: 50px;
}

.contact-desc {
    margin-bottom: 20px;
}

.column-left h1,
.column-left h2,
.column-left h3,
.column-left h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 0;
    color: var(--color-3);
    line-height: 1.3;
}



/* Contact Form */
.contact-form {
    background: #fff;
}

.contact-form .input-group {
    margin-bottom: 15px;
}

.contact-form .form-control,
.contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.contact-form .form-control:focus,
.contact-form textarea:focus {
    border-color: var(--color-3);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(45, 49, 147, 0.1);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form .button {
    background: var(--color-3);
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--color-3);
}

.contact-form .button:hover {
    background: transparent;
    color: var(--color-3);
    transform: translateY(-2px);
}

/* Column Right - Contact Info */
.column-right {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.column-right h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-2);
    position: relative;
    padding-bottom: 12px;
}

.column-right h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color-3);
}

.contact-info__list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info__item .left .icon {
    width: 42px;
    height: 42px;
    background: rgba(45, 49, 147, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info__item:hover .icon {
    background: var(--color-3);
}

.contact-info__item .left .icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.contact-info__item:hover .icon img {
    filter: brightness(0) invert(1);
}

.contact-info__item .right {
    flex: 1;
}

.contact-info__item .right h1,
.contact-info__item .right h2,
.contact-info__item .right h3,
.contact-info__item .right h4,
.contact-info__item .right strong,
.contact-info__item .right b {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
    margin-top: 0;
    color: var(--color-2);
}

.contact-info__item .right p,
.contact-info__item .right a,
.contact-info__item .right div {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.contact-info__item .right a:hover {
    color: var(--color-3);
}

/* Map */
.contact-map {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
}

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

@media (max-width: 991px) {
    .column-left {
        padding-right: 0;
        margin-bottom: 40px;
    }



    .layout-pageContact .breadcrumb h1 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .column-right {
        padding: 25px;
    }

    .contact-map {
        height: 350px;
    }
}
