@font-face {
    font-family: 'Futura Md BT';
    src: url('fonts/futuramdbt_bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-green: #0a5621;
    /* Deep forest green */
    --secondary-green: #2e7d32;
    --accent-red: #e31837;
    /* Poy-Sian Red */
    --light-green: #e8f5e9;
    --text-dark: #333;
    --text-light: #fff;
    --font-main: 'Montserrat', sans-serif;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--primary-green);
    /* Background behind overlays */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: #fff;
    color: var(--primary-green);
    border: 2px solid #fff;
}

.btn-primary:hover {
    background-color: #f0f0f0;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* --- Header --- */
.header {
    background-color: rgba(10, 86, 33, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-style: italic;
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--light-green);
}

.nav-buy-btn {
    margin-left: 20px;
    background-color: #B5DB9B;
    border-color: #B5DB9B;
    color: #333;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.nav-buy-btn:hover {
    background-color: #a4ca8a;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.social-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 60px 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Section_Hero Page/Hero - Overlay.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.badges-container {
    width: 100%;
    margin-top: 40px;
}

.hero-content {
    flex: 1;
    color: #fff;
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-style: italic;
    font-weight: 900;
    color: var(--accent-red);
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Futura Md BT', sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #99FF99;
}

.flag-icon img {
    height: 30px;
    border-radius: 50%;
}

.hero-tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: #e5f6e8;
    margin-bottom: 15px;
}

.hero-desc {
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 400px;
}

.hero-highlight {
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-buttons .btn-primary {
    background-color: #B5DB9B;
    border-color: #B5DB9B;
    color: #333;
}

.hero-buttons .btn-primary:hover {
    background-color: #a4ca8a;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    transform: rotate(-15deg);
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.5));
}

/* Badges */
.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.badge {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.badge img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 0.85rem;
    color: #fff;
    text-transform: uppercase;
}

.badge-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

/* --- Products Section --- */
.products {
    position: relative;
    padding: 60px 0;
    background-image: url('images/Section_Products/Products - Overlay background.png');
    background-size: cover;
    background-position: center;
}

.section-title {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 40px;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    max-width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 20px;
    transform: scale(1.1);
}

.product-name {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

/* --- Where to Buy Section --- */
.where-to-buy {
    background-color: #fff;
    padding: 60px 0;
    color: var(--text-dark);
}

.where-to-buy-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.wtb-left {
    display: flex;
    align-items: center;
    gap: 30px;
    border-right: 1px solid var(--primary-green);
    padding-right: 50px;
}

.booth-img {
    height: 320px;
    width: auto;
}

.authenticity-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.authenticity-badge img {
    height: 160px;
    width: auto;
    margin-bottom: 20px;
}

.auth-text-1 {
    font-weight: 800;
    font-size: 1.1rem;
    color: #111;
    letter-spacing: 0.5px;
}

.auth-text-2 {
    font-weight: 700;
    font-size: 1rem;
    color: #d18d40;
}

.wtb-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
}

.wtb-title {
    font-size: 2.8rem;
    color: var(--primary-green);
    font-weight: 900;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wtb-title .arrow {
    background-color: #2b498f;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.wtb-flag {
    height: 35px;
    border-radius: 50%;
}

.wtb-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.store-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    width: 100%;
    align-items: flex-end;
}

.store-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lazada-item {
    position: relative;
}

.lazmall-text {
    font-size: 0.75rem;
    color: #666;
    position: absolute;
    top: -20px;
}

.store-logo-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    height: 60px;
    width: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.shopee-box {
    border-color: #bbb;
}

.lazada-box {
    border-color: #bbb;
}

.tiktok-box {
    border-color: #bbb;
}

.store-logo-box img {
    max-height: 35px;
    max-width: 130px;
    object-fit: contain;
}

.store-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    width: 170px;
    text-align: center;
    border: none;
    font-size: 0.95rem;
}

.shopee-btn {
    background-color: #ee4d2d;
}

.lazada-btn {
    background-color: #000080;
}

.tiktok-btn {
    background-color: #000;
}

/* --- Brand Section --- */
.brand {
    padding: 60px 0;
    background-image: url('images/Section_Brand/Brand - Overlay Transparent.png');
    background-size: cover;
    background-position: center;
    background-color: #e9f0df;
    /* light background behind */
    position: relative;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand-left {
    flex: 1.5;
}

.brand-header {
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #555;
}

.brand-company {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.brand-story-row {
    display: flex;
    gap: 20px;
}

.brand-logo-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.brand-logo-vertical img {
    width: 100%;
    height: auto;
}

.since-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-top: 5px;
}

.brand-text p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #444;
}

.brand-right {
    flex: 1;
}

.brand-badges {
    grid-template-columns: 1fr;
    gap: 25px;
}

.brand-badges .badge-text strong,
.brand-badges .badge-text span {
    color: var(--text-dark);
    /* Dark text for light background */
}

/* --- Contact Section --- */
.contact {
    padding: 60px 0;
    background-image: url('images/Section_Contact/Contact - Overlay Transaparent.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.contact-container {
    display: flex;
    gap: 60px;
}

.contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.scan-qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.scan-text {
    font-weight: 700;
    margin-bottom: 10px;
}

.scan-text span {
    font-weight: 400;
    font-size: 0.9rem;
}

.qr-phone-container {
    position: relative;
    width: 180px;
    /* Increased by ~20% from 150px */
}

.phone-bg {
    width: 100%;
    height: auto;
}

.qr-code {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    /* Increased relative to container */
}

.distributor-info {
    text-align: center;
}

.distributor-info h4 {
    margin-bottom: 15px;
}

.omt-logo {
    width: 120px;
    /* Increased by 20% from 60px */
    margin-bottom: 15px;
}

.distributor-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.4;
}

.follow-us h5 {
    margin-bottom: 10px;
}

.footer-social {
    justify-content: center;
}

.contact-right {
    flex: 1.5;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 60px;
}

.contact-title {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
    resize: vertical;
}

.dummy-captcha {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #d3d3d3;
    padding: 10px 15px;
    border-radius: 3px;
    color: #333;
    width: fit-content;
}

.dummy-captcha label {
    font-size: 0.9rem;
    margin-left: 10px;
    margin-right: 20px;
}

.captcha-logo {
    height: 35px;
}

.checkbox-group-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox-group label {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-submit {
    background-color: #cddc39;
    /* Light green accent */
    color: var(--primary-green);
    border: none;
    align-self: flex-start;
    padding: 10px 40px;
    margin-top: 10px;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
        justify-content: center;
    }

    .where-to-buy-container {
        flex-direction: column;
        gap: 40px;
    }

    .wtb-left {
        display: none;
    }

    .wtb-right {
        padding-left: 0;
        width: 100%;
    }

    .wtb-title {
        font-size: 2.2rem;
        justify-content: center;
    }

    .store-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .store-item {
        flex-direction: row;
        width: 100%;
        max-width: 360px;
        justify-content: space-between;
    }

    .store-logo-box {
        width: 150px;
    }

    .store-btn {
        width: 150px;
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    .lazmall-text {
        top: -20px;
        left: 10px;
    }

    .brand-container {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column-reverse;
    }

    .contact-right {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-left: 0;
        padding-bottom: 40px;
        margin-bottom: 20px;
    }

    .hero-content {
        display: contents;
    }

    .hero-title {
        order: 1;
    }

    .hero-tagline {
        order: 2;
    }

    .hero-desc {
        order: 3;
    }

    .hero-highlight {
        order: 4;
    }

    .hero-image {
        order: 5;
        margin-top: 20px;
    }

    .hero-buttons {
        order: 6;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(10, 86, 33, 0.98);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 99;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-background {
        background-position: left center;
    }

    .hero-title br {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .badges-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

.hero-header-img {
    width: 40rem;
    max-width: 80%;
}