:root {
    --yellow: #f2c300;
    /* Primary brand yellow (from reference) */
    --black: #111111;
    /* Near-black for text & footer */
    --white: #ffffff;
    --surface: #f6f7f9;
    /* light surface / background */
    --muted: #6b7280;
    /* secondary text */
    --radius: 14px;
    --shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    --shadow-soft: 0 8px 18px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}
a{
    color: white;
    text-decoration: unset;
}
html,
body {
    /* height: 100%; */
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI,
        Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
}

.container {
    width: min(1120px, 92%);
    margin-inline: auto;
}

/* Utilities */
.visually-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    background: #f5f5f5;
    color: #5c4a00;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.btn:active {
    transform: translateY(0);
}
#enquiryBtn.btn {
    background-color: var(--yellow);
}

.section-title {
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    margin: 8px 0 22px;
    font-size: 23px;
}

.shadow {
    box-shadow: var(--shadow);
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Placeholder image blocks (replace with your images) */
.img-slot {
    color: #6b6b6b;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 12px;
    user-select: none;
}

/* HERO */
.hero {
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 100%
        ),
        var(--yellow);
    padding: 18px 0 0;
    /* top spacing to match reference */
}

.hero-wrap {
    /* display: grid; */
    gap: 20px;
    grid-template-columns: 1fr;
    align-items: flex-end;
}

.hero-left {
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 340px;
    /* mobile height */
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.brand-tile {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--yellow);
    border-radius: 10px;
    padding: 16px 18px;
    width: max(220px, 42%);
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand-tile small {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-top: 6px;
}

.hero-bottom-shadow {
    height: 36px;
    box-shadow: 0 22px 36px rgba(0, 0, 0, 0.25);
    background: transparent;
}

/* INTRO CARD */
.intro {
    position: relative;
    z-index: 2;
}

.intro-card {
    margin-top: -46px;
    /* pull up over hero like reference */
    padding: 28px 26px;
}

.intro h1 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 4px;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.intro em {
    font-style: italic;
    color: var(--muted);
}

.intro p {
    margin: 14px 0 18px;
    color: #2d2d2d;
}

.intro .cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.intro .cta-note {
    font-size: 14px;
    color: var(--muted);
}

/* PRODUCTS */
.products {
    padding: 80px 0 80px;
}
.products img{
    height : 200px
}
.product-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 8px;
}
header.hero {
            background: url('/images/TMT-Bars_AD.webp')
        }
.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.product .name {
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* WHY CHOOSE */
.why {
    background: var(--yellow);
    padding: 42px 0 54px;
    position: relative;
}

.why .container {
    position: relative;
}

.why h2 {
    font-size: 28px;
    margin: 0 0 18px;
    font-weight: 900;
}

.benefits {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
    max-width: 840px;
}

.benefit {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 8px 0 14px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.35);
}

.tick {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--black);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.benefit h3 {
    margin: 0;
    font-size: 18px;
}

.benefit p {
    margin: 4px 0 0;
    color: #2a2a2a;
}

/* ENQUIRY FORM CARD (raised yellow block) */
.enquiry {
    padding: 34px 0 64px;
    background: linear-gradient(180deg, transparent 0%, #eeeeee 100%);
}

.enquiry-card {
    background: var(--yellow);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 22px;
    margin-inline: auto;
    width: min(920px, 92%);
}

.enquiry-card h3 {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 900;
}

.form {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

label {
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 0;
    outline: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 12px 12px;
    font-size: 16px;
    color: var(--black);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.form .actions {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 4px;
    text-align: center;
    margin: auto;
}

/* FOOTER */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 36px 0 48px;
}

.footer .cols {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
}

.footer h4 {
    margin: 0 0 10px;
    font-size: 16px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #e7e7e7;
}

.footer li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer small {
    display: block;
    margin-top: 24px;
    color: #bdbdbd;
}

/* DESKTOP */
@media (min-width: 960px) {
    .hero-wrap {
    }

    .hero-image {
        height: 480px;
    }

    .intro-card {
        padding: 36px 36px 26px;
        margin-top: -56px;
    }

    .intro h1 {
        font-size: 38px;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

    .why h2 {
        font-size: 32px;
        text-align: center;
    }

    .benefits {
        grid-template-columns: 1fr 1fr;
        column-gap: 40px;
        margin: auto;
    }

    .enquiry-card {
        padding: 28px 30px;
    }

    .form {
        grid-template-columns: 1fr 1fr;
    }

    .form .full {
        grid-column: 1 / -1;
    }

    .footer .cols {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
}
