﻿


/* ===============================
   R&D FEATURE SECTION
================================ */

.rd-feature {
    position: relative;
    width: 100vw;
    height: 72vh; /* ⬅ bigger visual impact */
    min-height: 560px;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.rd-feature-bg {
    position: absolute;
    inset: 0;
    background: url("/images/product-plant-factory-1.webp") center center / cover no-repeat;
}

    /* DARK OVERLAY FOR READABILITY */
    .rd-feature-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0.35) 65%, rgba(0, 0, 0, 0.15) 100% );
    }


/* CONTENT */
.rd-feature-content {
    position: relative;
    z-index: 2;
    max-width: 980px; /* ⬅ content width increased */
    margin-left: 2vw;
    padding: 0 6vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(2px);
    padding: 40px 48px;
    border-radius: 4px;
}

/* LABEL */
.rd-label {
    font-size: 12px;
    letter-spacing: 2.5px;
    color: #9dd5c6;
    margin-bottom: 14px;
}

/* TITLE */
.rd-feature-content h2 {
    font-size: clamp(30px, 3.4vw, 42px);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 22px;
}

/* PARAGRAPHS */
.rd-feature-content p {
    font-size: 16.5px;
    line-height: 1.7;
    color: #f1f6f5;
    margin-bottom: 16px;
    max-width: 880px;
}

/* FINAL HIGHLIGHT LINE */
.rd-highlight {
    margin-top: 10px;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {
    .rd-feature {
        height: auto;
        min-height: 520px;
        padding: 80px 0;
    }

    .rd-feature-content h2 {
        font-size: 26px;
    }

    .rd-feature-content p {
        font-size: 15.5px;
    }

    .rd-feature-content {
        margin-left: 1;
        padding: 32px 22px;
        background: rgba(0,0,0,0.55);
    }
}



/* ===============================
   CONTACT DETAILS SECTION
================================ */
/* =========================================
   CONTACT PAGE – SECTION CSS (FINAL)
========================================= */


/* ===============================
   CAPS / EYEBROW TYPOGRAPHY
================================ */

.rd-label,
.section-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.85;
}


/* ===============================
   CONTACT INFO + FORM
================================ */

.contact-main {
    padding: 80px 0 70px;
    background: #ffffff;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: flex-start;
}

/* ADDRESS */
.contact-address .contact-info-text {
    margin-bottom: 28px;
}

.address-block {
    margin-bottom: 22px;
}

    .address-block strong {
        display: block;
        margin-bottom: 6px;
        color: #122b26;
    }

/* FORM CARD */
.contact-form-card {
    background: #ffffff;
    padding: 38px 36px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

    .contact-form-card h3 {
        margin-bottom: 26px;
    }

    /* FORM */
    .contact-form-card form {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

    .form-row.full {
        grid-template-columns: 1fr;
    }

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 15px;
}

    .contact-form-card input:focus,
    .contact-form-card textarea:focus {
        outline: none;
        border-color: #1f7f5c;
    }

.contact-form-card button {
    margin-top: 10px;
    padding: 14px;
    background: #1f7f5c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
/* ===============================
   FULL WIDTH MAP
================================ */

.contact-map-full {
    width: 100vw;
    height: 480px;
    margin-left: calc(-50vw + 50%);
    background: #eef4f3;
}

    .contact-map-full iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* MOBILE */
@media (max-width: 768px) {
    .contact-map-full {
        height: 340px;
    }
}