﻿/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-page {
    width: 100%;
    min-height: calc(100vh - 72px);
    padding: 75px 5%;
    background: #f5fbf7;
}


/* =====================================================
   HEADER
===================================================== */

.contact-header {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #249555;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.contact-header h1 {
    margin: 0 0 15px;
    color: #176d3d;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
    font-weight: 800;
}

.contact-header p {
    max-width: 650px;
    margin: auto;
    color: #6d7c73;
    font-size: 15px;
    line-height: 1.7;
}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}


/* =====================================================
   FORM CARD
===================================================== */

.contact-form-card {
    background: #ffffff;
    padding: 36px;
    border-radius: 20px;
    border: 1px solid #dcebe1;
    box-shadow: 0 12px 35px rgba(36, 149, 85, 0.08);
}


/* =====================================================
   FORM HEADING
===================================================== */

.form-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.form-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eaf7ef;
    font-size: 25px;
}

.form-heading h2 {
    margin: 0 0 4px;
    color: #173b25;
    font-size: 24px;
    font-weight: 800;
}

.form-heading p {
    margin: 0;
    color: #7a877f;
    font-size: 13px;
}


/* =====================================================
   FORM GROUP
===================================================== */

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #249555;
        font-size: 13px;
        font-weight: 800;
    }

    .form-group small {
        display: block;
        margin-top: 6px;
        color: #8a968f;
        font-size: 11px;
    }


/* =====================================================
   INPUT BOX
===================================================== */

.input-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #d7e7dc;
    border-radius: 10px;
    background: #fbfefc;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

    .input-box:focus-within {
        background: #ffffff;
        border-color: #249555;
        box-shadow: 0 0 0 3px rgba(36, 149, 85, 0.10);
    }


/* =====================================================
   INPUT ICON
===================================================== */

.input-icon {
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 17px;
}


/* =====================================================
   INPUT
===================================================== */

.input-box input {
    width: 100%;
    padding: 14px 14px 14px 0;
    border: none;
    outline: none;
    background: transparent;
    color: #173b25;
    font-family: inherit;
    font-size: 14px;
}

    .input-box input::placeholder {
        color: #a0aaa4;
    }


/* =====================================================
   SUBMIT
===================================================== */

.contact-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    background: #249555;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(36, 149, 85, 0.20);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

    .contact-submit:hover {
        background: #176d3d;
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(36, 149, 85, 0.28);
    }

    .contact-submit strong {
        font-size: 19px;
        font-weight: 500;
        transition: margin-left 0.25s ease;
    }

    .contact-submit:hover strong {
        margin-left: 5px;
    }


/* =====================================================
   INFORMATION CARD
===================================================== */

.contact-info-card {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border-radius: 20px;
    background: linear-gradient( 145deg, #176d3d 0%, #249555 100% );
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(36, 149, 85, 0.20);
}


    /* Decorative circles */

    .contact-info-card::before {
        content: "";
        position: absolute;
        width: 230px;
        height: 230px;
        border-radius: 50%;
        right: -100px;
        top: -100px;
        background: rgba(255,255,255,0.07);
    }

    .contact-info-card::after {
        content: "";
        position: absolute;
        width: 170px;
        height: 170px;
        border-radius: 50%;
        left: -90px;
        bottom: -80px;
        background: rgba(255,255,255,0.06);
    }


/* =====================================================
   INFO CONTENT
===================================================== */

.info-top-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 28px;
}

.info-label {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 9px;
    color: rgba(255,255,255,0.78);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-info-card h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 29px;
    line-height: 1.15;
    font-weight: 800;
}

    .contact-info-card h2 span {
        color: #d9ffe5;
    }

.contact-info-card > p {
    position: relative;
    z-index: 1;
    margin: 0 0 28px;
    color: rgba(255,255,255,0.82);
    font-size: 13px;
    line-height: 1.7;
}


/* =====================================================
   INFO ITEM
===================================================== */

.info-item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.16);
}

.info-item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.13);
    font-size: 17px;
}

.info-item h3 {
    margin: 0 0 3px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.info-item p {
    margin: 0;
    color: rgba(255,255,255,0.70);
    font-size: 11px;
}


/* =====================================================
   INFO BOTTOM
===================================================== */

.info-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.16);
}

    .info-bottom span {
        font-size: 17px;
    }

    .info-bottom p {
        margin: 0;
        color: rgba(255,255,255,0.82);
        font-size: 11px;
        font-weight: 600;
    }


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 850px) {

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        min-height: auto;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 550px) {

    .contact-page {
        padding: 50px 20px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

        .contact-header h1 {
            font-size: 34px;
        }

        .contact-header p {
            font-size: 14px;
        }

    .contact-form-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .contact-info-card {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .form-heading h2 {
        font-size: 22px;
    }

    .contact-info-card h2 {
        font-size: 25px;
    }
}
/*==========================================Update contacts*/
/* =====================================================
   CONNECT WITH US
===================================================== */

.connect-section {
    position: relative;
    padding: 95px 0 55px;
    overflow: hidden;
    background: radial-gradient( circle at 10% 20%, rgba(178, 218, 161, .25), transparent 25% ), radial-gradient( circle at 90% 70%, rgba(194, 225, 181, .25), transparent 25% ), #f3f9ef;
}


    /* Decorative botanical circles */

    .connect-section::before {
        content: "🌿";
        position: absolute;
        left: -30px;
        top: 40px;
        font-size: 120px;
        opacity: .12;
        transform: rotate(-25deg);
    }

    .connect-section::after {
        content: "🌿";
        position: absolute;
        right: -30px;
        bottom: 80px;
        font-size: 120px;
        opacity: .12;
        transform: rotate(25deg);
    }


.connect-container {
    position: relative;
    z-index: 2;
    width: min(1180px, 90%);
    margin: auto;
}


/* =====================================================
   HEADING
===================================================== */

.connect-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.connect-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #31733f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.connect-heading h2 {
    margin: 0;
    color: #123d25;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 65px);
    line-height: 1.05;
}

    .connect-heading h2 span {
        color: #298345;
    }

.connect-heading p {
    margin: 22px auto 0;
    max-width: 750px;
    color: #62736a;
    font-size: 17px;
    line-height: 1.75;
}


/* =====================================================
   GRID
===================================================== */

.connect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.lower-grid {
    margin-top: 22px;
}


/* =====================================================
   CARD
===================================================== */

.connect-card {
    position: relative;
    padding: 28px;
    min-height: 390px;
    overflow: hidden;
    border: 1px solid #dce9da;
    border-radius: 22px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 12px 35px rgba(34, 82, 42, .07);
    transition: all .35s ease;
}

    .connect-card::after {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        right: -65px;
        bottom: -65px;
        border-radius: 50%;
        background: #eef7eb;
        z-index: 0;
    }

    .connect-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 50px rgba(34, 82, 42, .12);
    }

    .connect-card > * {
        position: relative;
        z-index: 2;
    }


/* =====================================================
   CARD HEADER
===================================================== */

.card-header {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 17px;
    align-items: center;
    margin-bottom: 24px;
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e0f3df;
    font-size: 30px;
}

.card-header h3 {
    margin: 0 0 5px;
    color: #173d27;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

.card-header p {
    margin: 0;
    color: #607168;
    font-size: 14px;
}

.card-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eff7eb;
    color: #64845d;
    font-size: 12px;
    font-weight: 800;
}


/* =====================================================
   BANK DETAILS
===================================================== */

.bank-details {
    padding: 14px 16px;
    border-radius: 15px;
    background: #f5f9f3;
}

.bank-row {
    display: grid;
    grid-template-columns: 135px 1fr;
    gap: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #e3ebe0;
}

    .bank-row:last-child {
        border-bottom: 0;
    }

    .bank-row span {
        color: #64736a;
        font-size: 13px;
    }

    .bank-row strong {
        color: #183e28;
        font-size: 13px;
        word-break: break-word;
    }


/* =====================================================
   VERIFY MESSAGE
===================================================== */

.verify-message {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 13px 15px;
    border-radius: 13px;
    background: #eaf6e7;
}

.verify-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2f7e3e;
    color: white;
    font-weight: 800;
}

.verify-message strong {
    display: block;
    margin-bottom: 2px;
    color: #286237;
    font-size: 12px;
}

.verify-message p {
    margin: 0;
    color: #6a7b6e;
    font-size: 11px;
}


/* =====================================================
   LOCATION
===================================================== */

.location-content {
    padding-top: 4px;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 17px;
    border-radius: 14px;
    background: #f4f9f1;
}

.location-pin {
    font-size: 25px;
}

.location-address strong {
    display: block;
    color: #23452d;
    font-size: 14px;
    line-height: 1.6;
}

.location-text {
    margin: 18px 0;
    color: #637269;
    font-size: 14px;
    line-height: 1.7;
}

.map-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 13px;
    background: #267c3c;
    color: white;
    text-decoration: none;
    transition: .3s ease;
}

    .map-button strong {
        flex: 1;
        font-size: 14px;
    }

    .map-button:hover {
        background: #1c6230;
        color: white;
        transform: translateY(-2px);
    }

.arrow {
    font-size: 22px;
}

.visit-note {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 12px;
    background: #eef7eb;
}

    .visit-note > span {
        font-size: 25px;
    }

    .visit-note strong,
    .visit-note span {
        display: block;
    }

    .visit-note strong {
        color: #315d38;
        font-size: 13px;
    }

    .visit-note div span {
        color: #718075;
        font-size: 11px;
    }


/* =====================================================
   PHONE / WHATSAPP
===================================================== */

.phone-icon {
    background: #dff3df;
}

.contact-person {
    display: grid;
    grid-template-columns: 43px 1fr auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 11px;
    padding: 11px 13px;
    border-radius: 13px;
    background: #f4f9f2;
}

.person-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e2f1df;
    font-size: 18px;
}

.person-info strong {
    display: block;
    color: #193d27;
    font-size: 13px;
}

.person-info a {
    display: block;
    margin-top: 3px;
    color: #315d39;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

    .person-info a:hover {
        text-decoration: underline;
    }

.person-actions {
    display: flex;
    gap: 7px;
}

.round-action {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: .3s ease;
}

.call-action {
    background: #dff2df;
}

.whatsapp-action {
    background: #d8f3dc;
}

.round-action:hover {
    transform: scale(1.08);
}

.contact-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 14px;
    border-radius: 12px;
    background: #eef7eb;
}

    .contact-bottom > span {
        font-size: 21px;
    }

    .contact-bottom p {
        margin: 0;
        color: #52675a;
        font-size: 12px;
        line-height: 1.55;
    }


/* =====================================================
   EMAIL
===================================================== */

.email-icon {
    background: #e2f0e2;
}

.email-intro {
    margin-bottom: 18px;
    color: #637269;
    font-size: 13px;
    line-height: 1.65;
}

.email-row {
    display: grid;
    grid-template-columns: 38px 1fr 20px;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding: 13px;
    border-radius: 12px;
    background: #f5f9f3;
    color: #23482d;
    text-decoration: none;
    transition: .3s ease;
}

    .email-row:hover {
        background: #eaf5e7;
        color: #23482d;
        transform: translateX(4px);
    }

.email-row-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #e0efdc;
}

.email-row span:nth-child(2) {
    font-size: 13px;
    font-weight: 600;
    word-break: break-all;
}

.email-row strong {
    font-size: 18px;
}

.email-message {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 17px;
    padding: 13px 15px;
    border-radius: 12px;
    background: #eaf3fa;
}

    .email-message > span {
        font-size: 23px;
    }

    .email-message strong {
        color: #31566b;
        font-size: 12px;
    }

    .email-message p {
        margin: 3px 0 0;
        color: #6b7c86;
        font-size: 11px;
    }


/* =====================================================
   FEATURE STRIP
===================================================== */

.connect-features {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    padding: 20px 28px;
    border: 1px solid #dce9d8;
    border-radius: 18px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 10px 30px rgba(37, 79, 43, .06);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #e3f2df;
    font-size: 22px;
}

.feature-item strong,
.feature-item span {
    display: block;
}

.feature-item strong {
    margin-bottom: 4px;
    color: #21452b;
    font-size: 13px;
}

.feature-item span {
    color: #738077;
    font-size: 10px;
}

.feature-divider {
    width: 1px;
    height: 45px;
    background: #d4e1d1;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .connect-features {
        grid-template-columns: 1fr 1fr;
    }

    .feature-divider {
        display: none;
    }
}


@media (max-width: 750px) {

    .connect-section {
        padding: 70px 0 40px;
    }

    .connect-grid {
        grid-template-columns: 1fr;
    }

    .connect-heading h2 {
        font-size: 43px;
    }

    .connect-heading p {
        font-size: 15px;
    }

    .card-header h3 {
        font-size: 24px;
    }

    .connect-features {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px;
    }

    .feature-item {
        justify-content: center;
    }
}


@media (max-width: 500px) {

    .connect-container {
        width: 92%;
    }

    .connect-card {
        padding: 21px;
        min-height: auto;
    }

    .card-header {
        grid-template-columns: 53px 1fr auto;
        gap: 12px;
    }

    .card-icon {
        width: 53px;
        height: 53px;
        font-size: 25px;
    }

    .card-header h3 {
        font-size: 21px;
    }

    .card-header p {
        font-size: 11px;
    }

    .card-number {
        width: 35px;
        height: 35px;
    }

    .bank-row {
        grid-template-columns: 1fr;
        gap: 3px;
        padding: 8px 0;
    }

    .contact-person {
        grid-template-columns: 38px 1fr;
    }

    .person-actions {
        grid-column: 2;
    }

    .connect-heading h2 {
        font-size: 37px;
    }
}