/* ═══════════════════════════════════════════
   ROOT VARIABLES
═══════════════════════════════════════════ */
:root {
    --yellow: #F4B400;
    --yellow-dark: #D9A000;
    --yellow-light: #FFF8E1;
    --dark: #1A1A1A;
    --grey-900: #2D2D2D;
    --grey-700: #4A4A4A;
    --grey-500: #7A7A7A;
    --grey-300: #CCCCCC;
    --grey-100: #F4F4F4;
    --grey-50: #FAFAFA;
    --white: #FFFFFF;
    --border: #E5E5E5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --radius: 10px;
    --transition: 0.25s ease;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--grey-900);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ═══════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════ */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--yellow-dark);
    margin-bottom: 14px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.18;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 15px;
    color: var(--grey-500);
    line-height: 1.8;
    max-width: 540px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--dark);
    border-color: var(--yellow);
}

.btn-yellow:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    box-shadow: 0 6px 20px rgba(244, 180, 0, 0.35);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--grey-300);
    background: var(--grey-50);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

#header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    color: var(--yellow);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo-words {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.3px;
}

.logo-tag {
    font-size: 9.5px;
    font-weight: 500;
    color: var(--grey-500);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

nav.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav.desktop-nav a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--grey-700);
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition);
}

nav.desktop-nav a:hover {
    color: var(--dark);
    background: var(--grey-100);
}

.nav-cta {
    margin-left: 16px;
    padding: 10px 24px !important;
    font-size: 13px !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Sidebar */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition);
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--white);
    z-index: 999;
    padding: 30px 24px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.sidebar-close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: none;
    font-size: 20px;
    color: var(--grey-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.sidebar-close:hover {
    background: var(--grey-100);
}

.sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--grey-700);
    padding: 13px 16px;
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.sidebar nav a:hover {
    color: var(--dark);
    background: var(--grey-100);
    border-color: var(--border);
}

.sidebar-cta {
    margin-top: 24px;
}

.sidebar-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#home {
    padding-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Geometric background pattern */
#home::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    background:
        linear-gradient(135deg, var(--grey-50) 0%, var(--grey-100) 100%);
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Dot grid */
#home::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: radial-gradient(circle, var(--grey-300) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.4;
}

.hero-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-left {
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow-light);
    border: 1.5px solid rgba(244, 180, 0, 0.4);
    color: var(--grey-900);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 28px;
    animation: fadeUp 0.5s ease both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-h1 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeUp 0.5s 0.1s ease both;
}

.hero-h1 em {
    font-style: normal;
    color: var(--yellow-dark);
}

.hero-p {
    font-size: 16px;
    color: var(--grey-500);
    line-height: 1.85;
    max-width: 440px;
    margin-bottom: 36px;
    animation: fadeUp 0.5s 0.2s ease both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.5s 0.3s ease both;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.5s 0.4s ease both;
}

.trust-item {
    text-align: center;
}

.trust-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.trust-num span {
    color: var(--yellow-dark);
}

.trust-lbl {
    font-size: 11px;
    color: var(--grey-500);
    margin-top: 3px;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    width: 100%;
    max-width: 440px;
    position: relative;
}

.hero-card-main {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 32px;
    border: 1px solid var(--border);
}

.cement-bag-visual {
    height: 220px;
    background: linear-gradient(145deg, #3A3A3A 0%, #1A1A1A 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.cement-bag-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 8px,
            rgba(255, 255, 255, 0.03) 8px, rgba(255, 255, 255, 0.03) 16px);
}

.bag-icon {
    font-size: 64px;
    line-height: 1;
}

.bag-label {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 16px;
    border-radius: 20px;
}

.bag-weight {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
}

.hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hcf-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.hcf-text p {
    font-size: 12px;
    color: var(--grey-500);
    margin-top: 2px;
}

.hcf-badge {
    background: var(--yellow-light);
    color: var(--yellow-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(244, 180, 0, 0.3);
}

/* Floating badges */
.hero-float {
    position: absolute;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    padding: 12px 18px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatBadge 4s ease-in-out infinite;
}

.hero-float-1 {
    top: -20px;
    left: -30px;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: -10px;
    right: -20px;
    animation-delay: 2s;
}

.float-icon {
    font-size: 24px;
}

.float-text h5 {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
}

.float-text p {
    font-size: 11px;
    color: var(--grey-500);
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
#about {
    padding: 100px 0;
    background: var(--grey-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-img-block {
    position: relative;
}

.about-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    object-fit: cover;
    height: 420px;
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.6) 0%, transparent 50%);
}

.about-stat-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 24px 28px;
    border: 1px solid var(--border);
    text-align: center;
}

.asc-num {
    font-size: 40px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.asc-num span {
    color: var(--yellow-dark);
}

.asc-lbl {
    font-size: 12px;
    color: var(--grey-500);
    margin-top: 4px;
    font-weight: 500;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.af-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.af-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--grey-300);
    transform: translateX(4px);
}

.af-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--yellow-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.af-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.af-item p {
    font-size: 12.5px;
    color: var(--grey-500);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════ */
#why-choose-us {
    padding: 100px 0;
    background: var(--white);
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header .section-desc {
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px 28px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--grey-300);
    transform: translateY(-6px);
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--yellow-light);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all var(--transition);
}

.why-card:hover .why-icon {
    background: var(--yellow);
}

.why-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 13px;
    color: var(--grey-500);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════ */
#products {
    padding: 100px 0;
    background: var(--grey-50);
}

.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.product-card.featured {
    border-color: var(--yellow);
    border-width: 2px;
}

.pc-img {
    height: 180px;
    position: relative;
    background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.pc-emoji {
    font-size: 60px;
}

.pc-img-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pc-img-tag.hot {
    background: var(--dark);
    color: var(--white);
}

.pc-body {
    padding: 24px;
}

.pc-brand {
    font-size: 11px;
    font-weight: 600;
    color: var(--yellow-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.pc-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.pc-body p {
    font-size: 13px;
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: 18px;
}

.pc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
}

.pc-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    background: var(--grey-100);
    color: var(--grey-700);
    border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════
   ENQUIRY
═══════════════════════════════════════════ */
#enquiry {
    padding: 100px 0;
    background: var(--white);
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 72px;
    align-items: start;
}

.enq-left {}

.enq-left .section-desc {
    margin-bottom: 40px;
}

.enq-step {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--border);
}

.enq-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-num {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.step-text p {
    font-size: 13px;
    color: var(--grey-500);
    line-height: 1.6;
}

/* Form */
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 44px 40px;
    box-shadow: var(--shadow-lg);
}

.form-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-card-sub {
    font-size: 13px;
    color: var(--grey-500);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fg {
    margin-bottom: 18px;
}

.fg label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--grey-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.fg label .req {
    color: var(--yellow-dark);
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: var(--grey-300);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.15);
}

.fg select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.fg textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.7;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--grey-50);
    margin-bottom: 22px;
    cursor: pointer;
    transition: border-color var(--transition);
}

.captcha-row:hover {
    border-color: var(--grey-300);
}

.captcha-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--yellow-dark);
    flex-shrink: 0;
}

.captcha-row label {
    font-size: 14px;
    color: var(--grey-700);
    font-weight: 500;
    cursor: pointer;
    flex: 1;
}

.captcha-logo {
    font-size: 24px;
    margin-left: auto;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--yellow);
    color: var(--dark);
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.3px;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: var(--yellow-dark);
    box-shadow: 0 8px 24px rgba(244, 180, 0, 0.35);
    transform: translateY(-2px);
}

/* Thank you state */
.ty-state {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.ty-state.show {
    display: block;
}

.form-fields.hidden {
    display: none;
}

.ty-icon {
    font-size: 72px;
    margin-bottom: 16px;
    line-height: 1;
}

.ty-state h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.ty-state p {
    font-size: 14px;
    color: var(--grey-500);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
#contact {
    padding: 80px 0;
    background: var(--grey-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.cc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--yellow-light);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--grey-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-mark {
    background: var(--yellow);
    color: var(--dark);
}

.footer-brand .logo-name {
    color: var(--white);
}

.footer-brand .logo-tag {
    color: rgba(255, 255, 255, 0.45);
}

.fb-p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.85;
    margin-top: 18px;
    max-width: 320px;
}

.fb-tag {
    display: inline-block;
    margin-top: 20px;
    background: rgba(244, 180, 0, 0.12);
    border: 1px solid rgba(244, 180, 0, 0.3);
    color: var(--yellow);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-style: italic;
    letter-spacing: 0.3px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--yellow);
}

.footer-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.3);
    flex-wrap: wrap;
    gap: 10px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width:1024px) {
    nav.desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .hero-left {
        padding: 80px 0 60px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-block {
        max-width: 500px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .enquiry-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 28px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-trust {
        flex-wrap: wrap;
        justify-content: center;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }
}