/* ============================================================
   GLOBAL VARIABLES & BASE
   ============================================================ */
:root {
    --bg-primary: #433F40;
    --bg-dark: #2e2b2c;
    --bg-darker: #1e1b1c;
    --accent: #EC6825;
    --accent-hover: #d45a1a;
    --text-light: #f5f5f5;
    --text-muted: #c0babb;
    --nav-bg: #ffffff;
    --nav-text: #2b2829;
    --border-color: rgba(0, 0, 0, 0.08);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Syne', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    /* background-color: var(--bg-primary); */
    color: var(--text-light);
    margin: 0;
    padding: 0;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
    background-color: var(--bg-primary);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 8px 0;
}

.topbar-inner {
    min-height: 36px;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: var(--transition);
}

.topbar-link i {
    color: var(--accent);
    font-size: 13px;
    flex-shrink: 0;
}

.topbar-link:hover {
    color: var(--accent);
}

/* Two phone numbers side by side */
.topbar-phones {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-phones .phone-divider {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.12);
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================================
   MAIN NAVBAR
   ============================================================ */
.main-navbar {
    background-color: #000;
    border-bottom: 3px solid var(--accent);
    padding: 0;
    transition: var(--transition);
    z-index: 1030;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.main-navbar .container-xl {
    min-height: 72px;
    display: flex;
    align-items: center;
}

/* Scrolled state */
.main-navbar.scrolled {
    background-color: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Logo */
.nav-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

/* Nav Links */
.main-navbar .navbar-nav .nav-link {
    color: #fff;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14.5px;
    padding: 8px 14px;
    border-radius: 6px;
    letter-spacing: 0.2px;
    transition: var(--transition);
    position: relative;
}

.main-navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    border-radius: 2px;
}

.main-navbar .navbar-nav .nav-link:hover::after,
.main-navbar .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.main-navbar .navbar-nav .nav-link:hover,
.main-navbar .navbar-nav .nav-link.active {
    color: var(--accent);
    background-color: rgba(236, 104, 37, 0.06);
}

/* Dropdown toggle arrow - custom chevron */
.main-navbar .nav-item.dropdown > .nav-link.dropdown-toggle::before {
    display: none;
}

.main-navbar .nav-item.dropdown > .nav-link .nav-arrow {
    display: inline-block;
    margin-left: 4px;
    font-size: 11px;
    transition: transform 0.25s ease;
    vertical-align: middle;
}

.main-navbar .nav-item.dropdown:hover > .nav-link .nav-arrow,
.main-navbar .nav-item.dropdown > .nav-link[aria-expanded="true"] .nav-arrow {
    transform: rotate(180deg);
}

/* Hide Bootstrap's default caret */
.main-navbar .dropdown-toggle::after {
    display: none;
}

/* Dropdown menu - hover open on desktop */
.main-navbar .dropdown-menu {
    background-color: #ffffff;
    border: none;
    border-top: 3px solid var(--accent);
    border-radius: 0 0 10px 10px;
    margin-top: 0;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    min-width: 230px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
}

.main-navbar .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.main-navbar .dropdown-item {
    color: var(--nav-text);
    font-size: 13.5px;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-navbar .dropdown-item::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--accent);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.2s;
}

.main-navbar .dropdown-item:hover {
    background-color: var(--accent);
    color: #fff;
}

.main-navbar .dropdown-item:hover::before {
    background-color: #fff;
    opacity: 1;
}

/* Get a Quote Button */
.btn-quote {
    background-color: var(--accent);
    color: #fff;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 6px;
    border: 2px solid var(--accent);
    letter-spacing: 0.3px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-quote:hover {
    background-color: transparent;
    color: var(--accent);
}

/* Mobile Toggler */
.navbar-toggler {
    padding: 6px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
}

.toggler-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--nav-text);
    border-radius: 2px;
    transition: var(--transition);
}

.toggler-icon span:nth-child(1) { width: 100%; }
.toggler-icon span:nth-child(2) { width: 75%; }
.toggler-icon span:nth-child(3) { width: 50%; }

/* ============================================================
   MOBILE OFFCANVAS MENU
   ============================================================ */
.mobile-menu {
    background-color: var(--bg-darker);
    width: 300px !important;
    border-right: 2px solid var(--accent);
}

.mobile-menu .offcanvas-header {
    background-color: var(--bg-darker);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
}

/* Close button in offcanvas */
.btn-close-menu {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--text-light);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-close-menu:hover {
    background-color: var(--accent);
    color: #fff;
}

/* Contact strip in offcanvas */
.offcanvas-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.offcanvas-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12.5px;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.4;
}

.offcanvas-contact-item i {
    color: var(--accent);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.offcanvas-contact-item:hover {
    color: var(--accent);
}

/* Offcanvas nav links */
.offcanvas-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.offcanvas-nav .nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    background: none;
}

.offcanvas-nav .nav-link:hover,
.offcanvas-nav .nav-link.active {
    background-color: rgba(236, 104, 37, 0.12);
    color: var(--accent);
}

.offcanvas-nav .nav-link i {
    transition: transform 0.25s ease;
    font-size: 13px;
}

.offcanvas-nav .nav-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Submenu */
.offcanvas-submenu {
    list-style: none;
    padding: 4px 0 8px 16px;
    margin: 0;
}

.offcanvas-submenu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 6px;
    transition: var(--transition);
}

.offcanvas-submenu li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--accent);
    flex-shrink: 0;
}

.offcanvas-submenu li a:hover {
    color: var(--accent);
    background-color: rgba(236, 104, 37, 0.08);
}

/* Offcanvas body */
.mobile-menu .offcanvas-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Social + footer in offcanvas */
.offcanvas-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.offcanvas-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================================
   HERO PLACEHOLDER (temp)
   ============================================================ */
.hero-placeholder {
    min-height: 80vh;
    background-color: var(--bg-primary);
    color: var(--text-muted);
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-placeholder h1 {
    font-size: 2rem;
    color: var(--accent);
}

.hero-placeholder p {
    font-size: 1rem;
    color: var(--text-muted);
}
@media(max-width:700px){
    .nav-logo
    {
        height: 38px!important;
    }
    .offcanvas-nav .nav-link
    {
        font-size: 13px;
        padding: 10px 16px;
    }
    .offcanvas-submenu li a
    {
        font-size: 13px;
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 92vh;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}
 
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(30, 27, 28, 0.92) 0%,
        rgba(67, 63, 64, 0.75) 55%,
        rgba(67, 63, 64, 0.25) 100%
    );
    z-index: 1;
}
 
.hero-section .container-xl {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}
 
/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(236, 104, 37, 0.15);
    border: 1px solid rgba(236, 104, 37, 0.4);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
 
/* Title */
.hero-title {
    font-size: 70px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
 
.hero-title-accent {
    color: var(--accent);
    -webkit-text-stroke: 1px var(--accent);
}
 
/* Tagline */
.hero-tagline {
    font-size: 26px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
 
/* Description */
.hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 36px;
}
 
/* Buttons */
.btn-hero-primary {
    background-color: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 6px;
    border: 2px solid var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}
 
.btn-hero-primary:hover {
    background-color: transparent;
    color: var(--accent);
}
 
.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
 
.btn-hero-secondary:hover {
    background-color: #fff;
    color: var(--nav-text);
    border-color: #fff;
}
 
/* Stats */
.hero-stats {
    align-items: center;
}
 
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
 
.stat-number {
    font-size: 30px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
 
.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
}
 
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
}
 
/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}
 
.hero-scroll i {
    font-size: 16px;
}
 
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}
 
/* ============================================================
   HERO RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .hero-tagline{
        font-size: 18px;
    }
    .hero-section {
        min-height: 100svh;
        background-attachment: scroll;
    }
 
    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
    }
 
    .hero-desc {
        font-size: 0.85rem;
    }
 
    .hero-stats {
        gap: 4px !important;
    }
 
    .stat-number {
        font-size: 1.3rem;
    }
    .stat-label
    {
        font-size: 10px;
    }
}
 
@media (max-width: 575px) {
    .hero-btns {
        flex-direction: column;
    }
 
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
 
    .hero-scroll {
        display: none;
    }
}
/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 100px 0;
    background-color: #f8f7f7;
}

/* ---- Image Side ---- */
.about-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: visible;
}

.about-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

/* Est. badge - top left */
.about-img-badge {
    position: absolute;
    top: -18px;
    background-color: var(--accent);
    color: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(236,104,37,0.35);
}

.badge-year {
    font-size: 1.6rem;
    font-weight: 800;
}

.badge-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
}

/* Proprietor card - bottom right */
.about-img-card {
    position: absolute;
    bottom: -20px;
    right: -18px;
    background: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    min-width: 200px;
}

.about-img-card i {
    font-size: 1.8rem;
    color: var(--accent);
    flex-shrink: 0;
}

.about-img-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--nav-text);
    line-height: 1.2;
}

.about-img-card span {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

/* ---- Content Side ---- */
.about-content {
    padding-left: 10px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--nav-text);
    line-height: 1.15;
    margin-bottom: 13px;
}

.text-accent {
    color: var(--accent);
}

.about-lead {
    font-size: 1rem;
    font-weight: 600;
    color: var(--nav-text);
    line-height: 1.7;
    margin-bottom: 14px;
}

.about-body {
    font-size: 0.95rem;
    color: #5a5656;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* USP Pillars */
.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    border: 1px solid rgba(236,104,37,0.15);
    border-radius: 8px;
    padding: 12px 16px;
    transition: var(--transition);
}

.pillar:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(236,104,37,0.12);
    transform: translateY(-2px);
}

.pillar i {
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.pillar span {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--nav-text);
    line-height: 1.3;
}

/* CTA Button */
.btn-about-cta {
    background-color: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 14.5px;
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-about-cta:hover {
    background-color: transparent;
    color: var(--accent);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .about-section {
        padding: 70px 0;
    }

    .about-img-main {
        height: 360px;
    }

    .about-img-card {
        right: 0;
        bottom: -16px;
    }

    .about-content {
        padding-left: 0;
        padding-top: 40px;
    }
}

@media (max-width: 575px) {
    .about-pillars {
        grid-template-columns: 1fr;
    }

    .about-img-main {
        height: 280px;
    }
}
/* ============================================================
   PRODUCTS CATEGORY SECTION
   ============================================================ */
.products-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 auto;
    line-height: 1.7;
}

.products-grid {
    display: grid;
    gap: 16px;
}

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

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

/* Card base */
.product-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 285px;
    cursor: pointer;
}

.products-grid-3 .product-card {
    height: 280px;
}

.product-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    z-index: 0;
}

.product-card:hover .product-card-img {
    transform: scale(1.08);
}

/* Default gradient overlay */
.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 18, 18, 0.88) 0%,
        rgba(20, 18, 18, 0.3) 55%,
        rgba(20, 18, 18, 0.1) 100%
    );
    z-index: 1;
    transition: opacity 0.35s ease;
}

.product-card:hover .product-card-overlay {
    opacity: 0;
}

/* Default title bottom */
.product-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    transition: opacity 0.25s ease;
}

.product-card:hover .product-card-body {
    opacity: 0;
    pointer-events: none;
}

.product-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Hover panel */
.product-card-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        150deg,
        rgba(236, 104, 37, 0.97) 0%,
        rgba(175, 65, 12, 0.98) 100%
    );
    padding: 22px 20px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover .product-card-hover {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.product-hover-title {
    font-size: 1.10rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #fff;
    margin: 0 0 5px 0;
}

.product-hover-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0 0 12px 0;
}

/* Subcategory links */
.product-hover-links {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.product-hover-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.product-hover-links li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    flex-shrink: 0;
    transition: background 0.2s;
}

.product-hover-links li a:hover {
    color: #fff;
    padding-left: 4px;
}

.product-hover-links li a:hover::before {
    background: #fff;
}

/* View All */
.product-hover-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 1px solid rgba(255,255,255,0.25);
    padding-top: 10px;
    transition: gap 0.2s ease;
}

.product-hover-cta:hover {
    color: #fff;
    gap: 10px;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .products-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .section-sub
    {
        font-size: 14px;
    }
    .products-section { padding: 70px 0; }
    .products-grid-4,
    .products-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-card,
    .products-grid-3 .product-card {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .products-grid-4,
    .products-grid-3 {
        grid-template-columns: 1fr;
    }
}
/* ============================================================
   CTA BANNER SECTION
   ============================================================ */
.cta-banner {
    position: relative;
    background-image: url('../images/Metal-Steel.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    overflow: hidden;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(120, 40, 5, 0.82) 0%,
        rgba(60, 20, 2, 0.75) 50%,
        rgba(120, 40, 5, 0.82) 100%
    );
    z-index: 1;
}

.cta-banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-banner-text {
    font-family: var(--font-main);
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.cta-highlight {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15em;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* CTA Button */
.btn-cta-banner {
    background-color: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 6px;
    border: 2px solid var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
}

.btn-cta-banner:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .cta-banner {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
.cta-banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: 70px 0;
    background-color: #f8f7f7;
}

/* ---- Left Info Panel ---- */
.contact-info-wrap {
    background-color: var(--bg-primary);
    border-radius: 12px;
    padding: 40px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-heading {
    /* font-family: var(--font-display); */
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px 0;
}

.contact-info-tagline {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 32px 0;
    font-weight: 500;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background-color: rgba(236, 104, 37, 0.15);
    border: 1px solid rgba(236, 104, 37, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 16px;
}

.contact-info-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 4px;
}

.contact-info-value {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0;
}

.contact-info-link {
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-link:hover {
    color: var(--accent);
}

/* Social in contact */
.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---- Right Form Panel ---- */
.contact-form-wrap {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px 36px;
    height: 100%;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.contact-form-heading {
    /* font-family: var(--font-display); */
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--nav-text);
    margin: 0 0 28px 0;
}

/* Form Controls */
.form-label-custom {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--nav-text);
    margin-bottom: 7px;
}

.form-label-custom span {
    color: var(--accent);
}

.form-control-custom {
    width: 100%;
    padding: 11px 16px;
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--nav-text);
    background-color: #f8f7f7;
    border: 1.5px solid #e5e3e3;
    border-radius: 7px;
    outline: none;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-control-custom:focus {
    border-color: var(--accent);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(236, 104, 37, 0.1);
}

.form-control-custom::placeholder {
    color: #b0acac;
    font-size: 13.5px;
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 110px;
}

select.form-control-custom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23888' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}
/* Submit Button */
.btn-contact-submit {
    background-color: var(--accent);
    color: #fff;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 7px;
    border: 2px solid var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}
.btn-contact-submit:hover {
    background-color: transparent;
    color: var(--accent);
}
/* ---- Responsive ---- */
@media (max-width: 991px) {
    .contact-section {
        padding: 70px 0;
    }
    .contact-info-wrap,
    .contact-form-wrap {
        padding: 30px 24px;
    }
}
/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background-color: var(--bg-darker);
}

/* ---- Footer Top ---- */
.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand Column */
.footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.footer-about {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

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

/* Widget */
.footer-widget-title {
    /* font-family: var(--font-display); */
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Quick Links & Products */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--accent);
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.footer-links li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-links li a:hover::before {
    opacity: 1;
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-list li i {
    color: var(--accent);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-list li span,
.footer-contact-list li a {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.footer-contact-list li a:hover {
    color: var(--accent);
}

.footer-contact-list li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* ---- Footer Bottom ---- */
.footer-bottom {
    padding: 18px 0;
    background-color: #141212;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copy,
.footer-credit {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

.footer-copy strong {
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

.footer-credit a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .footer-top {
        padding: 60px 0 40px;
    }
}

@media (max-width: 767px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}
/* ============================================================
   COUNTER SECTION
   ============================================================ */
.counter-section {
    position: relative;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 90px 0;
    overflow: hidden;
}

.counter-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 18, 18, 0.93) 0%,
        rgba(67, 63, 64, 0.88) 100%
    );
    z-index: 1;
}

.counter-section .container-xl {
    position: relative;
    z-index: 2;
}

/* Heading */
.counter-heading {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

/* Grid */
.counter-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

/* Card */
.counter-card {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.counter-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background-color: rgba(236, 104, 37, 0.15);
    border: 1px solid rgba(236, 104, 37, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 16px;
    transition: var(--transition);
}

.counter-card:hover .counter-icon {
    background-color: var(--accent);
    color: #fff;
    transform: translateY(-4px);
    border-color: var(--accent);
}

/* Number + Plus inline */
.counter-number,
.counter-plus {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.counter-plus {
    color: var(--accent);
    margin-left: 2px;
}

.counter-card > .counter-number,
.counter-card > .counter-plus {
    display: inline;
}

/* Wrap number + plus together */
.counter-card {
    position: relative;
}

.counter-num-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

/* Divider between cards */
.counter-divider {
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .counter-section {
        background-attachment: scroll;
        padding: 70px 0;
    }

    .counter-grid {
        gap: 10px;
    }

    .counter-divider {
        display: none;
    }

    .counter-card {
        min-width: 140px;
        padding: 24px 16px;
    }
}

@media (max-width: 575px) {
    .counter-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .counter-card {
        background-color: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        padding: 24px 16px;
    }
}
.btn-quote,
.btn-hero-primary,
.btn-hero-secondary,
.btn-about-cta,
.btn-cta-banner,
.btn-contact-submit {
    background-image: linear-gradient(to right, var(--accent) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right center;
    transition: background-position 0.6s ease, color 0.6s ease, border-color 0.6s ease;
}

.btn-quote:hover,
.btn-hero-primary:hover,
.btn-about-cta:hover,
.btn-cta-banner:hover,
.btn-contact-submit:hover {
    background-position: left center;
    color: #fff;
    border-color: var(--accent);
}

.btn-hero-secondary:hover {
    background-position: left center;
    color: var(--nav-text);
    border-color: #fff;
}
.about-img-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(186, 186, 186, 0.15) 50%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
    transition: left 0.8s ease;
}

.about-img-wrap:hover::before {
    left: 100%;
}

.p20-steel-section{
    padding:40px 0;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    overflow:hidden;
}

.p20-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
}

.p20-content{
    flex:1;
    color:#fff;
}

.p20-tag{
    display:inline-block;
    background:rgba(255,193,7,0.15);
    color: #000000;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
    border:1px solid rgba(255,193,7,0.3);
}

.p20-content h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
    color: #000000;
    position:relative;
}

.p20-content h2:after{
    content:"";
    width:90px;
    height:4px;
    background:#ffc107;
    display:block;
    margin-top:12px;
    border-radius:10px;
}

.p20-content p{
    color: #000000;
    font-size:16px;
    line-height:1.9;
    margin-bottom:18px;
}

.p20-btns{
    margin-top:22px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.p20-btn-primary{
    background:#ffc107;
    color:#111;
    text-decoration:none;
    padding:14px 32px;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
    box-shadow:0 10px 25px rgba(255,193,7,.25);
}

.p20-btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(255,193,7,.45);
}

.p20-btn-secondary{
    border:2px solid rgba(255,255,255,.25);
    color:#fff;
    text-decoration:none;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.p20-btn-secondary:hover{
    background:#fff;
    color:#111;
}

.p20-image{
    flex:0 0 420px;
    position:relative;
}

.p20-image img{
    width:100%;
    border-radius:20px;
    display:block;
    transition:.5s;
    box-shadow:0 25px 50px rgba(0,0,0,.35);
}

.p20-image:hover img{
    transform:translateY(-10px) scale(1.03);
}

.p20-image:before{
    content:"";
    position:absolute;
    top:-15px;
    left:-15px;
    width:100%;
    height:100%;
    border:2px solid #ffc107;
    border-radius:20px;
    z-index:-1;
    transition:.4s;
}

.p20-image:hover:before{
    top:-8px;
    left:-8px;
}

@media(max-width:991px){

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

    .p20-image{
        flex:0 0 auto;
        width:100%;
    }

    .p20-content h2{
        font-size:32px;
    }
}


.steel-breadcrumb{
    position:relative;
    height: 207px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    /* background:url('images/p20-steel-banner.jpg') center center; */
    background-size:cover;
    background-attachment:fixed;
}

.steel-breadcrumb-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(15,23,42,0.75),
        rgba(15,23,42,0.75)
    );
}

.steel-breadcrumb-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1200px;
}

.steel-breadcrumb-content h1{
    color:#fff;
    font-size: 38px;
    font-weight:700;
    margin-bottom:15px;
    letter-spacing:.5px;
}

.steel-breadcrumb-nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    list-style:none;
    padding:0;
    margin:0;
    flex-wrap:wrap;
}

.steel-breadcrumb-nav li{
    color:#fff;
    font-size:15px;
}

.steel-breadcrumb-nav a{
    color:#ffc107;
    text-decoration:none;
    transition:.3s;
}

.steel-breadcrumb-nav a:hover{
    color:#fff;
}

.steel-breadcrumb:before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,193,7,0.15);
    border-radius:50%;
    top:-120px;
    left:-120px;
}

.steel-breadcrumb:after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,193,7,0.08);
    border-radius:50%;
    right:-150px;
    bottom:-150px;
}

@media(max-width:768px){

    .steel-breadcrumb{
        height:180px;
    }

    .steel-breadcrumb-content h1{
        font-size:28px;
    }

}

.enquiry-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    z-index:99999;
    justify-content:center;
    align-items:center;
    padding:15px;
}

.enquiry-modal-content{
    background:#fff;
    width:100%;
    max-width:380px;
    padding:25px;
    border-radius:12px;
    position:relative;
    animation:popup .3s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.2);
}

@keyframes popup{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.close-modal{
    position:absolute;
    top:8px;
    right:15px;
    font-size:28px;
    cursor:pointer;
    color:#666;
}

.enquiry-modal-content h3{
    text-align:center;
    margin-bottom:20px;
    font-size:24px;
    color:#222;
}

.enquiry-field{
    margin-bottom:12px;
}

.enquiry-field input,
.enquiry-field textarea{
    width:100%;
    padding:12px 15px;
    border:1px solid #ddd;
    border-radius:6px;
    outline:none;
    font-size:14px;
    transition:.3s;
    box-sizing:border-box;
}

.enquiry-field input:focus,
.enquiry-field textarea:focus{
    border-color:#ffc107;
}

.enquiry-submit-btn{
    width:100%;
    border:none;
    background:#ffc107;
    color:#111;
    padding:12px;
    border-radius:6px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}
.enquiry-submit-btn:hover{
    background:#e5ad06;
}

@media(max-width:480px){

    .enquiry-modal-content{
        max-width:95%;
        padding:20px;
    }
}
/* ============================================================
   PRODUCTS NESTED FLYOUT SUBMENU (DESKTOP)
   ============================================================ */

/* Item that has children gets the arrow + relative positioning */
.main-navbar .nav-item-has-children {
    position: relative;
}

.main-navbar .submenu-arrow {
    font-size: 10px;
    margin-left: 8px;
    color: #b0acac;
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.main-navbar .nav-item-has-children:hover > a .submenu-arrow,
.main-navbar .nav-item-has-children.submenu-open > a .submenu-arrow {
    color: #fff;
    transform: translateX(2px);
}

/* The flyout itself - sits to the right of the parent item */
.main-navbar .dropdown-submenu {
    list-style: none;
    margin: 0;
    padding: 8px;
    position: absolute;
    top: -8px;
    left: 100%;
    background-color: #ffffff;
    border-top: 3px solid var(--accent);
    border-radius: 0 10px 10px 10px;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
    z-index: 10;
}

/* Open on hover (real desktop mouse) */
.main-navbar .nav-item-has-children:hover > .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
}

/* Open via JS tap-toggle (touch devices without real hover) */
.main-navbar .nav-item-has-children.submenu-open > .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
}

/* Flip the flyout to the LEFT side if it's the last couple of items
   so it doesn't overflow off the right edge of the screen */
.main-navbar .nav-item-has-children:nth-last-child(-n+2) > .dropdown-submenu {
    left: auto;
    right: 100%;
    border-radius: 10px 0 10px 10px;
    transform: translateX(-8px);
}

.main-navbar .nav-item-has-children:nth-last-child(-n+2):hover > .dropdown-submenu,
.main-navbar .nav-item-has-children:nth-last-child(-n+2).submenu-open > .dropdown-submenu {
    transform: translateX(0);
}

/* Sub-items inside the flyout reuse .dropdown-item styling already,
   just tighten them slightly */
.main-navbar .dropdown-submenu .dropdown-item {
    font-size: 13px;
    justify-content: flex-start;
}

/* On narrower desktop/laptop widths, keep flyout from going off-screen:
   fall back to opening below instead of to the side */
@media (max-width: 1300px) and (min-width: 992px) {
    .main-navbar .dropdown-submenu,
    .main-navbar .nav-item-has-children:nth-last-child(-n+2) > .dropdown-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 6px;
        background-color: #f8f7f7;
        margin-top: 4px;
        margin-bottom: 6px;
        max-height: 0;
        overflow: hidden;
        padding: 0 8px;
        transition: max-height 0.25s ease, padding 0.25s ease;
    }

    .main-navbar .nav-item-has-children:hover > .dropdown-submenu,
    .main-navbar .nav-item-has-children.submenu-open > .dropdown-submenu {
        max-height: 400px;
        padding: 8px;
    }
}

/* ============================================================
   PRODUCTS NESTED SUBMENU (MOBILE OFFCANVAS - LEVEL 2 ACCORDION)
   ============================================================ */

.offcanvas-has-children > a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
}

.offcanvas-has-children > a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--accent);
    flex-shrink: 0;
    margin-right: 8px;
}

.offcanvas-has-children > a:hover,
.offcanvas-has-children > a[aria-expanded="true"] {
    color: var(--accent);
    background-color: rgba(236, 104, 37, 0.08);
}

.submenu-toggle-icon {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.offcanvas-has-children > a[aria-expanded="true"] .submenu-toggle-icon {
    transform: rotate(180deg);
}

.offcanvas-submenu-level2 {
    list-style: none;
    padding: 4px 0 8px 26px;
    margin: 0;
}

.offcanvas-submenu-level2 li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(192, 186, 187, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
}

.offcanvas-submenu-level2 li a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--accent);
    opacity: 0.6;
    flex-shrink: 0;
}

.offcanvas-submenu-level2 li a:hover {
    color: var(--accent);
    background-color: rgba(236, 104, 37, 0.06);
}

.offcanvas-submenu-level2 li a:hover::before {
    opacity: 1;
}
/* ============================================================
   P20 / STEEL GRADE DETAIL SECTION
   (Chemical Composition + Equivalent Grades + Image)
   ============================================================ */

.steel-detail-section {
    padding: 70px 0;
    background-color: #f8f7f7;
}

.steel-detail-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.steel-detail-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ---- Left content ---- */
.steel-detail-heading {
    font-size: 26px;
    font-weight: 700;
    color: var(--nav-text);
    margin-bottom: 18px;
}

.steel-detail-text {
    font-size: 15.5px;
    line-height: 1.9;
    color: #5a5656;
    margin-bottom: 20px;
}

.steel-detail-subheading {
    font-size: 18px;
    font-weight: 700;
    color: var(--nav-text);
    margin-bottom: 16px;
    margin-top: 30px;
    position: relative;
    padding-left: 14px;
}

.steel-detail-subheading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

/* ---- Chemical composition table ---- */
.steel-comp-table-wrap {
    overflow-x: auto;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.steel-comp-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    min-width: 560px;
}

.steel-comp-table thead th {
    background-color: #fff9ec;
    color: #c9870a;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    padding: 14px 18px;
    border-bottom: 2px solid #ffc107;
    white-space: nowrap;
}

.steel-comp-table tbody td {
    font-size: 14px;
    color: #5a5656;
    font-weight: 500;
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}

.steel-comp-table tbody tr:last-child td {
    border-bottom: none;
}

/* ---- Equivalent grades list ---- */
.steel-grades-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.steel-grades-list li {
    font-size: 14.5px;
    color: #5a5656;
    line-height: 1.7;
    padding: 10px 16px;
    background-color: #fff;
    border-left: 3px solid #ffc107;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.steel-grades-list li strong {
    color: var(--nav-text);
    font-weight: 700;
    margin-right: 4px;
}

/* ---- Right image placeholder ---- */
.steel-detail-image {
    position: sticky;
    top: 100px;
    border-radius: 14px;
    background-color: #ececec;
    border: 2px dashed #d8d4d4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.steel-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .steel-detail-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .steel-detail-image {
        position: static;
        min-height: 280px;
        order: -1;
    }

    .steel-detail-section {
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
    .steel-detail-heading {
        font-size: 21px;
    }

    .steel-comp-table thead th,
    .steel-comp-table tbody td {
        padding: 11px 14px;
        font-size: 13px;
    }

    .steel-grades-list li {
        font-size: 13.5px;
    }
}
/* ============================================================
   PRODUCT ENQUIRY MODAL (replaces the old plain version)
   ============================================================ */

.enquiry-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 18, 18, 0.72);
    backdrop-filter: blur(3px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 18px;
}

.enquiry-modal-content {
    background: #fff;
    width: 100%;
    max-width: 460px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 32px 30px 26px;
    border-radius: 16px;
    position: relative;
    animation: enquiryPopup 0.3s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

@keyframes enquiryPopup {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---- Close button ---- */
.enquiry-modal .close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 8px;
    background-color: #f3f1f1;
    color: #888;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.enquiry-modal .close-modal:hover {
    background-color: var(--accent, #EC6825);
    color: #fff;
    transform: rotate(90deg);
}

/* ---- Header ---- */
.enquiry-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.enquiry-modal-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, var(--accent, #EC6825));
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(236, 104, 37, 0.3);
}

.enquiry-modal-header h3 {
    font-size: 21px;
    font-weight: 800;
    color: #222;
    margin: 0 0 6px;
}

.enquiry-modal-subtext {
    font-size: 13.5px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* ---- Form layout ---- */
.enquiry-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.enquiry-field {
    margin-bottom: 16px;
}

.enquiry-field label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #444;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.enquiry-field label span {
    color: var(--accent, #EC6825);
}

.enquiry-field label .optional {
    color: #b0acac;
    font-weight: 500;
    text-transform: none;
}

/* ---- Input wrapper with icon ---- */
.enquiry-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.enquiry-input-wrap i {
    position: absolute;
    left: 14px;
    font-size: 14px;
    color: #b0acac;
    transition: color 0.2s ease;
    pointer-events: none;
}

.enquiry-input-wrap.enquiry-textarea-wrap i {
    top: 14px;
    transform: none;
}

.enquiry-field input,
.enquiry-field textarea {
    width: 100%;
    padding: 12px 14px 12px 38px;
    border: 1.5px solid #e5e3e3;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    color: #222;
    background-color: #fafafa;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.enquiry-field textarea {
    resize: vertical;
    min-height: 90px;
    padding-top: 12px;
}

.enquiry-field input::placeholder,
.enquiry-field textarea::placeholder {
    color: #b8b4b4;
    font-size: 13px;
}

.enquiry-field input:focus,
.enquiry-field textarea:focus {
    border-color: var(--accent, #EC6825);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(236, 104, 37, 0.1);
}

.enquiry-field input:focus ~ i,
.enquiry-input-wrap:has(input:focus) i,
.enquiry-input-wrap:has(textarea:focus) i {
    color: var(--accent, #EC6825);
}

/* ---- Error state ---- */
.enquiry-error {
    display: none;
    font-size: 12px;
    color: #e0483f;
    margin-top: 6px;
    font-weight: 500;
}

.enquiry-field.has-error input,
.enquiry-field.has-error textarea {
    border-color: #e0483f;
    background-color: #fff6f5;
}

.enquiry-field.has-error .enquiry-error {
    display: block;
}

/* ---- Submit button ---- */
.enquiry-submit-btn {
    width: 100%;
    border: none;
    background: linear-gradient(135deg, var(--accent, #EC6825), #d45a1a);
    color: #fff;
    padding: 13px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 8px 20px rgba(236, 104, 37, 0.25);
}

.enquiry-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(236, 104, 37, 0.35);
}

.enquiry-submit-btn i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.enquiry-submit-btn:hover i {
    transform: translateX(3px);
}

/* Loading state */
.enquiry-submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.enquiry-submit-btn.loading .btn-text::after {
    content: '...';
}

.enquiry-submit-btn.loading i {
    animation: enquirySpin 0.8s linear infinite;
}

@keyframes enquirySpin {
    to { transform: rotate(360deg); }
}

/* ---- Privacy note ---- */
.enquiry-privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11.5px;
    color: #aaa;
    margin: 14px 0 0;
}

.enquiry-privacy-note i {
    color: #c9c5c5;
    font-size: 11px;
}

/* ---- Success state ---- */
.enquiry-success {
    display: none;
    text-align: center;
    padding: 20px 10px 10px;
}

.enquiry-success.show {
    display: block;
}

.enquiry-success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background-color: #e9f7ee;
    color: #2bab5f;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: enquirySuccessPop 0.4s ease;
}

@keyframes enquirySuccessPop {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.enquiry-success h4 {
    font-size: 18px;
    font-weight: 800;
    color: #222;
    margin: 0 0 8px;
}

.enquiry-success p {
    font-size: 13.5px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
    .enquiry-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .enquiry-modal-content {
        max-width: 95%;
        padding: 26px 20px 22px;
        border-radius: 14px;
    }

    .enquiry-modal-header h3 {
        font-size: 19px;
    }
}
.steel-comp-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 575px) {
    .steel-comp-list {
        grid-template-columns: 1fr;
    }
}
/* ============================================================
   FEATURES & APPLICATIONS BLOCK
   (used on H-11 Hot Die Steel and similar product detail pages)
   ============================================================ */

.steel-feat-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 8px;
    margin-bottom: 10px;
}

.steel-feat-app-block .steel-detail-subheading {
    margin-top: 0;
}

.steel-bullet-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.steel-bullet-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #5a5656;
    line-height: 1.6;
}

.steel-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #ffc107;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .steel-feat-app-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* ============================================================
   CHEMICAL COMPOSITION TABLE - RESPONSIVE (MOBILE)
   ============================================================ */

.steel-comp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
    .steel-comp-table {
        min-width: 520px;
    }

    .steel-comp-table thead th,
    .steel-comp-table tbody td {
        padding: 10px 12px;
        font-size: 12.5px;
        white-space: nowrap;
    }
}

@media (max-width: 575px) {
    .steel-comp-table {
        min-width: 460px;
    }

    .steel-comp-table thead th,
    .steel-comp-table tbody td {
        padding: 9px 10px;
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .steel-comp-table {
        min-width: 420px;
    }

    .steel-comp-table thead th,
    .steel-comp-table tbody td {
        padding: 8px 8px;
        font-size: 11.5px;
    }
}
/* ============================================================
   EQUIVALENT GRADES - MULTI COLUMN BULLET LIST
   (used when there are many short grade names, e.g. H-13 page)
   ============================================================ */

.steel-bullet-list-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 20px;
}

@media (max-width: 767px) {
    .steel-bullet-list-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .steel-bullet-list-cols {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   LABELED SPEC PARAGRAPHS
   (Fabrication, Heat Treatment, Forging, Tempering, etc.)
   ============================================================ */

.steel-spec-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 10px;
}

.steel-spec-points p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #5a5656;
    margin: 0;
}

.steel-spec-points p strong {
    color: var(--nav-text);
    font-weight: 700;
}