/* =========================================================
   CONTACT PAGE
========================================================= */


/* =========================================================
   01. CONTACT PAGE BASE
========================================================= */

.contact-page {
    background: #ffffff;
}


/* =========================================================
   02. CONTACT HERO
========================================================= */

.contact-hero {
    padding: 55px 0 65px;
    background: #f8f9fb;
    border-bottom: 1px solid #eeeeee;
}


.contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 45px;

    font-size: 13px;
    font-weight: 500;

    color: #777777;
}


.contact-breadcrumb a {
    color: #222222;
    text-decoration: none;

    transition: color 0.25s ease;
}


.contact-breadcrumb a:hover {
    color: #c40000;
}


.contact-hero-content {
    max-width: 760px;
}


.contact-hero-content .section-label {
    display: inline-block;

    margin-bottom: 14px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #c40000;
}


.contact-hero-content h1 {
    margin: 0 0 18px;

    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;

    color: #111111;
}


.contact-hero-content p {
    max-width: 650px;

    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #666666;
}

/* =========================================================
   03. CONTACT CONTENT
========================================================= */

.contact-content {
    padding: 90px 0 100px;
}
.contact-grid {
    display: grid;
     grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
        gap: 80px;
        align-items: start;

}
/* =========================================================
   04. CONTACT INFORMATION
========================================================= */
.contact-info{
    padding-top: 10px;
}

.contact-label {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c40000;
}

.contact-info h2 {
    margin:  0 0 20px;
    font-family: "Playfair Display", serif;

    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.2;

    color: #111111;
}

.contact-intro {
    max-width: 520px;

    margin: 0 0 30px;

    font-size: 15px;
    line-height: 1.8;

    color: #666666;
}
/* =========================================================
   05. CONTACT INFORMATION ITEMS
========================================================= */

.contact-info-item{
   display: flex;
   align-items: flex-start;
   gap: 18px;
   margin-bottom: 22px;
}

.contact-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d5d6d6;
    color: #c40000;
    font-size: 14px;
    transition:
        background 0.45s ease,
        color 0.25s ease,
}
.contact-info-item:hover .contact-icon {
    background: #c40000;
    color: #ffffff;
}
.contact-info-item h3 {
    margin: 2px 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: #222222;
}

.contact-info-item p {
    margin: 0;

    font-size: 14px;

    line-height: 1.6;

    color: #666666;
}
.contact-info-item a {
    font-size: 14px;

    color: #555555;

    text-decoration: none;

    transition: color 0.25s ease;
}

.contact-info-item a:hover {
    color: #c40000;
}
/* =========================================================
   06. CONTACT SOCIAL
========================================================= */

.contact-social {
    margin-top: 42px;

    padding-top: 32px;

    border-top: 1px solid #eeeeee;
}
.contact-social h3 {
    margin: 0 0 15px;

    font-size: 15px;
    font-weight: 700;

    color: #222222;
}


.contact-social .social-links {
    display: flex;

    align-items: center;

    gap: 10px;
}
.contact-social .social-links a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f4f6f8;

    color: #333333;

    font-size: 13px;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.contact-social .social-links a:hover {
    background: #c40000;

    color: #ffffff;

    transform: translateY(-3px);
}
/* =========================================================
   07. CONTACT FORM WRAPPER
========================================================= */

.contact-form-wrapper {
    padding: 42px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 14px;

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.06);
}
.contact-form-header {
    margin-bottom: 32px;
}


.contact-form-header .contact-label {
    margin-bottom: 12px;
}
.contact-form-header h2 {
    margin: 0 0 12px;

    font-family: "Playfair Display", serif;

    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.2;

    color: #111111;
}


.contact-form-header p {
    max-width: 600px;

    margin: 0;

    font-size: 14px;

    line-height: 1.7;

    color: #707070;
}
/* =========================================================
   08. CONTACT FORM
========================================================= */


.contact-form {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.form-group label {
    font-size: 13px;

    font-weight: 600;

    color: #333333;
}


.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid #dddddd;

    border-radius: 7px;

    background: #ffffff;

    color: #222222;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.form-group input {
    height: 50px;
}


.form-group textarea {
    min-height: 145px;

    resize: vertical;

    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaaaaa;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c40000;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(196, 0, 0, 0.08);
}

/* =========================================================
   09. CONTACT SUBMIT BUTTON
========================================================= */

.contact-submit {
    width: fit-content;

    min-width: 175px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 22px;

    border: none;

    border-radius: 6px;

    background: #c40000;

    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-submit:hover {
    background: #a80000;

    box-shadow:
        0 8px 20px rgba(196, 0, 0, 0.18);
}

.contact-submit i {
    font-size: 12px;

    transition: transform 0.25s ease;
}
.contact-submit:hover i {
    transform: translateX(4px);
}

/* =========================================================
   10. FORM NOTE
========================================================= */

.contact-form-note {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin: -2px 0 0;

    font-size: 12px;

    line-height: 1.6;

    color: #777777;
}


.contact-form-note i {
    margin-top: 3px;

    color: #3b9b61;
}

/* =========================================================
   11. FORM SUCCESS MESSAGE
========================================================= */

.contact-success-message {
    display: none;

    padding: 14px 16px;

    margin-bottom: 20px;

    border-radius: 7px;

    background: #f0faf3;

    border: 1px solid #ccebd5;

    color: #287344;

    font-size: 13px;

    line-height: 1.5;
}


.contact-success-message.show {
    display: block;
}

/* =========================================================
   12. FORM ERROR MESSAGE
========================================================= */

.contact-error-message {
    display: none;

    padding: 14px 16px;

    margin-bottom: 20px;

    border-radius: 7px;

    background: #fff5f5;

    border: 1px solid #f1cccc;

    color: #b32626;

    font-size: 13px;

    line-height: 1.5;
}


.contact-error-message.show {
    display: block;
}







/* =========================================================
   13. TABLET
========================================================= */

@media (max-width: 991px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .contact-info {
        max-width: 750px;
    }


    .contact-form-wrapper {
        max-width: 750px;
    }


    .contact-content {
        padding: 70px 0 80px;
    }

}


/* =========================================================
   14. MOBILE
========================================================= */

@media (max-width: 768px) {

    .contact-hero {
        padding: 40px 0 50px;
    }


    .contact-breadcrumb {
        margin-bottom: 32px;

        font-size: 12px;
    }


    .contact-hero-content h1 {
        font-size: 42px;
    }


    .contact-hero-content p {
        font-size: 15px;

        line-height: 1.7;
    }


    .contact-content {
        padding: 55px 0 65px;
    }


    .contact-grid {
        gap: 45px;
    }


    .contact-info h2 {
        font-size: 32px;
    }


    .contact-form-wrapper {
        padding: 28px 22px;

        border-radius: 10px;
    }


    .contact-form-header h2 {
        font-size: 29px;
    }


    .contact-form {
        gap: 19px;
    }


    .form-group input {
        height: 48px;
    }


    .form-group textarea {
        min-height: 130px;
    }


    .contact-submit {
        width: 100%;
    }

}


/* =========================================================
   15. SMALL MOBILE
========================================================= */

@media (max-width: 550px) {

    .contact-hero {
        padding: 32px 0 42px;
    }


    .contact-breadcrumb {
        margin-bottom: 25px;
    }


    .contact-hero-content h1 {
        font-size: 36px;
    }


    .contact-hero-content p {
        font-size: 14px;
    }


    .contact-content {
        padding: 45px 0 55px;
    }


    .contact-info h2 {
        font-size: 29px;
    }


    .contact-intro {
        font-size: 14px;

        margin-bottom: 32px;
    }


    .contact-info-item {
        gap: 14px;

        margin-bottom: 23px;
    }


    .contact-icon {
        flex: 0 0 44px;

        width: 44px;
        height: 44px;

        font-size: 15px;
    }


    .contact-social {
        margin-top: 32px;

        padding-top: 25px;
    }


    .contact-form-wrapper {
        padding: 24px 18px;
    }


    .contact-form-header {
        margin-bottom: 25px;
    }


    .contact-form-header h2 {
        font-size: 27px;
    }


    .contact-form-header p {
        font-size: 13px;
    }


    .form-group label {
        font-size: 12px;
    }


    .form-group input,
    .form-group textarea {
        font-size: 13px;
    }


    .contact-form-note {
        font-size: 11px;
    }

}


/* =========================================================
   16. VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .contact-hero-content h1 {
        font-size: 32px;
    }


    .contact-info h2 {
        font-size: 27px;
    }


    .contact-form-wrapper {
        padding: 22px 15px;
    }


    .contact-form-header h2 {
        font-size: 25px;
    }

}







