﻿body {
    font-family: 'Bai Jamjuree';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    background-color: #fff;
}

/* Scroll Lock Class - Only active on mobile to prevent desktop stuck state */
@media (max-width: 1024px) {
    body.menu-open {
        overflow: hidden !important;
    }
}

a {
    text-decoration: none;
    color: black;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight-red {
    color: #EE1113
}

.btn {
    display: inline-block;
    padding: 12px 40px;
    background-color: #EE1113;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid #EE1113;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.btn:hover {
    background-color: #BB0D0F;
    border-color: #BB0D0F;
    color: #FFFFFF;
}

.btn-pill {
    display: inline-block;
    padding: 10px 30px;
    background-color: #FFE8E8;
    color: #EE1113;
    border: 1px solid #EE1113;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-pill:hover {
    background-color: #EE1113;
    color: white;
}



/* Global Container Fix */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4%;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 650px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-content {
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 18px;
    line-height: 1.4;
    max-width: 650px;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .hero {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        padding: 40px 15px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 500px;
        height: auto;
        padding-top: 40px;
        /* Reduced since body already has padding-top */
        padding-bottom: 50px;
    }

    .hero h1 {
        font-size: 28px;
    }
}

.hero p {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
    max-width: 550px;
    font-weight: 400;
    line-height: 1.6;
}

.hero .btn {
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.about-left {
    text-align: left;
    gap: 8px;
    width: 100%;
}

.about-left .section-label {
    text-align: left;
    margin-bottom: 8px;
    color: #EE1113;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
}


@media (max-width: 991px) {
    .about {
        padding: 60px 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-heading {
        font-size: 32px !important;
        margin-bottom: 30px !important;
    }

    .section-label {
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 40px 20px;
    }

    .about-grid {
        gap: 30px;
    }

    .about-heading {
        font-size: 28px !important;
    }
}

.about-right p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 638px;
}

/* About Section Updates */
.about-heading {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 48px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.btn-box-outline {
    display: inline-block;
    padding: 12px 40px;
    background-color: #FFF0F0;
    border: 2px solid #EE1113;
    color: #EE1113;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-box-outline:hover {
    background: #EE1113;
    color: #fff;
}

/* Products Section */
.products {
    padding: 120px 0;
    background-color: #f4f4f4;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .products {
        padding: 80px 40px;
    }

    .section-heading {
        font-size: 32px !important;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 60px 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-heading {
        font-size: 28px !important;
    }

    .product-card {
        margin-bottom: 20px;
    }
}

.product-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.product-info {
    padding: 25px;
    text-align: left;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

/* WHY CHOOSE US */

.why-us {
    padding: 120px 0;
    background-color: #fff;
    width: 100%;
    overflow: hidden;
}

.why-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.why-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.why-right {
    flex: 1;
}

.why-left .section-label {
    color: #EE1113;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    justify-content: left;
}

.why-main-heading {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
}

.why-img {
    width: 100%;
    max-width: 650px;
    height: 320px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-right .features-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* Fill the column */
}

.why-right .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-icon {
    width: 32px;
    /* Fixed icon width for alignment */
    color: #EE1113;
    font-size: 30px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #000;
    font-weight: 500;
    line-height: 1.3;
}

.feature-text p {
    color: #333333;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* RESPONSIVE FIXES */

@media (max-width: 991px) {
    .why-grid {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .why-left,
    .why-right {
        flex: none;
        width: 100%;
    }

    .why-img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .why-main-heading {
        font-size: 32px;
        line-height: 1.2;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 60px 0;
    }

    .why-main-heading {
        font-size: 28px;
    }

    .feature-text h4 {
        font-size: 20px;
        text-align: start;
        margin: 10px auto;
    }
}

/* Global Presence */
.section-label {
    color: #EE1113;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 20px;
    text-align: center;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.section-heading {
    font-size: 45px;
    text-align: center;
    line-height: 35px;
    margin-bottom: 32px;
    color: #000000;
    font-weight: 500;
    text-transform: uppercase;
}

.global {
    padding: 50px 0;
    background-color: #F7F7F8;
    text-align: center;
}

.map-container {
    margin: 50px auto;
    max-width: 500px;
    font-size: 52px;
}

.global-map-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 80px;
    margin-bottom: 50px;
}

.stat-box {
    padding: 0 20px;
    background: transparent;
    text-align: center;
    border-right: 1px solid #e0e0e0;
}

.stat-box:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 40px;
    color: #333;
    margin-bottom: 25px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    stroke-width: 1px;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stat-box {
        border-right: none;
        padding: 40px 0;
        border-bottom: 1px solid #eee;
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .stat-icon {
        font-size: 33px;
        margin-bottom: -8px;
    }

    .stat-number {
        margin-bottom: 0;
    }
}

.stat-number {
    font-size: 40px;
    font-weight: 500;
    color: #EE1113;
    display: block;
    margin-bottom: 0px;
}

.stat-label {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    margin-top: 0;
    text-transform: none;
    /* Reference image uses standard casing, not uppercase if distinct */
}


/* Contact Section (Redesigned) */
.contact-section {
    width: 100%;
    background-color: #f9f9f9;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-image {
    flex: 1;
    position: relative;
    max-width: 50%;
}

.split-img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.contact-form-container {
    flex: 1;
    background-color: #f9f9f9;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    .contact-split {
        flex-direction: column;
    }

    .contact-image,
    .contact-form-container {
        max-width: 100%;
        flex: auto;
        align-items: center;
    }

    .contact-image {
        height: 400px;
    }

    .split-img {
        height: 100%;
        object-fit: cover;
    }

    .contact-form-container {
        width: 100%;
        padding: 40px 30px;
    }

    .form-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 30px 20px;
    }

    .form-heading {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .new-contact-form {
        max-width: 100%;
    }
}

.form-label-top {
    color: #EE1113;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.form-heading {
    color: black;
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.new-contact-form {
    width: 100%;
    max-width: 600px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group-line {
    flex: 1;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.form-group-line label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.form-group-line input,
.form-group-line textarea {
    width: 100%;
    border: none;
    background: transparent;
    padding: 8px 0;
    font-size: 16px;
    color: #000000;
    outline: none;
    font-family: 'Bai Jamjuree';
}

.form-group-line input::placeholder,
.form-group-line textarea::placeholder {
    color: #828282;
    font-weight: 400;
}

.submit-btn-black {
    background-color: black;
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.submit-btn-black:hover {
    background-color: #333;
}