:root {
    --contact-yellow: #ffcf33;
    --contact-dark: #111;
}


/* HERO */
.contact-hero {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://moontriam.com/contact1/c4.jpg");
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.6)
    );
    z-index: -1;
}

.contact-hero-content {
    max-width: 650px;
}

.contact-hero-title {
    color: #fff;
    font-family: "DM Sans";
    font-size: 72px;
    font-weight: 600;
}

.contact-hero-text {
    font-size: 20px;
    font-family: "DM Sans";
    line-height: 1.6;
    font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-hero-title {
        white-space: normal;
        font-size: 36px;
    }

    .contact-hero-text {
        font-size: 18px;
        white-space: normal;
    }

    .contact-hero {
        text-align: center;
        justify-content: center;
    }
}


/* Send a Message & Get in touch section */


.contactForm-section * {
    font-family: "DM Sans";
}

/* Titles */
.contactForm-title {
    font-size: 40px;
    font-weight: 600;
    color: #000;
}

/* Labels */
.contactForm-label {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    padding-bottom: 10px;
}

/* Inputs */
.contactForm-input {
    border: 1px solid #ffcf33;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 15px;
}

/* Button */
.contactForm-btn {
    background: #ffcf33;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 16px;
}

/* Right info box */
.contactForm-box {
    border: 2px solid #ffcf33;
    padding: 25px;
    border-radius: 12px;
}

/* Small Icons */
.contactForm-icon {
    width: 42px;
    height: 42px;
    background: #ffcf33;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contactForm-icon img {
    width: 18px;
}

/* Row Item */
.contactForm-row {
    display: flex;
    align-items: flex-start;
}

/* Text */
.cf-label {
    font-size: 16px;
    font-weight: 600;
}

.cf-text {
    font-size: 14px;
    color: #000;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 400;
}

.contactForm-desc{
    font-size: 16px;
    font-weight: 400;
}
/* Responsive */
@media (max-width: 768px) {

    .contactForm-title {
        font-size: 28px;
        text-align: center;
    }

    .contactForm-desc {
        text-align: center;
    }

    .contactForm-box {
        margin-top: 20px;
    }

    .contactForm-row {
        text-align: left;
    }
}

.contactForm-section .row {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1100px;   /* center width fix */
}




/* CONTACT FORM — 360 × 740 (Small Mobile Portrait) */
@media only screen and (max-width: 380px) and (max-height: 760px) {

    .contactForm-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    /* Titles smaller + centered */
    .contactForm-title {
        font-size: 26px !important;
        text-align: left !important;
        line-height: 1.3;
    }

    /* Labels spacing */
    .contactForm-label {
        font-size: 14px !important;
        padding-bottom: 6px !important;
    }

    /* Inputs full width + compact */
    .contactForm-input {
        padding: 10px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
    }

    /* Button full width */
    .contactForm-btn {
        padding: 12px !important;
        font-size: 15px !important;
        border-radius: 8px !important;
    }

    /* Contact description */
    .contactForm-desc {
        font-size: 14px !important;
        line-height: 1.45 !important;
        margin-bottom: 20px !important;
    }

    /* Contact box full width */
    .contactForm-box {
        padding: 18px !important;
        border-radius: 10px !important;
        margin-top: 25px !important;
    }

    /* Icon resize */
    .contactForm-icon {
        width: 34px !important;
        height: 34px !important;
        margin-right: 14px !important;
    }

    .contactForm-icon img {
        width: 16px !important;
    }

    /* Contact rows stack properly */
    .contactForm-row {
        align-items: flex-start !important;
    }

    .cf-label {
        font-size: 14px !important;
        margin-bottom: 4px !important;
    }

    .cf-text {
        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    /* Fix row alignment inside container */
    .contactForm-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
}



/* CONTACT FORM — 344 × 882 (SMALL MOBILE PORTRAIT) */
@media only screen and (max-width: 360px) and (min-height: 850px) {

    .contactForm-section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }

    /* Title */
    .contactForm-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
        text-align: left !important;
        margin-bottom: 18px !important;
    }

    /* Description */
    .contactForm-desc {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        text-align: left !important;
    }

    /* Labels */
    .contactForm-label {
        font-size: 14px !important;
        margin-bottom: 3px !important;
    }

    /* Input fields */
    .contactForm-input {
        padding: 10px 12px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
    }

    /* Button */
    .contactForm-btn {
        padding: 12px !important;
        font-size: 15px !important;
        border-radius: 8px !important;
        margin-top: 5px !important;
    }

    /* Contact Box */
    .contactForm-box {
        padding: 22px !important;
        border-radius: 10px !important;
        margin-top: 30px !important;
    }

    /* Icon small */
    .contactForm-icon {
        width: 34px !important;
        height: 34px !important;
        margin-right: 12px !important;
    }

    .contactForm-icon img {
        width: 16px !important;
    }

    /* Contact rows */
    .contactForm-row {
        align-items: flex-start !important;
    }

    .cf-label {
        font-size: 14px !important;
        margin-bottom: 4px !important;
    }

    .cf-text {
        font-size: 13px !important;
        line-height: 1.45 !important;
        max-width: 95% !important;
    }

    /* Full-width row container */
    .contactForm-section .row {
        margin: 0 !important;
        max-width: 100% !important;
    }
}


/* Footer section */


