/* ============================================================
   Microcosm Reframin Pvt. Ltd. — Landing Page
   Brand: Red #D4270D  |  Black #000000
   ============================================================ */

/* ----------  Design Tokens  ---------- */

:root {
    --red: #D4270D;
    --red-dark: #A81C08;
    --red-soft: #FBE9E6;
    --black: #000000;
    --ink: #0D0D0F;
    --ink-2: #1A1B1E;
    --slate: #4A4D55;
    --muted: #6B7280;
    --line: #E6E7EB;
    --line-2: #F0F1F4;
    --bg: #FFFFFF;
    --bg-alt: #F7F8FA;
    --bg-dark: #0B0B0D;
    --bg-dark-2: #131316;
    --white: #FFFFFF;
    --container: 1240px;
    --radius-s: 6px;
    --radius: 12px;
    --radius-l: 20px;
    --shadow-s: 0 2px 8px rgba(13, 13, 15, .06);
    --shadow-m: 0 14px 40px -12px rgba(13, 13, 15, .18);
    --shadow-l: 0 30px 70px -20px rgba(13, 13, 15, .28);
    --ease: cubic-bezier(.22, .61, .36, 1);
    --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
    --font-display: "Sora", "Inter", "Segoe UI", system-ui, sans-serif;
    --header-h: 84px;
}

/* ----------  Reset  ---------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ----------  Layout helpers  ---------- */

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}

.section {
    padding: clamp(64px, 9vw, 130px) 0;
    position: relative;
}

.section--alt {
    background: var(--bg-alt);
}

.section--dark {
    background: var(--bg-dark);
    color: #E9EAEE;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red);
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}

.section--dark .eyebrow {
    color: #FF6B52;
}

.section-head {
    max-width: 760px;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.section-head.text-center .eyebrow {
    justify-content: center;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--ink);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: #fff;
}

h2.title {
    font-size: clamp(30px, 4.2vw, 52px);
    margin: 18px 0 0;
}

h3.subtitle {
    font-size: clamp(22px, 2.6vw, 30px);
}

.lead {
    font-size: clamp(17px, 1.4vw, 19px);
    color: var(--slate);
    margin-top: 20px;
}

.section--dark .lead {
    color: #B6B9C2;
}

/* ----------  Buttons  ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: var(--radius-s);
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: .01em;
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform .3s var(--ease);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn--primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 10px 24px -10px rgba(212, 39, 13, .7);
}

.btn--primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.btn--dark {
    background: var(--ink);
    color: #fff;
}

.btn--dark:hover {
    background: var(--ink-2);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .4);
}

.btn--ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

.btn--outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line);
}

.btn--outline:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}

/* ============================================================
   HEADER
   ============================================================ */

.topbar {
    background: var(--ink);
    color: #C9CBD2;
    font-size: 13.5px;
    letter-spacing: .01em;
}

.topbar .container {
    height: 42px;
}

.topbar a {
    color: #C9CBD2;
    transition: color .2s;
}

.topbar a:hover {
    color: #fff;
}

.topbar__left {
    gap: 26px;
}

.topbar__left span,
.topbar__left a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar__left svg {
    width: 15px;
    height: 15px;
    color: var(--red);
}

.topbar__right {
    gap: 18px;
}

.topbar__right .sep {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, .18);
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s var(--ease), background .3s;
}

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

.header .container {
    height: var(--header-h);
    gap: 24px;
}

.brand {
    gap: 12px;
}

.brand img {
    height: 46px;
    width: auto;
}

.brand__logo1 {
    height: 40px;
    width: auto;
    padding-right: 12px;
    border-right: 1px solid #ddd;
}

.nav {
    gap: 4px;
}

.nav a {
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-2);
    border-radius: var(--radius-s);
    position: relative;
    transition: color .2s;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s var(--ease);
}

.nav a:hover {
    color: var(--red);
}

.nav a:hover::after {
    transform: scaleX(1);
}

.nav__enquire-btn {
    display: none;
}

.header__cta {
    gap: 14px;
}

.header__cta .btn {
    padding: 12px 22px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-s);
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform .3s var(--ease), opacity .3s;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    color: #fff;
    isolation: isolate;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: heroZoom 16s ease-out forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(8, 8, 10, .92) 0%, rgba(10, 10, 12, .78) 38%, rgba(12, 12, 14, .45) 70%, rgba(12, 12, 14, .25) 100%), linear-gradient(0deg, rgba(8, 8, 10, .7) 0%, rgba(8, 8, 10, 0) 40%);
}

.hero__inner {
    padding: clamp(84px, 12vw, 150px) 0 clamp(64px, 8vw, 110px);
    max-width: 880px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(4px);
    margin-bottom: 28px;
}

.hero__tag .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(212, 39, 13, .3);
}

.hero h1 {
    font-size: clamp(38px, 6vw, 76px);
    letter-spacing: -.03em;
    color: #fff;
}

.hero h1 .accent {
    color: #fff;
    position: relative;
}

.hero h1 .underline {
    color: var(--red);
}

.hero__sub {
    font-size: clamp(17px, 1.7vw, 21px);
    color: #D7D9E0;
    max-width: 640px;
    margin-top: 26px;
}

.hero__actions {
    margin-top: 40px;
}

.hero__stats {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, .14);
    background: rgba(8, 8, 10, .4);
    backdrop-filter: blur(6px);
}

.hero__stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hstat {
    padding: 30px 28px;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.hstat:first-child,
.hero__stats .container .hstat:first-child {
    border-left: none;
}

.hero__stats .hstat {
    padding: 30px 28px;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.hero__stats .hstat:first-child {
    border-left: none;
}

.hstat__num {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.hstat__num .unit {
    color: var(--red);
}

.hstat__label {
    font-size: 13.5px;
    color: #B8BAC2;
    margin-top: 10px;
    letter-spacing: .02em;
}

/* ============================================================
   TRUST / LOGOS STRIP
   ============================================================ */

.trust {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.trust .container {
    padding-block: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.trust__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

.trust__items {
    gap: clamp(20px, 4vw, 56px);
}

.trust__item {
    gap: 10px;
    font-weight: 600;
    color: var(--slate);
    font-size: 15px;
}

.trust__item svg {
    width: 22px;
    height: 22px;
    color: var(--red);
}

/* ============================================================
   OVERVIEW
   ============================================================ */

.overview .grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.overview__media {
    position: relative;
}

.overview__media img {
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-m);
    width: 100%;
    aspect-ratio: 4/3.4;
    object-fit: cover;
}

.overview__media .badge {
    position: absolute;
    left: -22px;
    bottom: -22px;
    background: var(--red);
    color: #fff;
    padding: 26px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-m);
    max-width: 230px;
}

.overview__media .badge b {
    font-family: var(--font-display);
    font-size: 38px;
    display: block;
    line-height: 1;
}

.overview__media .badge span {
    font-size: 13.5px;
    opacity: .92;
    display: block;
    margin-top: 8px;
}

.overview__media .frame {
    position: absolute;
    inset: -16px -16px auto auto;
    width: 120px;
    height: 120px;
    border: 2px solid var(--red);
    border-radius: var(--radius);
    z-index: -1;
}

.overview__list {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.ov-item__icon {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-s);
    background: var(--red-soft);
    color: var(--red);
    display: grid;
    place-items: center;
}

.ov-item__icon svg {
    width: 22px;
    height: 22px;
}

.ov-item h4 {
    font-size: 17.5px;
    margin-bottom: 3px;
}

.ov-item p {
    font-size: 15px;
    color: var(--slate);
    margin: 0;
}

.heritage {
    margin-top: 34px;
    padding: 22px 26px;
    border-left: 3px solid var(--red);
    background: var(--bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.heritage p {
    font-size: 15.5px;
    color: var(--slate);
    margin: 0;
}

.heritage b {
    color: var(--ink);
}

/* ============================================================
   PRODUCTS
   ============================================================ */

.prod__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
    justify-content: center;
}

.prod__tab {
    padding: 13px 24px;
    border-radius: 100px;
    border: 1.5px solid var(--line);
    font-weight: 600;
    font-size: 15px;
    color: var(--slate);
    background: #fff;
    transition: all .25s var(--ease);
}

.prod__tab .ph {
    font-size: 12px;
    color: var(--muted);
    display: block;
    font-weight: 500;
}

.prod__tab:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.prod__tab.active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.prod__tab.active .ph {
    color: rgba(255, 255, 255, .6);
}

.prod__panel {
    display: none;
}

.prod__panel.active {
    display: block;
    animation: fadeUp .5s var(--ease);
}

.prod__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.pcard {
    position: relative;
    padding: 30px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
    overflow: hidden;
}

.pcard::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s var(--ease);
}

.pcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-m);
    border-color: transparent;
}

.pcard:hover::before {
    transform: scaleY(1);
}

.pcard__tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--red);
}

.pcard h4 {
    font-size: 21px;
    margin: 10px 0 12px;
}

.pcard p {
    font-size: 14.5px;
    color: var(--slate);
    margin: 0 0 20px;
}

.pcard__meta {
    display: flex;
    gap: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line-2);
}

.pcard__meta div span {
    display: block;
    font-size: 12px;
    color: var(--muted);
}

.pcard__meta div b {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--ink);
}

.pcard__meta div b small {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */

.ind__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-l);
    overflow: hidden;
}

.icard {
    position: relative;
    padding: 40px 34px;
    min-height: 230px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background .35s var(--ease);
    overflow: hidden;
    isolation: isolate;
}

.icard__bgnum {
    position: absolute;
    top: 18px;
    right: 26px;
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    color: rgba(255, 255, 255, .05);
    line-height: 1;
    transition: color .35s;
}

.icard__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-s);
    background: rgba(212, 39, 13, .14);
    color: #FF6B52;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    transition: background .35s, color .35s;
}

.icard__icon svg {
    width: 26px;
    height: 26px;
}

.icard h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}

.icard p {
    font-size: 14px;
    color: #A9ACB6;
    margin: 0;
}

.icard:hover {
    background: var(--red);
}

.icard:hover .icard__icon {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.icard:hover .icard__bgnum {
    color: rgba(255, 255, 255, .16);
}

.icard:hover p {
    color: rgba(255, 255, 255, .9);
}

/* ============================================================
   MANUFACTURING / PROCESS
   ============================================================ */

.mfg .grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.process {
    display: grid;
    gap: 0;
}

.pstep {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
}

.pstep:last-child {
    border-bottom: none;
}

.pstep__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    color: var(--ink);
    transition: all .3s var(--ease);
    background: #fff;
}

.pstep:hover .pstep__num {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    transform: scale(1.06);
}

.pstep h4 {
    font-size: 19px;
    margin-bottom: 4px;
}

.pstep p {
    font-size: 15px;
    color: var(--slate);
    margin: 0;
}

.mfg__media {
    position: relative;
}

.mfg__media img {
    border-radius: var(--radius-l);
    width: 100%;
    aspect-ratio: 3/3.6;
    object-fit: cover;
    box-shadow: var(--shadow-m);
}

.mfg__phasecard {
    position: absolute;
    right: -20px;
    top: 36px;
    background: #fff;
    border-radius: var(--radius);
    padding: 22px 24px;
    box-shadow: var(--shadow-l);
    width: 240px;
    border: 1px solid var(--line);
}

.mfg__phasecard h5 {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.phase-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-top: 1px solid var(--line-2);
    font-size: 14px;
}

.phase-row b {
    font-family: var(--font-display);
}

/* capability cards under process */

.caps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: clamp(50px, 6vw, 80px);
}

.capcard {
    padding: 28px 26px;
    border-radius: var(--radius);
    background: var(--bg-alt);
    border: 1px solid var(--line);
    transition: transform .3s var(--ease), box-shadow .3s;
}

.capcard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-m);
    background: #fff;
}

.capcard svg {
    width: 30px;
    height: 30px;
    color: var(--red);
    margin-bottom: 16px;
}

.capcard h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.capcard p {
    font-size: 14.5px;
    color: var(--slate);
    margin: 0;
}

/* ============================================================
   QUALITY  (split + stats)
   ============================================================ */

.quality {
    background: var(--bg-dark);
    color: #E9EAEE;
}

.quality h2,
.quality h2.title {
    color: #fff;
}

.quality .lead {
    color: #B6B9C2;
}

.quality .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.qfeatures {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.qfeat {
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .02);
    transition: border-color .3s, background .3s;
}

.qfeat:hover {
    border-color: rgba(212, 39, 13, .5);
    background: rgba(212, 39, 13, .06);
}

.qfeat__icon {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-s);
    background: rgba(212, 39, 13, .16);
    color: #FF6B52;
    display: grid;
    place-items: center;
}

.qfeat__icon svg {
    width: 22px;
    height: 22px;
}

.qfeat h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 3px;
}

.qfeat p {
    font-size: 14.5px;
    color: #A9ACB6;
    margin: 0;
}

.qstats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-l);
    overflow: hidden;
}

.qstat {
    background: var(--bg-dark-2);
    padding: 38px 32px;
}

.qstat__num {
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.qstat__num .unit {
    color: #FF6B52;
}

.qstat__label {
    font-size: 14px;
    color: #A9ACB6;
    margin-top: 12px;
}

.qstat--accent {
    background: var(--red);
}

.qstat--accent .qstat__num,
.qstat--accent .qstat__num .unit {
    color: #fff;
}

.qstat--accent .qstat__label {
    color: rgba(255, 255, 255, .92);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.wcard {
    padding: 34px 30px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    position: relative;
    transition: transform .3s var(--ease), box-shadow .3s;
}

.wcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-m);
}

.wcard__n {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: .1em;
}

.wcard h4 {
    font-size: 20px;
    margin: 14px 0 10px;
}

.wcard p {
    font-size: 15px;
    color: var(--slate);
    margin: 0;
}

.wcard__icon {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--line);
    transition: color .3s;
}

.wcard__icon svg {
    width: 30px;
    height: 30px;
}

.wcard:hover .wcard__icon {
    color: var(--red);
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.ctaband {
    position: relative;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.ctaband__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.ctaband__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ctaband__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(168, 28, 8, .95), rgba(120, 18, 5, .82));
}

.ctaband .container {
    padding-block: clamp(56px, 7vw, 92px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.ctaband h2 {
    color: #fff;
    font-size: clamp(28px, 3.6vw, 44px);
    max-width: 720px;
}

.ctaband p {
    color: rgba(255, 255, 255, .9);
    margin-top: 14px;
    max-width: 560px;
}

.ctaband .btn--primary {
    background: #fff;
    color: var(--red);
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .5);
}

.ctaband .btn--primary:hover {
    background: #fff;
    color: var(--red-dark);
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact .grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact__info {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.cinfo {
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: border-color .3s, transform .3s;
}

.cinfo:hover {
    border-color: var(--red);
    transform: translateX(4px);
}

.cinfo__icon {
    flex: none;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-s);
    background: var(--red-soft);
    color: var(--red);
    display: grid;
    place-items: center;
}

.cinfo__icon svg {
    width: 24px;
    height: 24px;
}

.cinfo h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.cinfo p {
    font-size: 15px;
    color: var(--slate);
    margin: 0;
    line-height: 1.5;
}

.cinfo a {
    color: var(--slate);
    transition: color .2s;
}

.cinfo a:hover {
    color: var(--red);
}

.form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    padding: clamp(28px, 4vw, 44px);
    box-shadow: var(--shadow-m);
}

.form h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.form>p {
    color: var(--slate);
    font-size: 15px;
    margin-bottom: 26px;
}

.fgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-2);
}

.field label .req {
    color: var(--red);
}

.field input,
.field textarea,
.field select {
    padding: 13px 15px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-s);
    background: var(--bg-alt);
    color: var(--ink);
    transition: border-color .2s, background .2s, box-shadow .2s;
    font-size: 15px;
    width: 100%;
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 39, 13, .1);
}

.form__note {
    font-size: 13px;
    color: var(--muted);
}

.form__note svg {
    width: 16px;
    height: 16px;
    color: var(--red);
    flex: none;
}

.form__success {
    display: none;
    padding: 16px 18px;
    border-radius: var(--radius-s);
    background: var(--red-soft);
    color: var(--red-dark);
    font-weight: 600;
    font-size: 15px;
    margin-top: 18px;
}

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

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: var(--bg-dark);
    color: #A9ACB6;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer__brand img {
    height: 54px;
    margin-bottom: 22px;
}

.footer__brand p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 320px;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer__social a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-s);
    border: 1px solid rgba(255, 255, 255, .14);
    display: grid;
    place-items: center;
    color: #C9CBD2;
    transition: all .25s var(--ease);
}

.footer__social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-3px);
}

.footer__social svg {
    width: 18px;
    height: 18px;
}

.footer__col h5 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer__col ul {
    display: grid;
    gap: 12px;
}

.footer__col a,
.footer__col li {
    font-size: 14.5px;
    transition: color .2s;
}

.footer__col a:hover {
    color: #fff;
}

.footer__col .fcontact {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14.5px;
    line-height: 1.6;
}

.footer__col .fcontact svg {
    width: 17px;
    height: 17px;
    color: var(--red);
    flex: none;
    margin-top: 3px;
}

.footer__bottom {
    gap: 14px;
    padding: 28px 0;
    font-size: 13.5px;
}

.footer__bottom a:hover {
    color: #fff;
}

.footer__bottom .links {
    gap: 22px;
}

/* ============================================================
   ANIMATIONS / REVEAL
   ============================================================ */

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

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal.d1 {
    transition-delay: .08s;
}

.reveal.d2 {
    transition-delay: .16s;
}

.reveal.d3 {
    transition-delay: .24s;
}

.reveal.d4 {
    transition-delay: .32s;
}

/* back to top */

.totop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-m);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all .3s var(--ease);
    z-index: 90;
}

.totop.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.totop:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}

.totop svg {
    width: 22px;
    height: 22px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 980px) {
    .topbar {
        display: none;
    }
    :root {
        --header-h: 72px;
    }
    .nav,
    .header__cta .btn--text {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .header__cta .btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    .nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        flex-direction: column;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 12px 24px 24px;
        box-shadow: var(--shadow-m);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s var(--ease), transform .3s var(--ease);
        align-items: stretch;
    }
    .nav.open {
        display: flex;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
    .nav a {
        padding: 15px 8px;
        border-bottom: 1px solid var(--line-2);
        font-size: 16px;
    }
    .nav a::after {
        display: none;
    }
    .header__enquire-btn {
        display: none;
    }
    .nav__enquire-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
        width: 100%;
        border-bottom: none;
        padding: 14px 22px;
    }
    .overview .grid,
    .mfg .grid,
    .quality .grid,
    .contact .grid {
        grid-template-columns: 1fr;
    }
    .overview__media {
        max-width: 560px;
    }
    .mfg__media {
        max-width: 520px;
        order: -1;
    }
    .mfg__phasecard {
        position: static;
        width: auto;
        margin-top: 20px;
        box-shadow: var(--shadow-s);
    }
    .hero__stats .container {
        grid-template-columns: 1fr 1fr;
    }
    .hero__stats .hstat:nth-child(3) {
        border-left: none;
    }
    .hero__stats .hstat:nth-child(odd) {
        border-left: none;
    }
    .qstats {
        margin-top: 30px;
    }
}

@media (max-width: 620px) {
    .brand img {
        height: 34px;
    }
    .brand__logo1 {
        height: 30px;
        padding-right: 8px;
    }
    body {
        font-size: 16px;
    }
    .container {
        padding-inline: 18px;
    }
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero__actions .btn {
        width: 100%;
    }
    .hero__stats .container {
        grid-template-columns: 1fr;
    }
    .hero__stats .hstat {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .12);
    }
    .hero__stats .hstat:first-child {
        border-top: none;
    }
    .fgrid {
        grid-template-columns: 1fr;
    }
    .qstats {
        grid-template-columns: 1fr;
    }
    .footer__top {
        grid-template-columns: 1fr;
    }
    .ctaband .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .overview__media .badge {
        left: 0;
        right: 0;
        max-width: none;
        position: static;
        margin-top: 18px;
    }
    .trust .container {
        justify-content: center;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
    .hero__bg img {
        animation: none;
        transform: none;
    }
}

/* ============================================================
   ENQUIRY MODAL  (Bootstrap 5 override + LP design tokens)
   ============================================================ */

.em-modal {
    border: none;
    border-radius: var(--radius-l);
    overflow: hidden;
    box-shadow: var(--shadow-l);
    font-family: var(--font-sans);
}

/* Header */
.em-header {
    background: var(--ink);
    padding: 32px 36px 28px;
    border-bottom: none;
    align-items: flex-start;
    position: relative;
}

.em-header__brand {
    flex: 1;
}

.em-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #FF6B52;
    margin-bottom: 10px;
}

.em-eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: #FF6B52;
    display: inline-block;
}

.em-header .modal-title {
    flex: 1;
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: 8px;
}

.em-sub {
    font-size: 14.5px;
    color: #A9ACB6;
    margin: 0;
    max-width: 520px;
    line-height: 1.5;
}

.em-close {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #A9ACB6;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-s);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .2s, color .2s;
    flex-shrink: 0;
    margin-left: 16px;
    margin-top: 2px;
    padding: 0;
}

.em-close:hover {
    background: rgba(212, 39, 13, .3);
    border-color: var(--red);
    color: #fff;
}

.em-close svg {
    width: 17px;
    height: 17px;
}

/* Body */
.em-body {
    background: var(--bg-alt);
    padding: 32px 36px;
}

/* Labels */
.em-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
    letter-spacing: .01em;
    margin-bottom: 7px;
    display: block;
}

.em-req {
    color: var(--red);
}

/* Inputs */
.em-input {
    padding: 12px 15px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-s);
    background: #fff;
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 15px;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}

.em-input:focus {
    outline: none;
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 39, 13, .1);
}

.em-input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, .1);
}

.em-textarea {
    min-height: 110px;
    resize: vertical;
}

/* Select arrow fix */
select.em-input {
    appearance: auto;
    -webkit-appearance: auto;
}

/* Submit button */
.em-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: var(--radius-s);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: .01em;
    background: var(--red);
    color: #fff;
    border: none;
    box-shadow: 0 10px 24px -10px rgba(212, 39, 13, .65);
    transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
    cursor: pointer;
}

.em-submit svg {
    width: 18px;
    height: 18px;
    transition: transform .3s var(--ease);
}

.em-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(212, 39, 13, .75);
}

.em-submit:hover svg {
    transform: translateX(4px);
}

/* Note */
.em-note {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 0 !important;
}

.em-note svg {
    width: 15px;
    height: 15px;
    color: var(--red);
    flex-shrink: 0;
}

/* Success banner */
.em-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 15px 18px;
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    border-radius: var(--radius-s);
    color: #065f46;
    font-weight: 600;
    font-size: 15px;
    margin-top: 16px;
}

.em-success.show {
    display: flex;
}

.em-success svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #059669;
}

/* Footer */
.em-footer {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 18px 36px;
    justify-content: flex-start;
}

.em-footer__contacts {
    gap: 20px;
}

.em-contact-link {
    font-size: 13.5px;
    color: var(--slate);
    text-decoration: none;
    transition: color .2s;
}

.em-contact-link:hover {
    color: var(--red);
}

.em-contact-link svg {
    width: 16px;
    height: 16px;
    color: var(--red);
    flex-shrink: 0;
}

.em-sep {
    width: 1px;
    height: 16px;
    background: var(--line);
}

/* ---- Bootstrap validation state overrides ---- */

/* invalid border + shadow — modal (.em-input) + contact form (.field input/select/textarea) */
.was-validated .em-input:invalid,
.em-input.is-invalid,
.was-validated .field input:invalid,
.was-validated .field select:invalid,
.was-validated .field textarea:invalid {
    border-color: #e53e3e !important;
    background-image: none !important;
    box-shadow: 0 0 0 4px rgba(229, 62, 62, .12) !important;
}

/* valid border + shadow */
.was-validated .em-input:valid,
.em-input.is-valid,
.was-validated .field input:valid,
.was-validated .field select:valid,
.was-validated .field textarea:valid {
    border-color: #38a169 !important;
    background-image: none !important;
    box-shadow: 0 0 0 4px rgba(56, 161, 105, .1) !important;
}

/* invalid feedback text */
.was-validated .em-input:invalid ~ .invalid-feedback,
.em-input.is-invalid ~ .invalid-feedback,
.was-validated .field input:invalid ~ .invalid-feedback,
.was-validated .field select:invalid ~ .invalid-feedback,
.was-validated .field textarea:invalid ~ .invalid-feedback {
    display: flex !important;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: #c53030;
    margin-top: 5px;
}

.invalid-feedback::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23c53030' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 8v4M12 16h.01'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* valid feedback text */
.was-validated .em-input:valid ~ .valid-feedback,
.em-input.is-valid ~ .valid-feedback,
.was-validated .field input:valid ~ .valid-feedback,
.was-validated .field select:valid ~ .valid-feedback,
.was-validated .field textarea:valid ~ .valid-feedback {
    display: flex !important;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: #276749;
    margin-top: 5px;
}

.valid-feedback::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23276749' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m8 12 3 3 5-6'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* keep focus ring on invalid fields */
.was-validated .em-input:invalid:focus,
.was-validated .field input:invalid:focus,
.was-validated .field select:invalid:focus,
.was-validated .field textarea:invalid:focus {
    border-color: #e53e3e !important;
    box-shadow: 0 0 0 4px rgba(229, 62, 62, .18) !important;
}

/* Bootstrap modal backdrop tweak */
.modal-backdrop {
    backdrop-filter: blur(2px);
}

/* Responsive adjustments */
@media (max-width: 620px) {
    .em-header,
    .em-body,
    .em-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    .em-header {
        padding-top: 24px;
        padding-bottom: 20px;
    }
    .em-body {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}
/* ── Form submit loader overlay ─────────────────────────────── */
#formLoader {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
#formLoader.active {
    display: flex;
}
.fl-spinner {
    width: 52px;
    height: 52px;
    border: 4px solid #f0d8d5;
    border-top-color: #D4270D;
    border-radius: 50%;
    animation: fl-spin .75s linear infinite;
}
@keyframes fl-spin {
    to { transform: rotate(360deg); }
}
.fl-text {
    font-size: 15px;
    font-weight: 500;
    color: #4A4D55;
    letter-spacing: .01em;
}
