/* breadcrumb */
.breadcrumb-container {
    max-width: 1440px !important;
}
.breadcrumb-item a {
    color: #000 !important;
}
.breadcrumb-item:not(:last-child)::after {
    color: #000 !important;
}
/* total */
.contact-info-column {
    /* flex: 1;  */
    max-width: 550px;
    /* Max width for the info column */
    display: flex;
    flex-direction: column;
    gap: 50px;
}

@media (min-width: 768px) and (max-width: 1365px) {
    .contact-info-column {
        max-width: 50%;
    }
}

.contact-section-title {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}

.contact-section-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;

    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, flex-grow 0.4s ease-in-out, flex-basis 0.4s ease-in-out;
    background-color: #d9d9d9;

    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 48px;
    overflow: hidden;
}

.contact-method a {
    width: 100%;
    height: 100%;
    padding: 12px;
}

.contact-method.active {
    background-color: #d9d9d9;
    flex-grow: 1;
}

.contact-method-header {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Default to center for collapsed state */
    width: 100%;
}

.contact-method.active .contact-method-header {
    justify-content: flex-start;
    /* Align to start (left) for active/expanded state */
}

.contact-method-icon {
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin-right: 0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: margin-right 0.3s ease-in-out 0.1s;
}

.contact-method.active .contact-method-icon {
    margin-right: 8px;
}

.contact-method-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.contact-method-text {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    max-width: 0;
    opacity: 0;
}

.contact-method.active .contact-method-text {
    max-width: 300px;
    opacity: 1;
    margin-left: 8px;
}

.contact-method.email.active .contact-method-text {
    max-width: 300px;
    opacity: 1;
    margin-left: 8px;
}

.contact-form-column {
    flex: 1.5;
    padding: 30px;
}

.contact-form-column .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .contact-form-column .form-row {
        margin-bottom: 0;
    }
}

.contact-form-column .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-column label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form-column input[type="text"],
.contact-form-column input[type="email"],
.contact-form-column input[type="tel"],
.contact-form-column textarea {
    /* width: 100%; */
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-column input:focus,
.contact-form-column textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    outline: none;
}

.contact-form-column .message-group {
    position: relative;
    margin-bottom: 20px;
}

.contact-form-column textarea {
    resize: vertical;
    min-height: 120px;
}

.file-upload-trigger {
    position: absolute;
    bottom: 12px;
    left: 12px;
    cursor: pointer;
    color: #555;
    width: 24px;
    height: 24px;
}

.file-upload-trigger svg {
    width: 100%;
    height: 100%;
}

.file-upload-trigger:hover {
    color: #007bff;
}

.form-submit-row {
    text-align: right;
    /* Align button to the right */
    margin-top: 20px;
}

.submit-button {
    padding: 12px 30px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #555;
}

/* Responsive Adjustments for Contact Form Section */
@media (max-width: 991px) {
    .contact-form-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info-column {
        max-width: 100%;
        /* Full width on smaller screens */
    }

    .contact-section-title {
        font-size: 30px;
    }

    .contact-form-column {
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .contact-form-section {
        padding: 40px 0;
    }

    .contact-form-container {
        padding: 0;
        /* Adjust container padding for mobile */
    }

    .contact-section-title {
        font-size: 26px;
    }

    .contact-section-description {
        font-size: 15px;
    }

    .contact-form-column .form-row {
        flex-direction: column;
        gap: 0;
        /* Remove gap, rely on form-group margin for mobile */
    }

    .contact-form-column .form-group {
        margin-bottom: 20px;
        /* Add margin between form groups when stacked */
    }

    .contact-form-column .form-row .form-group:last-child {
        margin-bottom: 0;
    }

    .contact-form-column .message-group {
        margin-bottom: 20px;
    }

    .submit-button {
        width: 100%;
        padding: 12px 20px;
    }

    .form-submit-row {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .contact-section-title {
        font-size: 22px;
    }

    .contact-method {
        padding: 10px 12px;
    }

    .contact-method-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    .contact-method-text {
        font-size: 14px;
    }

    .contact-form-column input[type="text"],
    .contact-form-column input[type="email"],
    .contact-form-column input[type="tel"],
    .contact-form-column textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .file-upload-trigger {
        bottom: 10px;
        left: 10px;
        width: 22px;
        height: 22px;
    }
}

.site-footer {
    background: #fff !important;
}

.factory-address{
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.factory-address img{
    width:24px;
    height:24px;
}
/*  */


.info-section {
}
.info-left {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.info-content {
    position: absolute;
    width: 50%;
    top: 0;
    height: 100%;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #5394de;
    opacity: 0.9;
    gap: 20px;
}
.info-content a {
    font-size: 18px;
    color: #FFFFFF;
}
.info-content .title {
    margin-bottom: 0;
    color: #FFFFFF;
}
.info-content .title h2 {
    text-align: left;
    color: #FFFFFF;
}
.contact-row img {
    width: 24px;
    height: 24px;
    margin-bottom: auto;
    margin-top: 6px;
}
.contact-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.contact-row p {
    padding: 0;
    margin: 0;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 2;
}
.address-box {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    text-align: left;
    padding: 0px 20px 45px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 18px;
}

@media (max-width: 767px) {
    .info-left>img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    .info-content {
        position: static;
        padding: 20px;
        width: 100%;
    }
    .info-content a {
        font-size: 16px;
    }
    .contact-row p {
        font-size: 16px;
    }
    .contact-row img {
        width: 20px;
        height: 20px;
    }
}
