/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-hero {

    position: relative;

    overflow: hidden;

    padding: 95px 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(31,122,79,.08),
            transparent 30%
        ),
        #f6faf8;

}


.contact-hero-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;

}


/* =====================================================
   HERO CONTENT
===================================================== */

.contact-hero-content {

    animation:
        contactLeft .8s ease forwards;

}


.contact-tag {

    display: inline-flex;

    padding: 7px 13px;

    border-radius: 5px;

    background:
        rgba(31,122,79,.09);

    color:
        #1f7a4f;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 18px;

}


.contact-hero-content h1 {

    margin: 0;

    color: #103d2b;

    font-size:
        clamp(42px,5vw,64px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;

}


.contact-hero-content h1 span {

    display: block;

    color: #1f7a4f;

}


.contact-hero-content p {

    max-width: 600px;

    margin: 25px 0;

    color: #718078;

    font-size: 14px;

    line-height: 1.85;

}


.contact-hero-points {

    display: flex;

    flex-direction: column;

    gap: 13px;

}


.contact-hero-points div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #40564b;

    font-size: 12px;

    font-weight: 600;

}


.contact-hero-points i {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 27px;

    height: 27px;

    border-radius: 50%;

    background: #e4f5eb;

    color: #1f7a4f;

}


/* =====================================================
   HERO IMAGE
===================================================== */

.contact-hero-image {

    position: relative;

    min-height: 460px;

    display: flex;

    align-items: center;

    justify-content: center;

    animation:
        contactRight .9s ease forwards;

}


.contact-hero-image::before {

    content: "";

    position: absolute;

    width: 430px;

    height: 430px;

    border-radius: 50%;

    border: 1px dashed
        rgba(31,122,79,.25);

    animation:
        contactRotate 18s linear infinite;

}


.contact-image-circle {

    position: absolute;

    width: 390px;

    height: 390px;

    border-radius: 50%;

    background:
        rgba(31,122,79,.09);

}


.contact-hero-image img {

    position: relative;

    z-index: 2;

    width: 350px;

    height: 350px;

    object-fit: cover;

    border-radius: 50%;

    border: 8px solid #ffffff;

    box-shadow:
        0 30px 70px
        rgba(31,122,79,.18);

    transition:
        .5s ease;

}


.contact-hero-image:hover img {

    transform:
        scale(1.04);

    box-shadow:
        0 35px 80px
        rgba(31,122,79,.25);

}


/* =====================================================
   FLOATING IMAGE CARD
===================================================== */

.contact-image-card {

    position: absolute;

    z-index: 5;

    right: 5px;

    bottom: 55px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    border-radius: 13px;

    background:
        rgba(255,255,255,.96);

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.12);

    backdrop-filter:
        blur(10px);

    animation:
        contactFloat 4s ease-in-out infinite;

}


.contact-image-card > i {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e5f5eb;

    color: #1f7a4f;

}


.contact-image-card strong {

    display: block;

    color: #173d2c;

    font-size: 11px;

}


.contact-image-card span {

    display: block;

    margin-top: 4px;

    color: #849089;

    font-size: 9px;

}


/* =====================================================
   CONTACT DETAILS
===================================================== */

.contact-details {

    padding: 75px 0;

    background: #ffffff;

}


.contact-details-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;

}


.contact-info-card {

    display: flex;

    gap: 14px;

    padding: 25px 20px;

    border:
        1px solid #e5ede8;

    border-radius: 14px;

    background: #fafcfb;

    transition:
        .35s ease;

}


.contact-info-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(31,122,79,.25);

    box-shadow:
        0 18px 40px
        rgba(31,122,79,.08);

}


.contact-info-icon {

    width: 43px;

    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: #e7f5ec;

    color: #1f7a4f;

}


.contact-info-card span {

    display: block;

    color: #1f7a4f;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .8px;

}


.contact-info-card small {

    display: block;

    margin-top: 7px;

    color: #9aa59f;

    font-size: 9px;

}


.contact-info-card p {

    margin: 5px 0 0;

    color: #52645a;

    font-size: 11px;

    line-height: 1.7;

}


.contact-info-card a {

    color: #52645a;

    text-decoration: none;

}


.contact-info-card a:hover {

    color: #1f7a4f;

}


/* =====================================================
   FORM SECTION
===================================================== */

.contact-form-section {

    padding: 100px 0;

    background: #f5f8f7;

}


.contact-form-wrapper {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 65px;

    align-items: center;

}


.contact-form-info h2 {

    margin: 0;

    color: #103d2b;

    font-size:
        clamp(35px,4vw,50px);

    line-height: 1.1;

    font-weight: 800;

}


.contact-form-info > p {

    max-width: 480px;

    margin: 20px 0;

    color: #738079;

    font-size: 13px;

    line-height: 1.8;

}


/* =====================================================
   SUPPORT BOX
===================================================== */

.contact-support-box {

    display: flex;

    gap: 15px;

    padding: 22px;

    margin-top: 30px;

    border-radius: 15px;

    background: #ffffff;

    border:
        1px solid #e3ebe6;

}


.support-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #e5f5eb;

    color: #1f7a4f;

    font-size: 19px;

}


.contact-support-box strong {

    color: #173d2c;

    font-size: 14px;

}


.contact-support-box p {

    margin: 7px 0 12px;

    color: #7a8780;

    font-size: 10px;

    line-height: 1.7;

}


.contact-support-box a {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #1f7a4f;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;

}


/* =====================================================
   FORM CARD
===================================================== */

.contact-form-card {

    padding: 35px;

    border-radius: 18px;

    background: #ffffff;

    border:
        1px solid #e1ebe5;

    box-shadow:
        0 20px 60px
        rgba(25,80,53,.07);

}


.form-heading span {

    color: #1f7a4f;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

}


.form-heading h3 {

    margin: 7px 0 25px;

    color: #173d2c;

    font-size: 23px;

}


.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 16px;

}


.form-group {

    margin-bottom: 18px;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color: #53645b;

    font-size: 10px;

    font-weight: 700;

}


.input-box {

    position: relative;

}


.input-box > i {

    position: absolute;

    left: 14px;

    top: 50%;

    transform:
        translateY(-50%);

    color: #8ba096;

    font-size: 13px;

    pointer-events: none;

}


.input-box input,
.input-box select,
.input-box textarea {

    width: 100%;

    border:
        1px solid #dfe8e3;

    border-radius: 7px;

    background: #fafcfb;

    color: #40564b;

    font-family: inherit;

    font-size: 11px;

    outline: none;

    transition:
        .3s ease;

}


.input-box input,
.input-box select {

    height: 43px;

    padding:
        0 14px 0 39px;

}


.input-box textarea {

    resize: vertical;

    min-height: 110px;

    padding:
        13px 14px 13px 39px;

}


.input-box textarea + i {

    top: 17px;

    transform: none;

}


.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {

    border-color:
        #1f7a4f;

    background: #ffffff;

    box-shadow:
        0 0 0 3px
        rgba(31,122,79,.08);

}


.form-submit {

    display: flex;

    align-items: center;

    gap: 15px;

}


.form-submit button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        13px 20px;

    border: 0;

    border-radius: 7px;

    background:
        #1f7a4f;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    cursor: pointer;

    transition:
        .3s ease;

}


.form-submit button:hover {

    background:
        #155e3c;

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(31,122,79,.18);

}


.form-submit span {

    color: #89958e;

    font-size: 9px;

}


.form-submit span i {

    color: #1f7a4f;

}


/* =====================================================
   BOTTOM CTA
===================================================== */

.contact-bottom-cta {

    padding:
        60px 0;

    background:
        #ffffff;

}


.contact-bottom-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        35px 40px;

    border-radius:
        18px;

    background:
        linear-gradient(
            120deg,
            #123f2d,
            #1f7a4f
        );

}


.contact-bottom-inner span {

    color: #9ed7b9;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

}


.contact-bottom-inner h2 {

    max-width: 700px;

    margin: 8px 0 0;

    color: #ffffff;

    font-size: 27px;

}


.contact-bottom-inner a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        13px 18px;

    border-radius: 7px;

    background: #ffffff;

    color: #175c3b !important;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    white-space: nowrap;

    transition: .3s ease;

}


.contact-bottom-inner a:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 25px
        rgba(0,0,0,.15);

}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes contactLeft {

    from {

        opacity: 0;

        transform:
            translateX(-40px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


@keyframes contactRight {

    from {

        opacity: 0;

        transform:
            translateX(40px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


@keyframes contactFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-9px);

    }

}


@keyframes contactRotate {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .contact-hero-grid {

        grid-template-columns:
            1fr;

        text-align: center;

    }


    .contact-hero-content p {

        margin-left: auto;

        margin-right: auto;

    }


    .contact-hero-points {

        align-items: center;

    }


    .contact-details-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .contact-form-wrapper {

        grid-template-columns:
            1fr;

    }


    .contact-form-info {

        text-align: center;

    }


    .contact-form-info > p {

        margin-left: auto;

        margin-right: auto;

    }


    .contact-support-box {

        max-width: 500px;

        margin-left: auto;

        margin-right: auto;

        text-align: left;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .contact-hero,
    .contact-details,
    .contact-form-section {

        padding:
            65px 20px;

    }


    .contact-hero-content h1 {

        font-size: 40px;

    }


    .contact-hero-image {

        min-height: 350px;

    }


    .contact-hero-image img {

        width: 280px;

        height: 280px;

    }


    .contact-image-circle {

        width: 315px;

        height: 315px;

    }


    .contact-hero-image::before {

        width: 340px;

        height: 340px;

    }


    .contact-image-card {

        right: 0;

        bottom: 15px;

    }


    .contact-details-grid {

        grid-template-columns:
            1fr;

    }


    .form-row {

        grid-template-columns:
            1fr;

        gap: 0;

    }


    .contact-form-card {

        padding: 25px 18px;

    }


    .form-submit {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .form-submit button {

        width: 100%;

    }


    .contact-bottom-cta {

        padding:
            45px 20px;

    }


    .contact-bottom-inner {

        flex-direction:
            column;

        align-items:
            flex-start;

        padding:
            28px 22px;

    }


    .contact-bottom-inner h2 {

        font-size: 22px;

    }


    .contact-bottom-inner a {

        width: 100%;

        justify-content:
            center;

    }

}
/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {

    padding: 100px 0;

    background: #f5f8f7;

    overflow: hidden;

}


/* =====================================================
   HEADING
===================================================== */

.contact-heading {

    max-width: 760px;

    margin: 0 auto 70px;

    text-align: center;

}


.contact-tag {

    display: inline-block;

    padding: 7px 14px;

    border-radius: 5px;

    background: rgba(31, 122, 79, 0.09);

    color: #1f7a4f;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.contact-heading h1 {

    margin: 18px 0;

    color: #103d2b;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -2px;

}


.contact-heading h1 span {

    color: #1f7a4f;

}


.contact-heading p {

    max-width: 650px;

    margin: auto;

    color: #748179;

    font-size: 14px;

    line-height: 1.8;

}


/* =====================================================
   CONTACT GRID
===================================================== */

.contact-grid {

    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 70px;

    align-items: start;

}


/* =====================================================
   LEFT CONTENT
===================================================== */

.contact-info {

    padding: 20px 0;

}


.info-intro {

    margin-bottom: 40px;

}


.info-intro > span {

    color: #1f7a4f;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.info-intro h2 {

    margin: 10px 0 14px;

    color: #103d2b;

    font-size: 34px;

    font-weight: 800;

}


.info-intro p {

    max-width: 480px;

    color: #748179;

    font-size: 13px;

    line-height: 1.8;

}


/* =====================================================
   INFO ITEM
===================================================== */

.contact-info-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 28px;

}


.contact-icon {

    width: 48px;

    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background: #e5f4eb;

    color: #1f7a4f;

    font-size: 19px;

    transition: all .3s ease;

}


.contact-info-item:hover
.contact-icon {

    background: #1f7a4f;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(31, 122, 79, .18);

}


.contact-info-item small {

    display: block;

    margin-bottom: 3px;

    color: #1f7a4f;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.contact-info-item h4 {

    margin: 0 0 5px;

    color: #173d2c;

    font-size: 16px;

    font-weight: 700;

}


.contact-info-item p {

    margin: 0;

    color: #748179;

    font-size: 12px;

    line-height: 1.7;

}


.contact-info-item a {

    display: block;

    color: #68766e;

    text-decoration: none;

    font-size: 12px;

    line-height: 1.8;

    transition: .3s ease;

}


.contact-info-item a:hover {

    color: #1f7a4f;

    transform: translateX(3px);

}


/* =====================================================
   CALL BOX
===================================================== */

.contact-call-box {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;

    padding: 20px;

    border: 1px solid #dce9e2;

    border-radius: 14px;

    background: rgba(255,255,255,.65);

    transition: .3s ease;

}


.contact-call-box:hover {

    transform: translateY(-4px);

    border-color: #b9d9c7;

    box-shadow:
        0 15px 35px
        rgba(31,122,79,.08);

}


.call-box-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: #1f7a4f;

    color: #ffffff;

    font-size: 19px;

}


.contact-call-box strong {

    display: block;

    color: #173d2c;

    font-size: 13px;

}


.contact-call-box p {

    margin: 4px 0;

    color: #7a8780;

    font-size: 11px;

}


.contact-call-box a {

    color: #1f7a4f;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

}


/* =====================================================
   FORM CARD
===================================================== */

.contact-form-card {

    position: relative;

    padding: 40px;

    border: 1px solid #dce9e2;

    border-radius: 22px;

    background: rgba(255,255,255,.88);

    box-shadow:
        0 25px 70px
        rgba(27, 73, 51, .08);

    backdrop-filter: blur(10px);

    overflow: hidden;

}


.contact-form-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    top: -100px;

    right: -80px;

    border-radius: 50%;

    background:
        rgba(31,122,79,.07);

    pointer-events: none;

}


/* =====================================================
   FORM HEADING
===================================================== */

.form-heading {

    margin-bottom: 28px;

}


.form-heading span {

    color: #1f7a4f;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

}


.form-heading h3 {

    margin: 8px 0;

    color: #103d2b;

    font-size: 27px;

    font-weight: 800;

}


.form-heading p {

    margin: 0;

    color: #7a8780;

    font-size: 12px;

}


/* =====================================================
   FORM ROW
===================================================== */

.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

}


/* =====================================================
   FORM GROUP
===================================================== */

.form-group {

    margin-bottom: 20px;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color: #344c40;

    font-size: 11px;

    font-weight: 700;

}


/* =====================================================
   INPUT BOX
===================================================== */

.input-box {

    position: relative;

}


.input-box > i {

    position: absolute;

    left: 14px;

    top: 50%;

    transform: translateY(-50%);

    color: #8a9891;

    font-size: 15px;

    pointer-events: none;

    transition: .3s ease;

}


.input-box input,
.input-box select,
.input-box textarea {

    width: 100%;

    border: 1px solid #dce7e1;

    outline: none;

    border-radius: 9px;

    background: #fbfdfc;

    color: #33483e;

    font-family: inherit;

    font-size: 12px;

    transition:
        border .3s ease,
        box-shadow .3s ease,
        background .3s ease;

}


.input-box input,
.input-box select {

    height: 48px;

    padding:
        0 15px 0 42px;

}


.input-box textarea {

    min-height: 130px;

    padding:
        14px 15px 14px 42px;

    resize: vertical;

}


.input-box select {

    appearance: auto;

    cursor: pointer;

}


.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {

    border-color: #1f7a4f;

    background: #ffffff;

    box-shadow:
        0 0 0 4px
        rgba(31,122,79,.08);

}


.input-box:focus-within > i {

    color: #1f7a4f;

}


/* =====================================================
   TEXTAREA ICON
===================================================== */

.textarea-box > i {

    top: 18px;

    transform: none;

}


/* =====================================================
   SUBMIT
===================================================== */

.form-submit {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 8px;

}


.form-submit button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 170px;

    padding: 14px 20px;

    border: none;

    border-radius: 8px;

    background: #1f7a4f;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .5px;

    cursor: pointer;

    transition: all .3s ease;

}


.form-submit button:hover:not(:disabled) {

    background: #155e3c;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px
        rgba(31,122,79,.20);

}


.form-submit button:disabled {

    opacity: .75;

    cursor: not-allowed;

}


.secure-text {

    display: flex;

    align-items: center;

    gap: 6px;

    color: #89958f;

    font-size: 9px;

}


.secure-text i {

    color: #1f7a4f;

    font-size: 14px;

}


/* =====================================================
   LOADING ANIMATION
===================================================== */

.loading-icon {

    animation:
        spin .8s linear infinite;

}


@keyframes spin {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}


/* =====================================================
   FORM MESSAGE
===================================================== */

.form-message {

    display: none;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 20px;

    padding: 14px 16px;

    border-radius: 10px;

    font-size: 11px;

}


.form-message.success {

    display: flex;

    background: #eaf8f0;

    border: 1px solid #c7ead5;

    color: #17663f;

}


.form-message.error {

    display: flex;

    background: #fff1f1;

    border: 1px solid #f0cccc;

    color: #a32626;

}


.form-message > i {

    font-size: 20px;

}


.form-message strong {

    display: block;

    margin-bottom: 3px;

    font-size: 12px;

}


.form-message p {

    margin: 0;

    line-height: 1.6;

    font-size: 10px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .contact-section {

        padding: 80px 20px;

    }


    .contact-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .contact-info {

        max-width: 700px;

        margin: auto;

    }


    .contact-form-card {

        max-width: 750px;

        width: 100%;

        margin: auto;

    }

}


@media (max-width: 767px) {

    .contact-section {

        padding: 65px 20px;

    }


    .contact-heading {

        margin-bottom: 50px;

    }


    .contact-heading h1 {

        font-size: 38px;

    }


    .info-intro h2 {

        font-size: 28px;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .contact-form-card {

        padding: 25px 20px;

        border-radius: 16px;

    }


    .form-submit {

        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

    }


    .form-submit button {

        width: 100%;

    }


    .secure-text {

        justify-content: center;

        width: 100%;

    }

}