/* =============================================
   BHUMRA STEEL INDUSTRIES - Main Stylesheet
   ============================================= */

/* ---- CSS Variables ---- */
:root {
    --primary: #c8181a;
    --primary-dark: #a51315;
    --primary-light: #e02527;
    --navy: #002470;
    --navy-mid: #083080;
    --navy-light: #124096;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-400: #adb5bd;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --text: #2d2d2d;
    --text-light: #6c757d;
    --border: #e0e0e0;

    --font-main: 'Inter', sans-serif;
    --font-head: 'Poppins', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .07);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, .10);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, .15);
    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 18px;
    --transition: .3s ease;
    --container: 1200px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Prevent Swiper transitions from creating page-level horizontal scroll */
.swiper {
    overflow: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

/* ---- Container ---- */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* ---- Section Helpers ---- */
.section {
    padding: 80px 0;
}

.section--gray {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: .6rem;
    justify-content: center;
    margin-bottom: .85rem;
}

.eyebrow-bar {
    display: inline-block;
    width: 28px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-eyebrow>span:last-child {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    max-width: 600px;
    margin: .9rem auto 0;
    color: var(--text-light);
    font-size: 1rem;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .92rem;
    padding: .7rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(232, 69, 10, .35);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .7);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn--white:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn--lg {
    padding: .85rem 2.1rem;
    font-size: .98rem;
}

.btn--sm {
    padding: .42rem 1.1rem;
    font-size: .82rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.text-accent {
    color: #f39c12;
}

/* ==============================================
   HEADER - ROW 1: BRAND BAR
   Layout: [logo-box | name+tagline]  ......  [icon email] [icon phone]
   ============================================== */
.header-brand {
    padding: 0;
}

.header-brand__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 90px;
}

/* ---- Logo + name block (left side) ---- */
.header-brand__logo {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-shrink: 0;
    text-decoration: none;
}

/* Square logo box with accent border on the left */
.header-brand__logo-img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    transition: border-color var(--transition);
}


.header-brand__logo-img img {
    width: 100%;
    height: 100%;
    max-width: 130px;
    object-fit: contain;
    padding: 6px;
    background-color: white;
}

.header-brand__logo-img img+* {
    display: none;
}

.header-brand__text {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.header-brand__name {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 800;
    color:black;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    white-space: nowrap;
}

/* Accent underline on brand name */
.header-brand__name::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    margin-top: .3rem;
}

.header-brand__tagline {
    font-family: var(--font-main);
    font-size: .7rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.2;
    margin-top: .1rem;
}

/* ---- Contact items (right side) ---- */
.header-brand__contact {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}

.header-brand__contact-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    cursor: pointer;
}

/* Filled icon box instead of just a circle */
.header-brand__contact-icon {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1rem;
    transition: all var(--transition);
}

.header-brand__contact-item:hover .header-brand__contact-icon {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(200,24,26,.3);
}

.header-brand__contact-text {
    display: flex;
    flex-direction: column;
    gap: .12rem;
}

.header-brand__contact-label {
    font-family: var(--font-main);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    line-height: 1;
}

.header-brand__contact-item a {
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    color: black;
    line-height: 1.2;
    white-space: nowrap;
    transition: color var(--transition);
}

.header-brand__contact-item a:hover {
    color: var(--primary);
}

/* Thin vertical divider between email & phone */
.header-brand__divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .12);
    flex-shrink: 0;
}

/* ==============================================
   HEADER - ROW 2: NAV BAR
   Red primary bar, white links, dark associate block
   ============================================== */
.navbar {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(200,24,26,.2);
}



.navbar__inner {
    display: flex;
    align-items: stretch;
    min-height: 52px;
}

/* ---- Nav links ---- */
.navbar__menu {
    display: flex;
    align-items: stretch;
    margin: 0;
    padding: 0;
    flex: 1;
}

.navbar__menu>li {
    position: relative;
    display: flex;
    align-items: stretch;
}

.nav-link {
    font-family: var(--font-head);
    font-size: .8rem;
    font-weight: 700;
    color: rgba(255,255,255,.92);
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    gap: .32rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    transition: all var(--transition);
    cursor: pointer;
}

/* Animated underline indicator */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--white);
    border-radius: 2px 2px 0 0;
    transition: width var(--transition);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: calc(100% - 1.5rem);
}

.nav-link.active,
.nav-link:hover {
    color: var(--white);
    background: rgba(0,0,0,.18);
}

.nav-link i {
    font-size: .55rem;
    transition: transform var(--transition);
}

.dropdown:hover>.nav-link>i {
    transform: rotate(180deg);
}

/* ---- Dropdown ---- */
.dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-top: 3px solid var(--primary);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .15);
    border-radius: 0 0 6px 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 200;
}

.dropdown:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__menu li a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1.3rem;
    font-size: .83rem;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid var(--gray-100);
    text-transform: none;
    transition: all .22s ease;
}

.dropdown__menu li a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity .2s ease;
}

.dropdown__menu li:last-child a {
    border-bottom: none;
}

.dropdown__menu li a:hover {
    color: var(--primary);
    background: var(--gray-50);
    padding-left: 1.6rem;
}

.dropdown__menu li a:hover::before {
    opacity: 1;
}

/* ---- Associate Concern block (right side, dark bg) ---- */
.navbar__associate {
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1.6rem;
    flex-shrink: 0;
    min-width: 230px;
    text-align: left;
    position: relative;
}

/* Angled left edge on associate block */
.navbar__associate::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 0;
    bottom: 0;
    width: 0;
    border-right: 16px solid var(--navy);
    border-top: 52px solid transparent;
}

.navbar__associate-label {
    font-family: var(--font-main);
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: .25rem;
}

.navbar__associate-name {
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .5px;
    line-height: 1.2;
    white-space: nowrap;
}

/* ---- Hamburger (mobile only) ---- */
/* Mobile logo - hidden on desktop, shown in navbar on mobile */
.navbar__mobile-logo {
    display: none;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar__mobile-logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}


.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem .8rem;
    align-self: center;
    margin-left: auto;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar__toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.open span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==============================================
   HERO SECTION
   ============================================== */

/* Outer section */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 142px);
    min-height: 580px;
    overflow: hidden;
}

/* Swiper fills the section */
.hero-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Each slide: bg image + flex centre */
.hero__slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* ---- Per-slide background images ---- */
.hero__slide--1 { background-image: url('../images/about.jpg'); }
.hero__slide--2 { background-image: url('../images/products/square-bar.png'); }

/* ---- Accent text colour ---- */
.text-accent { color: var(--primary); }

.hero__overlay {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .48);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    color: var(--white);
    width: 100%;
}

.hero__badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .32rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.hero__content h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero__content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .85);
    max-width: 560px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---- Swiper pagination (dots) ---- */
.hero-swiper__pagination {
    bottom: 1.75rem !important;
}

.hero-swiper__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, .45);
    opacity: 1;
    transition: all var(--transition);
}

.hero-swiper__pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* ---- Swiper nav arrows ---- */
.hero-swiper__prev,
.hero-swiper__next {
    color: var(--white) !important;
    width: 46px !important;
    height: 46px !important;
    background: rgba(0, 0, 0, .35);
    border-radius: 50%;
    transition: background var(--transition);
}

.hero-swiper__prev:hover,
.hero-swiper__next:hover {
    background: var(--primary);
}

.hero-swiper__prev::after,
.hero-swiper__next::after {
    font-size: 1rem !important;
    font-weight: 700;
}

/* ==============================================
   VISION / MISSION / QUALITY SECTION
   ============================================== */
.vmq__header {
    text-align: center;
    margin-bottom: 3rem;
}

.vmq__title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-top: .5rem;
    line-height: 1.25;
}

.vmq__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.vmq-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.vmq-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* Image area with icon badge overlapping bottom edge */
.vmq-card__img {
    position: relative;
    height: 220px;
    overflow: visible;
}

.vmq-card__img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.vmq-card:hover .vmq-card__img img {
    transform: scale(1.04);
}

/* Primary-coloured icon box that sits on the bottom edge of the image */
.vmq-card__icon-wrap {
    position: absolute;
    bottom: -22px;
    left: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(200,24,26,.35);
    z-index: 2;
    transition: background var(--transition);
}

.vmq-card:hover .vmq-card__icon-wrap {
    background: var(--navy);
}

.vmq-card__icon-wrap i {
    color: var(--white);
    font-size: 1.1rem;
}

/* Body */
.vmq-card__body {
    padding: 2.5rem 1.6rem 1.8rem;
    border-top: none;
}

.vmq-card__body h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .65rem;
}

.vmq-card__body p {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

/* "READ MORE --" link */
.vmq-card__link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary);
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    width: 100%;
    transition: gap var(--transition), color var(--transition);
}

/* The dash line after READ MORE */
.vmq-card__link span {
    display: inline-block;
    flex: 1;
    height: 1px;
    background: var(--primary);
    opacity: .4;
    transition: opacity var(--transition);
}

.vmq-card__link:hover {
    color: var(--navy);
    gap: 1rem;
}

.vmq-card__link:hover span {
    opacity: .7;
}

/* ==============================================
   WELCOME SECTION (Homepage intro)
   ============================================== */
.welcome__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.welcome__img-wrap {
    position: relative;
}

.welcome__img-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.welcome__img-badge {
    position: absolute;
    bottom: -1.2rem;
    right: -1.2rem;
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.welcome__img-badge i {
    font-size: 2rem;
    color: var(--white);
}

/* Label */
.welcome__label {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .9rem;
}

.label-bar {
    display: inline-block;
    width: 28px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.welcome__label span:last-child {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.welcome__content h2 {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1.1rem;
}

.welcome__content h2 span {
    color: var(--primary);
}

.welcome__content p {
    color: var(--text-light);
    font-size: .95rem;
    margin-bottom: .9rem;
    line-height: 1.75;
}

.welcome__checklist {
    margin: 1.4rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.welcome__checklist li {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .92rem;
    font-weight: 500;
    color: var(--gray-800);
}

.welcome__checklist li i {
    color: var(--primary);
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* ==============================================
   HOMEPAGE PRODUCTS GRID
   ============================================== */
.products-home__header {
    margin-bottom: 2.5rem;
}

.products-home__header .section-eyebrow {
    justify-content: flex-start;
}

.products-home__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    width: 100%;
}

.phome-card {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
}

.phome-card__img {
    width: 100%;
    height: 100%;
    position: relative;
}

.phome-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    filter: grayscale(30%);
}

.phome-card:hover .phome-card__img img {
    transform: scale(1.06);
    filter: grayscale(0);
}


.phome-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 51%) 40%, rgba(0, 0, 0, .2) 100%);
    transition: background var(--transition);
}

.phome-card:hover .phome-card__overlay {
    background: linear-gradient(to top, rgb(200 24 26 / 56%) 35%, rgba(0, 0, 0, .4) 100%);
}

.phome-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem;
}

.phome-card__body h3 {
    font-family: var(--font-head);
    font-size: clamp(1.05rem, 4vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: .6rem;
    line-height: 1.3;
}

.phome-card__link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 1px;
    transition: gap var(--transition), color var(--transition);
}

.phome-card:hover .phome-card__link {
    color: var(--white);
    border-color: var(--white);
    gap: .8rem;
}

/* ==============================================
   CTA STRIP
   ============================================== */
.cta-strip {
    background: var(--navy);
    padding: 3rem 0;
}

.cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-strip__text h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .35rem;
}

.cta-strip__text p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .82);
}

/* ==============================================
   WHY US (Homepage)
   ============================================== */
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--primary);
}

.why-card__icon {
    width: 52px;
    height: 52px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    transition: background var(--transition);
}

.why-card:hover .why-card__icon {
    background: var(--primary);
}

.why-card__icon i {
    font-size: 1.35rem;
    color: var(--white);
}

.why-card__num {
    position: absolute;
    top: .8rem;
    right: 1rem;
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(26, 35, 64, .05);
    line-height: 1;
}

.why-card h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--navy);
}

.why-card p {
    font-size: .87rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==============================================
   PAGE BANNER (Inner pages)
   ============================================== */
.page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 0 60px;
    color: var(--white);
}

.page-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(0, 36, 112, .92) 50%, rgba(200, 24, 26, .5) 100%);
}

.page-banner__content {
    position: relative;
    z-index: 2;
}

.page-banner__content h1 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, .7);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span i {
    font-size: .6rem;
}

/* ==============================================
   PLANT INFRASTRUCTURE GALLERY
   ============================================== */
.plant-gallery-section {
    background: var(--white);
}

.plant-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.plant-gallery__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.plant-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.plant-gallery__item:hover img {
    transform: scale(1.06);
}

.plant-gallery__item:focus-within {
    outline: 3px solid rgba(200, 24, 26, .35);
    outline-offset: 3px;
}

.plant-gallery__item a {
    display: block;
    height: 100%;
}

.plant-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 20, 65, .92);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.plant-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.plant-lightbox__image {
    width: min(100%, 1100px);
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.plant-lightbox__close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    font-size: 1.2rem;
    cursor: pointer;
}

.plant-lightbox__nav {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    font-size: 1.1rem;
    cursor: pointer;
    transform: translateY(-50%);
}

.plant-lightbox__nav:hover,
.plant-lightbox__close:hover {
    background: var(--primary);
    color: var(--white);
}

.plant-lightbox__nav--prev {
    left: 1.5rem;
}

.plant-lightbox__nav--next {
    right: 1.5rem;
}

/* ==============================================
   ABOUT PAGE
   ============================================== */
.about-page__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-page__img-wrap {
    position: relative;
}

.about-page__img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.about-page__exp-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 1.4rem 1.8rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.exp-num {
    display: block;
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.exp-label {
    font-size: .78rem;
    opacity: .9;
    line-height: 1.4;
}

.about-page__content h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.about-page__content h2 span {
    color: var(--primary);
}

.about-page__content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: .95rem;
    line-height: 1.8;
}

.about-page__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    margin: 1.5rem 0 2rem;
}

.about-feat {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--gray-800);
}

.about-feat i {
    color: var(--primary);
    flex-shrink: 0;
}

/* ==============================================
   PILLARS (Vision / Mission / Quality)
   ============================================== */
.pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--border);
    transition: all var(--transition);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--primary);
}

.pillar-card--accent {
    border-top-color: var(--primary);
}

.pillar-card__icon {
    width: 70px;
    height: 70px;
    background: rgba(232, 69, 10, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pillar-card__icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.pillar-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .75rem;
    color: var(--navy);
}

.pillar-card p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ==============================================
/* ==============================================
   LEADERSHIP TEAM
   ============================================== */
.leadership__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Portrait card - image IS the card */
.leader-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    aspect-ratio: 3 / 4;   /* tall portrait */
    background: var(--gray-200);
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* Image fills the entire card */
.leader-card__img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.leader-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .55s ease;
}

.leader-card:hover .leader-card__img-wrap img {
    transform: scale(1.05);
}

/* Gradient overlay - always visible at bottom, strengthens on hover */
.leader-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .82) 0%,
        rgba(0, 0, 0, .35) 45%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.4rem 1.2rem;
    transition: background var(--transition);
}

/* Badge (designation) */
.leader-card__badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: .22rem .75rem;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: .5rem;
    align-self: flex-start;
}

.leader-card__badge--founder {
    background: var(--navy);
    color: var(--white);
}

.leader-card__badge--former {
    background: var(--primary);
    color: var(--white);
}

.leader-card__badge--current {
    background: #1e8449;
    color: var(--white);
}

/* Name */
.leader-card__overlay h3 {
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin: 0;
}

/* ==============================================
   PRODUCTS PAGE (Listing)
   ============================================== */
.products-page__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.ppage-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition);
}

.ppage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.ppage-card__img {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--gray-200);
}

.ppage-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.ppage-card:hover .ppage-card__img img {
    transform: scale(1.05);
}

.ppage-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 49, 148, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.ppage-card:hover .ppage-card__overlay {
    opacity: 1;
}

.ppage-card__body {
    padding: 1.75rem;
}

.ppage-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(232, 69, 10, .1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .9rem;
}

.ppage-card__icon i {
    color: var(--primary);
    font-size: 1.1rem;
}

.ppage-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .55rem;
    color: var(--navy);
}

.ppage-card p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

.ppage-card__link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .83rem;
    font-weight: 700;
    color: var(--primary);
    transition: gap var(--transition);
}

.ppage-card__link:hover {
    gap: .7rem;
}

/* Materials Grid */
.materials__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.material-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary);
    transition: all var(--transition);
}

.material-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.material-card__abbr {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: .6rem;
    line-height: 1;
}

.material-card h4 {
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
}

.material-card p {
    font-size: .83rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==============================================
   INDIVIDUAL PRODUCT PAGE
   ============================================== */
.product-detail__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-detail__main-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 380px;
}

.product-detail__main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.product-detail__main-img:hover img {
    transform: scale(1.03);
}

.product-detail__thumbs {
    display: flex;
    gap: .75rem;
    margin-top: .9rem;
}

.product-detail__thumbs .thumb {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--transition);
    flex-shrink: 0;
}

.product-detail__thumbs .thumb:hover,
.product-detail__thumbs .thumb.active {
    border-color: var(--primary);
}

.product-detail__info h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-detail__intro {
    color: var(--text-light);
    font-size: .97rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-detail__highlights {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.pd-highlight {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-800);
}

.pd-highlight i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Spec table */
.spec-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .91rem;
}

.spec-table thead tr {
    background: var(--navy);
    color: var(--white);
}

.spec-table thead th {
    padding: .9rem 1.25rem;
    text-align: left;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: .3px;
}

.spec-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: background var(--transition);
}

.spec-table tbody tr:last-child {
    border-bottom: none;
}

.spec-table tbody tr:hover {
    background: var(--gray-50);
}

.spec-table tbody td {
    padding: .8rem 1.25rem;
    color: var(--text);
}

.spec-table tbody td:first-child {
    font-weight: 600;
    color: var(--navy);
    width: 35%;
}

/* Applications grid */
.applications__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.app-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.75rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border);
    transition: all var(--transition);
}

.app-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.app-card i {
    font-size: 1.8rem;
    color: var(--primary);
    display: block;
    margin-bottom: .65rem;
    transition: transform var(--transition);
}

.app-card:hover i {
    transform: scale(1.2);
}

.app-card span {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.3;
}

/* Profile cards (Special Shaped) */
.profiles__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.profile-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--primary);
}

.profile-card__shape {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-card__shape--halfround {
    background: var(--primary);
    clip-path: ellipse(50% 50% at 50% 100%);
    border-radius: 50% 50% 0 0;
}

.profile-card__shape--dsize {
    background: var(--navy);
    clip-path: path('M 0 40 A 40 40 0 0 1 80 40 L 0 40');
    border-radius: 0 40px 40px 0;
}

.profile-card__shape--triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--primary);
    background: none;
}

.profile-card__shape--custom {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border: 2px dashed var(--primary);
}

.profile-card__shape--custom i {
    font-size: 2rem;
    color: var(--primary);
}

.profile-card h4 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
}

.profile-card p {
    font-size: .85rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* Related products */
.related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-card {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform .4s ease;
}

.related-card:hover img {
    transform: scale(1.05);
}

.related-card__body {
    background: var(--white);
    padding: .9rem 1.1rem;
    border-top: 3px solid var(--primary);
}

.related-card__body h4 {
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy);
}

/* ==============================================
   CONTACT PAGE
   ============================================== */
.contact-page__inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.contact-info-card {
    display: flex;
    gap: 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.4rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary);
    transition: box-shadow var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-info-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(232, 69, 10, .1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card__icon i {
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-info-card h4 {
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: .3rem;
    color: var(--navy);
}

.contact-info-card p,
.contact-info-card a {
    font-size: .86rem;
    color: var(--text-light);
    display: block;
    line-height: 1.6;
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-page__social-box {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.4rem;
    box-shadow: var(--shadow-sm);
}

.contact-page__social-box h4 {
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .85rem;
}

.contact-page__social {
    display: flex;
    gap: .65rem;
}

.contact-page__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: background var(--transition);
}

.contact-page__social a:hover {
    background: var(--primary);
}

.contact-page__form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

/* Form */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: .83rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: .9rem;
    color: var(--text);
    background: var(--gray-50);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 69, 10, .1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-note {
    text-align: center;
    font-size: .77rem;
    color: var(--text-light);
    margin-top: .75rem;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
    background: #0f1422;
    color: rgba(255, 255, 255, .7);
}

.footer__top {
    padding: 60px 0 48px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1fr 1.3fr;
    gap: 3rem;
}

.footer__col h4 {
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.1rem;
    padding-bottom: .55rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer__col ul li {
    margin-bottom: .55rem;
}

.footer__col ul li a {
    font-size: .86rem;
    color: rgba(255, 255, 255, .6);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.footer__col ul li a:hover {
    color: var(--primary);
    padding-left: .35rem;
}

/* About col */
.footer__col--about>p {
    font-size: .86rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 1.2rem;
}

.footer__know-more {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 700;
    padding: .4rem 1.2rem;
    border-radius: var(--radius-sm);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    transition: background var(--transition);
}

.footer__know-more:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.footer__follow {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.footer__follow span {
    font-size: .82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer__social {
    display: flex;
    gap: .5rem;
}

.footer__social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .65);
    font-size: .78rem;
    transition: all var(--transition);
}

.footer__social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Contact list */
.footer__contact-list li {
    display: flex;
    gap: .75rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: .85rem;
    line-height: 1.55;
}

.footer__contact-list i {
    color: var(--primary);
    margin-top: .15rem;
    flex-shrink: 0;
}

.footer__contact-list a {
    color: rgba(255, 255, 255, .6);
}

.footer__contact-list a:hover {
    color: var(--primary);
}

/* Footer Bottom */
.footer__bottom {
    background: rgba(0, 0, 0, .3);
    padding: 1.1rem 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}

.footer__bottom-inner p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

/* ==============================================
   FLOATING ACTION BUTTONS (Call + WhatsApp)
   ============================================== */
.float-group {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: center;
}

.float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .25);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .32);
}

/* Call button */
.float-btn--call {
    background: var(--navy-light);
    box-shadow: 0 4px 18px rgba(232, 69, 10, .45);
}

.float-btn--call:hover {
    background: var(--navy);
}

/* WhatsApp button */
.float-btn--whatsapp {
    background: #25D366;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
    font-size: 1.9rem;
}

.float-btn--whatsapp:hover {
    background: #1ebe5d;
}


/* ==============================================
   PRODUCT DETAIL PAGE – SIDEBAR LAYOUT
   ============================================== */

/* Outer two-column grid */
.pd-layout__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* ---- SIDEBAR ---- */
.pd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 70px;
}

.pd-sidebar__box {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.pd-sidebar__title {
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--white);
    background: var(--navy);
    padding: .9rem 1.2rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.pd-sidebar__title i {
    font-size: .9rem;
    color: rgba(255,255,255,.7);
}

/* Product nav list */
.pd-sidebar__nav {
    padding: .4rem 0;
}

.pd-sidebar__nav li a {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .65rem 1.2rem;
    font-size: .84rem;
    font-weight: 600;
    color: var(--gray-800);
    border-left: 3px solid transparent;
    transition: all var(--transition);
}

.pd-sidebar__nav li a i {
    font-size: .6rem;
    color: var(--gray-400);
    transition: color var(--transition);
}

.pd-sidebar__nav li a:hover,
.pd-sidebar__nav li.active a {
    color: var(--primary);
    border-left-color: var(--primary);
    background: rgba(200,24,26,.04);
    padding-left: 1.5rem;
}

.pd-sidebar__nav li a:hover i,
.pd-sidebar__nav li.active a i {
    color: var(--primary);
}

.pd-sidebar__nav li + li {
    border-top: 1px solid var(--gray-100);
}

/* Contact sidebar body */
.pd-sidebar__contact-body {
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.pd-sidebar__contact-body p {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .82rem;
    color: var(--text-light);
}

.pd-sidebar__contact-body i {
    color: var(--primary);
    font-size: .9rem;
    flex-shrink: 0;
}


/* ---- MAIN CONTENT ---- */
.pd-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Single full-width image at top */
.pd-main__img-block {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.pd-main__img-block img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Main heading inside section */
.pd-main__heading {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    margin-top: .4rem;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.pd-main__section p {
    font-size: .92rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: .75rem;
}

.pd-main__checklist {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin: 1.25rem 0 1.5rem;
}

.pd-main__checklist li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .87rem;
    font-weight: 500;
    color: var(--gray-800);
}

.pd-main__checklist li i {
    color: var(--primary);
    font-size: .9rem;
    flex-shrink: 0;
}

/* Section blocks inside main */
.pd-main__section {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    padding: 1.75rem;
}

.pd-main__section-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.25rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

/* Grade tags */
.pd-grades {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.pd-grade-tag {
    background: var(--navy);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: .32rem .9rem;
    border-radius: 50px;
    transition: background var(--transition);
}

.pd-grade-tag:hover {
    background: var(--primary);
}

/* Applications grid */
.pd-applications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.pd-app-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: .75rem 1rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
    transition: all var(--transition);
}

.pd-app-item:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pd-app-item i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
    transition: color var(--transition);
}

.pd-app-item:hover i {
    color: var(--white);
}

/* Shapes / profiles grid (special bars page) */
.pd-profiles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.pd-profile-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.2rem .9rem;
    text-align: center;
    transition: all var(--transition);
}

.pd-profile-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.pd-profile-card h4 {
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .35rem;
}

.pd-profile-card p {
    font-size: .75rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Shape SVG-like CSS shapes */
.pd-profile-card__shape {
    width: 52px;
    height: 52px;
    margin: 0 auto .75rem;
    background: var(--navy);
    transition: background var(--transition);
}

.pd-profile-card:hover .pd-profile-card__shape {
    background: var(--primary);
}

.pd-profile-card__shape--halfround {
    border-radius: 52px 52px 0 0;
}

.pd-profile-card__shape--dshape {
    border-radius: 0 52px 52px 0;
    width: 40px;
    margin-left: auto;
    margin-right: auto;
}

.pd-profile-card__shape--triangle {
    width: 0;
    height: 0;
    background: transparent;
    border-left: 26px solid transparent;
    border-right: 26px solid transparent;
    border-bottom: 52px solid var(--navy);
}

.pd-profile-card:hover .pd-profile-card__shape--triangle {
    border-bottom-color: var(--primary);
}



.pd-profile-card:hover .pd-profile-card__shape--triangle {
    background: none;
}

.pd-profile-card__shape--octagonal {
    clip-path: polygon(30% 0%,70% 0%,100% 30%,100% 70%,70% 100%,30% 100%,0% 70%,0% 30%);
}

.pd-profile-card__shape--oval {
    border-radius: 50%;
    width: 64px;
    height: 40px;
}


/* ==============================================
   QUALITY PAGE
   ============================================== */

/* Overview two-column grid */
.q-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.q-intro-text h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 1rem;
    margin-top: .4rem;
}

.q-intro-text h2 span {
    color: var(--primary);
}

.q-intro-text p {
    font-size: .95rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: .9rem;
}

.q-intro-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: block;
}

.q-blockquote {
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
    padding: 1.1rem 1.5rem;
    background: var(--gray-50);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 1rem;
    font-style: italic;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.7;
}

.q-blockquote .fa-quote-left {
    color: var(--primary);
    margin-right: .5rem;
    font-size: .95rem;
}

/* ---- Inspection cards ---- */
.q-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.q-check-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.q-check-card--dark {
    background: var(--navy);
    border-color: var(--navy);
}

.q-check-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.q-check-card--dark .q-check-card__header {
    border-bottom-color: rgba(255,255,255,.1);
}

.q-check-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(200,24,26,.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.q-check-card--dark .q-check-card__icon {
    background: rgba(255,255,255,.1);
}

.q-check-card__icon i {
    font-size: 1.15rem;
    color: var(--primary);
}

.q-check-card__stage {
    display: block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .2rem;
}

.q-check-card__header h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.q-check-card--dark .q-check-card__header h3 {
    color: var(--white);
}

.q-check-card > p {
    font-size: .87rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

.q-check-card--dark > p {
    color: rgba(255,255,255,.6);
}

.q-check-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.q-check-list--two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem 1rem;
}

.q-check-list li {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .86rem;
    font-weight: 500;
    color: var(--gray-800);
}

.q-check-card--dark .q-check-list li {
    color: rgba(255,255,255,.82);
}

.q-check-list li i {
    color: var(--primary);
    font-size: .85rem;
    flex-shrink: 0;
}



/* ==============================================
   MOBILE SIDEBAR
   ============================================== */

/* Sidebar panel */
.mob-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #001d5e;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    transition: left .35s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}

.mob-sidebar.open {
    left: 0;
}

/* Dark overlay */
.mob-sidebar__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}

.mob-sidebar__overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Sidebar header */
.mob-sidebar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.2rem;
    background: rgba(0, 0, 0, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    flex-shrink: 0;
}

.mob-sidebar__logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}

.mob-sidebar__logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    background: var(--white);
    border-radius: 5px;
    padding: 3px;
    flex-shrink: 0;
}

.mob-sidebar__brand {
    display: block;
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: .8px;
    text-transform: uppercase;
    line-height: 1.2;
}

.mob-sidebar__sub {
    display: block;
    font-size: .65rem;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .5px;
    margin-top: .1rem;
}

.mob-sidebar__close {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: var(--white);
    font-size: .95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}

.mob-sidebar__close:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Nav list */
.mob-sidebar__nav {
    flex: 1;
    overflow-y: auto;
    padding: .6rem 0;
}

.mob-sidebar__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mob-sidebar__nav > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mob-sidebar__nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .9rem 1.4rem;
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .2s ease;
}

.mob-sidebar__nav > ul > li > a i {
    width: 18px;
    text-align: center;
    color: rgba(255, 255, 255, .45);
    font-size: .85rem;
    flex-shrink: 0;
    transition: color .2s ease;
}

.mob-sidebar__nav > ul > li > a:hover,
.mob-sidebar__nav > ul > li > a.mob-active {
    color: var(--white);
    background: rgba(249, 1, 1, .15);
    border-left: 3px solid var(--primary);
    padding-left: calc(1.4rem - 3px);
}

.mob-sidebar__nav > ul > li > a:hover i,
.mob-sidebar__nav > ul > li > a.mob-active i {
    color: var(--primary);
}

/* Accordion trigger */
.mob-sidebar__acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .82);
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .2s ease;
    border-left: 3px solid transparent;
}

.mob-sidebar__acc-trigger span {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.mob-sidebar__acc-trigger span i {
    width: 18px;
    text-align: center;
    color: rgba(255, 255, 255, .45);
    font-size: .85rem;
    flex-shrink: 0;
}

.mob-sidebar__acc-trigger:hover,
.mob-sidebar__acc-trigger.mob-active {
    color: var(--white);
    background: rgba(249, 1, 1, .15);
    border-left-color: var(--primary);
    padding-left: calc(1.4rem - 3px);
}

.mob-sidebar__acc-trigger:hover span i,
.mob-sidebar__acc-trigger.mob-active span i {
    color: var(--primary);
}

.mob-sidebar__acc-icon {
    font-size: .65rem;
    color: rgba(255, 255, 255, .4);
    transition: transform .3s ease;
    flex-shrink: 0;
}

.mob-sidebar__accordion.open .mob-sidebar__acc-icon {
    transform: rotate(180deg);
}

/* Accordion submenu */
.mob-sidebar__acc-menu {
    display: none;
    background: rgba(0, 0, 0, .2);
    border-left: 3px solid var(--primary);
    margin-left: 1.4rem;
    margin-right: 0;
    padding: .3rem 0;
}

.mob-sidebar__accordion.open .mob-sidebar__acc-menu {
    display: block;
}

.mob-sidebar__acc-menu li a {
    display: block;
    padding: .65rem 1.2rem;
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: all .2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.mob-sidebar__acc-menu li:last-child a {
    border-bottom: none;
}

.mob-sidebar__acc-menu li a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .06);
    padding-left: 1.6rem;
}

/* Footer contact */
.mob-sidebar__footer {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    padding: 1.1rem 1.4rem 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .2);
    flex-shrink: 0;
}

.mob-sidebar__footer a {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .2s ease;
}

.mob-sidebar__footer a i {
    color: var(--primary);
    font-size: .8rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.mob-sidebar__footer a:hover {
    color: var(--white);
}

/* Desktop: hide sidebar entirely */
@media (min-width: 901px) {
    .mob-sidebar,
    .mob-sidebar__overlay {
        display: none !important;
    }
}

/* ==============================================
   PAGE LOADER
   ============================================== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .55s ease, visibility .55s ease;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    padding: 2rem;
}

/* Logo */
.page-loader__logo {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: loader-pop .6s cubic-bezier(.34,1.56,.64,1) both;
}

.page-loader__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Brand text */
.page-loader__brand {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    animation: loader-fadein .5s .2s ease both;
}

.page-loader__brand-main {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: .5px;
}

.page-loader__brand-main span {
    color: var(--primary);
}

.page-loader__brand-sub {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}


/* Progress bar */
.page-loader__bar-wrap {
    width: 180px;
    height: 3px;
    background: #eee;
    border-radius: 2px;
    overflow: hidden;
    animation: loader-fadein .4s .35s ease both;
}

.page-loader__bar {
    height: 100%;
    width: 0%;
    background: var(--primary);
    border-radius: 2px;
    animation: loader-progress 1.9s .1s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes loader-pop {
    from { opacity: 0; transform: scale(.7); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes loader-fadein {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes loader-progress {
    0%   { width: 0%; }
    60%  { width: 75%; }
    100% { width: 100%; }
}
