/* =====================================================
   GLOBAL RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: Arial, Helvetica, sans-serif;

    color: #26352b;
    background-color: #ffffff;

    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* =====================================================
   COLOR VARIABLES
===================================================== */

/* =========================================================
   GDP INDUSTRIAL TECHNOLOGIES
   TOP BARS + NAVBAR
========================================================= */


/* =========================================================
   COLOR VARIABLES
========================================================= */

:root {

    --primary-blue: #0B2D63;
    --dark-blue: #08234D;

    --yellow: #F5A400;
    --green: #198754;

    --white: #ffffff;
    --light-bg: #f6f8fb;

    --text-dark: #222222;
    --border-color: #e5e8ed;

}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Montserrat", Arial, sans-serif;

    color: var(--text-dark);
}


/* =========================================================
   1. TOP WELCOME BAR
========================================================= */

.top-bar {

    width: 100%;

    background: var(--primary-blue);

    color: var(--white);

    min-height: 38px;

    display: flex;
    align-items: center;

    font-size: 13px;
}


.top-bar-inner {

    width: 100%;

    max-width: 1400px;

    margin: auto;

    padding: 0 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* Welcome text */

.welcome-text {

    letter-spacing: 0.2px;

    opacity: 0;

    animation: fadeInLeft 0.8s ease forwards;
}


.welcome-text strong {

    color: #F5A400;

    font-weight: 700;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.social-icons {

    display: flex;

    align-items: center;

    gap: 8px;
}


.social-icons a {

    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    text-decoration: none;

    font-size: 12px;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.social-icons a:hover {

    background-color: var(--accent-yellow);

    color: var(--primary-blue);

    transform: translateY(-2px);
}


/* =========================================================
   2. CONTACT INFORMATION BAR
========================================================= */

.contact-bar {

    width: 100%;

    min-height: 42px;

    background: #e37521;

    /*border-bottom: 1px solid var(--border-color);*/

    display: flex;

    align-items: center;
}


.contact-bar-inner {

    width: 100%;

    max-width: 1400px;

    margin: auto;

    padding: 0 35px;

    display: flex;

    justify-content: center;   /* CHANGE THIS */

    align-items: center;

    gap: 45px;                 /* slightly more spacing */
}


.contact-item {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 12.5px;

    color: #ffffff;

    white-space: nowrap;
}


.contact-item i {

    color: #ffffff;

    font-size: 13px;

    transition: transform 0.3s ease;
}


.contact-item:hover i {

    transform: scale(1.15);

    color: #F5B400;
}


.contact-item span {

    transition: color 0.3s ease;
}


.contact-item:hover span {

    color: var(--primary-blue);
}


/* =========================================================
   3. MAIN NAVBAR
========================================================= */

.navbar {

    width: 100%;

    height: 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background-color: var(--white);

    padding: 0 40px 0 0;

    border-bottom: 1px solid var(--border-color);

    position: sticky;

    top: 0;

    z-index: 9999;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);

}


/* =========================================================
   LOGO AREA
========================================================= */

.navbar .logo {

    display: flex;

    align-items: center;

    height: 80px;

    color: var(--primary-blue);

    white-space: nowrap;
}


.navbar .logo a {

    display: flex;

    align-items: center;

    margin: 0;

    padding: 0;

    text-decoration: none;
}


.navbar .logo img {

    height: 70px;

    width: auto;

    display: block;

    margin: 0;

    padding: 0;

    transition: transform 0.3s ease;
}


.navbar .logo img:hover {

    transform: scale(1.03);
}


/* Logo text */

.logo-text {

    font-size: 19px;

    font-weight: 700;

    line-height: 1.15;

    color: var(--primary-blue);

    margin-left: 8px;
}


.logo-text span {

    display: block;

    color: var(--accent-green);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.5px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.navbar nav {

    display: flex;

    align-items: center;

    gap: 32px;
}


.navbar nav a {

    position: relative;

    color: var(--primary-blue);

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    padding: 10px 0;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* Hover */

.navbar nav a:hover {

    color: var(--accent-yellow);

    transform: translateY(-1px);
}


/* Active */

.navbar nav a.active {

    color: var(--accent-yellow);
}


/* Underline animation */

.navbar nav a::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 2px;

    width: 0;

    height: 2px;

    background-color: var(--accent-yellow);

    transform: translateX(-50%);

    transition: width 0.3s ease;
}


.navbar nav a:hover::after,
.navbar nav a.active::after {

    width: 100%;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {

    display: none;

    background: transparent;

    border: none;

    outline: none;

    color: var(--primary-blue);

    font-size: 29px;

    line-height: 1;

    cursor: pointer;

    padding: 5px;

    z-index: 10001;

    transition: color 0.3s ease;
}


.menu-toggle:hover {

    color: #F5A400;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes fadeInLeft {

    from {

        opacity: 0;

        transform: translateX(-15px);
    }

    to {

        opacity: 1;

        transform: translateX(0);
    }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media screen and (max-width: 768px) {


    /* -----------------------------
       TOP BAR
    ----------------------------- */

    .top-bar {

        min-height: 36px;

        font-size: 11px;
    }


    .top-bar-inner {

        padding: 0 15px;
    }


    .social-icons {

        gap: 3px;
    }


    .social-icons a {

        width: 22px;

        height: 22px;

        font-size: 10px;
    }


    /* -----------------------------
       CONTACT BAR
    ----------------------------- */

    .contact-bar {

        min-height: auto;

        padding: 7px 0;
    }


    .contact-bar-inner {

        padding: 0 15px;

        justify-content: center;

        gap: 15px;

        flex-wrap: wrap;
    }


    .contact-item {

        font-size: 10px;

        gap: 5px;
    }


    /* -----------------------------
       NAVBAR
    ----------------------------- */

    .navbar {

        height: 70px;

        padding: 0 15px 0 0;
    }


    /* Logo */

    .navbar .logo {

        height: 70px;
    }


    .navbar .logo img {

        height: 60px;
    }


    .logo-text {

        font-size: 15px;

        margin-left: 5px;
    }


    .logo-text span {

        font-size: 11px;
    }


    /* -----------------------------
       HIDE DESKTOP MENU
    ----------------------------- */

    .navbar nav {

        display: none;

        position: absolute;

        top: 70px;

        left: 0;

        width: 100%;

        background-color: var(--white);

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 8px 0;

        margin: 0;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

        z-index: 10000;
    }


    /* Show menu */

    .navbar nav.show-menu {

        display: flex;
    }


    /* Mobile links */

    .navbar nav a {

        display: block;

        width: 100%;

        padding: 14px 25px;

        margin: 0;

        font-size: 15px;

        border-bottom: 1px solid #eeeeee;

        background: var(--white);
    }


    .navbar nav a::after {

        display: none;
    }


    .navbar nav a:hover {

        background-color: #f7f9fc;

        transform: none;
    }


    .navbar nav a.active {

        background-color: #f7f9fc;

        border-left: 4px solid #F5A400;
    }


    /* Menu button */

    .menu-toggle {

        display: block;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 480px) {


    .top-bar-inner {

        padding: 0 10px;
    }


    .welcome-text {

        font-size: 9px;
    }


    .social-icons a {

        width: 20px;

        height: 20px;

        font-size: 9px;
    }


    .contact-bar-inner {

        gap: 8px 12px;

        justify-content: center;
    }


    .contact-item {

        font-size: 9px;
    }


    .contact-item i {

        font-size: 10px;
    }


    .navbar {

        height: 65px;

        padding-right: 12px;
    }


    .navbar .logo {

        height: 65px;
    }


    .navbar .logo img {

        height: 55px;
    }


    .logo-text {

        font-size: 13px;
    }


    .logo-text span {

        font-size: 10px;
    }


    .menu-toggle {

        font-size: 27px;
    }


    .navbar nav {

        top: 65px;
    }


    .navbar nav a {

        font-size: 14px;

        padding: 13px 20px;
    }

}

/* =====================================================
   HOME HERO
===================================================== */

.home-hero {
    width: 100%;
    min-height: calc(100vh - 80px);

    display: flex;
    align-items: center;

    position: relative;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url("./main.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.home-hero-content {
    max-width: 750px;

    margin-left: 8%;
    padding: 40px 20px;

    color: white;
}





.home-hero h1 {
    font-size: clamp(42px, 6vw, 75px);

    line-height: 1.05;

    font-weight: 800;

    margin-bottom: 25px;

    color: white;
}


.home-hero h1 span {
    color: #F5B400;
}


.hero-text {
    max-width: 650px;

    font-size: 21px;

    line-height: 1.6;

    color: white;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .home-hero {
        min-height: calc(100vh - 70px);

        background-position: center;
    }

    .home-hero-content {
        margin-left: 0;

        padding: 30px 25px;
    }

    .hero-location {
        font-size: 13px;

        letter-spacing: 1.5px;
    }

    .home-hero h1 {
        font-size: 42px;
    }

    .hero-text {
        font-size: 17px;
    }

}

/* =====================================================
   ABOUT US SECTION
===================================================== */

.about-section {
    width: 100%;

    padding: 100px 8%;

    background-color: #ffffff;
}


.about-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 35% 65%;

    gap: 70px;

    align-items: start;
}


/* =====================================================
   ABOUT TITLE
===================================================== */

.about-title {
    position: sticky;
    top: 120px;
}


.section-label {
    color: #F5B400;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.about-title h2 {
    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.15;

    color: #146B3A;

    margin: 0;
}


.about-title h2 span {
    display: block;

    color: #198754;
}


/* =====================================================
   ABOUT CONTENT
===================================================== */

.about-content {
    border-left: 4px solid var(--yellow);

    padding-left: 35px;
}


.about-content p {
    font-size: 18px;

    line-height: 1.8;

    color: #4f5d54;

    margin-bottom: 25px;
}


.about-content p:last-child {
    margin-bottom: 0;
}


.about-content strong {
    color: #146B3A;

    font-weight: 700;
}


/* =====================================================
   ABOUT MOBILE
===================================================== */

@media (max-width: 768px) {

    .about-section {
        padding: 70px 5%;
    }


    .about-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .about-title {
        position: static;
    }


    .about-title h2 {
        font-size: 36px;
    }


    .about-content {
        border-left: 3px solid #F5A400;

        padding-left: 20px;
    }


    .about-content p {
        font-size: 16px;

        line-height: 1.7;
    }

}
/* =====================================================
   PRODUCTS SECTION
===================================================== */

.products-section {
    width: 100%;

    padding: 100px 8%;

    background-color: #f5f9f5;
}


/* =====================================================
   PRODUCTS HEADING
===================================================== */

.products-heading {
    max-width: 750px;

    margin: 0 auto 60px;

    text-align: center;
}


.products-heading h2 {
    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.15;

    color: #198754;

    margin-bottom: 20px;
}


.products-heading h2 span {
    color: #146B3A;
}


.products-heading > p:last-child {
    font-size: 17px;

    line-height: 1.7;

    color: #59645d;
}


/* =====================================================
   PRODUCT GRID
===================================================== */

.products-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =====================================================
   PRODUCT CARD
===================================================== */

.product-card {
    background-color: #ffffff;

    border: 1px solid #e1e8e2;

    overflow: hidden;

    transition: 0.3s ease;
}


.product-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.product-image {
    width: 100%;

    height: 220px;

    overflow: hidden;

    background-color: #e8eee9;
}


.product-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.4s ease;
}


.product-card:hover .product-image img {
    transform: scale(1.04);
}


/* =====================================================
   PRODUCT CONTENT
===================================================== */

.product-content {
    padding: 25px;
}


.product-content h3 {
    font-size: 22px;

    color: #146B3A;

    margin-bottom: 10px;
}


.product-content p {
    font-size: 16px;

    line-height: 1.7;

    color: #68736c;
}


/* =====================================================
   PRODUCTS — TABLET
===================================================== */

@media (max-width: 900px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================================
   PRODUCTS — MOBILE
===================================================== */

@media (max-width: 600px) {

    .products-section {
        padding: 70px 5%;
    }


    .products-heading {
        margin-bottom: 40px;
    }


    .products-heading h2 {
        font-size: 36px;
    }


    .products-heading > p:last-child {
        font-size: 16px;
    }


    .products-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .product-image {
        height: 210px;
    }


    .product-content {
        padding: 22px;
    }


    .product-content h3 {
        font-size: 20px;
    }

}

/* =====================================================
   SERVICES SECTION
===================================================== */

.services-section {
    width: 100%;

    padding: 100px 8%;

    background-color: #ffffff;
}


/* =====================================================
   SERVICES HEADING
===================================================== */

.services-heading {
    max-width: 750px;

    margin: 0 auto 60px;

    text-align: center;
}


.services-heading h2 {
    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.15;

    color: #146B3A;

    margin-bottom: 20px;
}


.services-heading h2 span {
    color: #198754;
}


.services-heading > p:last-child {
    font-size: 17px;

    line-height: 1.7;

    color: #59645d;
}


/* =====================================================
   SERVICES GRID
===================================================== */

.services-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.service-card {
    position: relative;

    padding: 35px 30px;

    background-color: #f5f9f5;

    border-bottom: 4px solid #F5B400);

    transition: 0.3s ease;
}


.service-card:hover {
    transform: translateY(-6px);

    background-color: #edf7ef;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}


/* =====================================================
   SERVICE NUMBER
===================================================== */



/* =====================================================
   SERVICE CONTENT
===================================================== */

.service-card h3 {
    font-size: 22px;

    color: var(--dark-green);

    margin-bottom: 12px;
}


.service-card p {
    font-size: 16px;

    line-height: 1.7;

    color: #68736c;
}


/* =====================================================
   SERVICES — TABLET
===================================================== */

@media (max-width: 900px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================================
   SERVICES — MOBILE
===================================================== */

@media (max-width: 600px) {

    .services-section {
        padding: 70px 5%;
    }


    .services-heading {
        margin-bottom: 40px;
    }


    .services-heading h2 {
        font-size: 36px;
    }


    .services-heading > p:last-child {
        font-size: 16px;
    }


    .services-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .service-card {
        padding: 28px 24px;
    }


    .service-card h3 {
        font-size: 20px;
    }

}
/* =====================================================
   INDUSTRIES SECTION
===================================================== */

.industries-section {
    width: 100%;

    padding: 100px 8%;

    background-color: #f5f9f5;
}


/* =====================================================
   INDUSTRIES HEADING
===================================================== */

.industries-heading {
    max-width: 750px;

    margin: 0 auto 60px;

    text-align: center;
}


.industries-heading h2 {
    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.15;

    color: #146B3A;

    margin-bottom: 20px;
}


.industries-heading h2 span {
    color: #198754;
}


.industries-heading > p:last-child {
    font-size: 17px;

    line-height: 1.7;

    color: #59645d;
}


/* =====================================================
   INDUSTRIES GRID
===================================================== */

.industries-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =====================================================
   INDUSTRY CARD
===================================================== */

.industry-card {
    padding: 35px 30px;

    background-color: #ffffff;

    border: 1px solid #e1e8e2;

    text-align: center;

    transition: 0.3s ease;
}


.industry-card:hover {
    transform: translateY(-6px);

    border-color:#F5B400;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}


/* =====================================================
   INDUSTRY ICON
===================================================== */

.industry-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #198754;

    color: #F5B400;

    border-radius: 50%;

    font-size: 28px;

    transition: 0.3s ease;
}


.industry-card:hover .industry-icon {
    background-color: #F5B400;

    color: #198754 ;
}


/* =====================================================
   INDUSTRY CONTENT
===================================================== */

.industry-card h3 {
    font-size: 21px;

    color: #146B3A;

    margin-bottom: 10px;
}


.industry-card p {
    font-size: 16px;

    line-height: 1.7;

    color: #68736c;
}


/* =====================================================
   INDUSTRIES — TABLET
===================================================== */

@media (max-width: 900px) {

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================================
   INDUSTRIES — MOBILE
===================================================== */

@media (max-width: 600px) {

    .industries-section {
        padding: 70px 5%;
    }


    .industries-heading {
        margin-bottom: 40px;
    }


    .industries-heading h2 {
        font-size: 36px;
    }


    .industries-heading > p:last-child {
        font-size: 16px;
    }


    .industries-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .industry-card {
        padding: 30px 22px;
    }

}
/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
    width: 100%;

    padding: 100px 8%;

    background-color: #ffffff;
}


.contact-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}


/* =====================================================
   CONTACT INFO
===================================================== */

.contact-info h2 {
    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.15;

    color: #146B3A;

    margin-bottom: 20px;
}


.contact-info h2 span {
    display: block;

    color: #198754;
}


.contact-intro {
    max-width: 600px;

    font-size: 17px;

    line-height: 1.7;

    color: #59645d;

    margin-bottom: 35px;
}


/* =========================================================
   CONTACT + ENQUIRY SECTION
========================================================= */

.contact-section {

    width: 100%;

    background: #F7F1E6;

    padding: 80px 0;

    box-sizing: border-box;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.contact-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 55px;

    align-items: start;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.contact-info {

    width: 100%;
}


.contact-label {

    display: inline-block;

    color: #F5B400;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 15px;
}


.contact-info .section-title {

    color: #1D3557;

    font-size: 42px;

    line-height: 1.2;

    margin: 0 0 20px;

    font-weight: 700;
}


.contact-description {

    color: #5F6B7A;

    font-size: 17px;

    line-height: 1.8;

    margin: 0 0 30px;
}


/* =========================================================
   INFORMATION CARDS
========================================================= */

.info-card {

    width: 100%;

    background: #FFFFFF;

    padding: 25px;

    margin-top: 20px;

    border-radius: 12px;

    border: 1px solid #E4D8C4;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);

    box-sizing: border-box;

    transition: 0.3s;
}


.info-card:hover {

    transform: translateY(-3px);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}


.info-details h3 {

    color: #0B2C66;

    margin: 0 0 15px;

    font-size: 23px;

    font-weight: 700;
}


.info-details p {

    margin: 10px 0;

    color: #555555;

    line-height: 1.8;

    font-size: 16px;
}


.info-details strong {

    color: #0B2C66;
}


.info-details i {

    color: #146B3A;

    width: 25px;

    margin-right: 5px;
}


/* =========================================================
   CONTACT BOTTOM STRIP
========================================================= */

.contact-bottom {

    margin-top: 20px;

    background: #0B2C66;

    color: #FFFFFF;

    border-radius: 10px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 17px 22px;

    flex-wrap: wrap;

    gap: 15px;

    box-sizing: border-box;
}


.contact-bottom div {

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 14px;

    font-weight: 600;
}


.contact-bottom i {

    color: #F5B400;

    font-size: 18px;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.contact-right {

    width: 100%;
}


/* =========================================================
   ENQUIRY FORM BOX
========================================================= */

.contact-form {

    width: 100%;

    background: #7f82b3;

    border: 1px solid #E4D8C4;

    border-radius: 16px;

    padding: 40px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

    box-sizing: border-box;
}


/* =========================================================
   FORM HEADING
========================================================= */

.form-heading {

    margin-bottom: 28px;
}


.form-heading span {

    color: #F5B400;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;
}


.form-heading h3 {

    color: #0B2C66;

    font-size: 30px;

    margin: 8px 0 10px;

    font-weight: 700;
}


.form-heading p {

    color: #fbfbfd;

    font-size: 15px;

    line-height: 1.6;

    margin: 0;
}


/* =========================================================
   FORM ROW
========================================================= */

.enquiry-form .row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin-bottom: 0;
}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {

    width: 100%;

    margin-bottom: 18px;
}


.form-group label {

    display: block;

    color: #1D3557;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 7px;
}


/* =========================================================
   INPUTS + TEXTAREA
========================================================= */

.enquiry-form input,
.enquiry-form textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 14px 15px;

    background: #fefffe;

    border: 1px solid #D9E0E8;

    border-radius: 8px;

    color: #1D3557;

    font-family: inherit;

    font-size: 15px;

    outline: none;

    transition: 0.3s;
}


.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {

    color: #9AA4B2;
}


.enquiry-form input:focus,
.enquiry-form textarea:focus {

    border-color: #146B3A;

    background: #9ba8ac;

    box-shadow: 0 0 0 3px rgba(20, 107, 58, 0.08);
}


.enquiry-form textarea {

    resize: vertical;

    min-height: 120px;
}


/* =========================================================
   ERROR MESSAGE
========================================================= */

.enquiry-error {

    display: none;

    background: #FFF1F1;

    color: #C62828;

    border: 1px solid #F3C5C5;

    border-radius: 7px;

    padding: 10px 12px;

    margin-bottom: 15px;

    font-size: 14px;

    line-height: 1.5;
}


.enquiry-error.show {

    display: block;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.enquiry-form button {

    width: 100%;

    padding: 15px 20px;

    border: none;

    border-radius: 8px;

    background: #5f186d;

    color: #FFFFFF;

    font-family: inherit;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}


.enquiry-form button:hover {

    background: #285642;

    transform: translateY(-2px);
}


.enquiry-form button i {

    margin-left: 8px;
}


/* =========================================================
   TEAM IMAGE BELOW ENQUIRY
========================================================= */

.contact-team-image {

    width: 100%;

    margin-top: 25px;

    background: #FFFFFF;

    border: 1px solid #E4D8C4;

    border-radius: 15px;

    padding: 20px;

    box-sizing: border-box;

    overflow: hidden;

    text-align: center;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}


.contact-team-image img {

    width: 100%;

    height: auto;

    max-height: 280px;

    object-fit: contain;

    object-position: center;

    display: block;

    margin: 0 auto;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .contact-content {

        grid-template-columns: 1fr;

        gap: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .contact-section {

        padding: 60px 20px;
    }


    .contact-info .section-title {

        font-size: 34px;
    }


    .contact-description {

        font-size: 16px;
    }


    /* Form rows become single column */

    .enquiry-form .row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-form {

        padding: 25px 20px;
    }


    .form-heading h3 {

        font-size: 25px;
    }


    .contact-bottom {

        flex-direction: column;

        align-items: flex-start;
    }


    /* Team image */

    .contact-team-image {

        margin-top: 20px;

        padding: 15px;
    }


    .contact-team-image img {

        max-height: 230px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .contact-info .section-title {

        font-size: 29px;
    }


    .info-card {

        padding: 20px;
    }


    .contact-form {

        padding: 22px 16px;
    }


    .form-heading h3 {

        font-size: 23px;
    }

}


/* =========================================================
   FOOTER
========================================================= */

footer {

    width: 100%;

    background: #222222;

    color: #FFFFFF;

    text-align: center;

    padding: 25px 0;

    box-sizing: border-box;
}


footer p {

    margin: 0;

    font-size: 15px;

    line-height: 1.6;
}