
        :root{
    --green: #1e293b;      /* Brand theme colour — slate (matches theme-color meta) */
    --green-dk: #0f172a;   /* darker slate (hovers / brand strip) */
    --green-ink: #0f172a;  /* deep slate for footer / dark areas */
    --green-soft: #eef1f7; /* slate tint for icon chips */

    --orange: #f59e0b;     /* Amber */
    --orange-dk: #d97706;

    --text: #111827;
    --muted: #6b7280;

    --light: #f9fafb;
    --border: #e5e7eb;


            --disp: 'Playfair Display', serif;
            --body: 'Mulish', sans-serif;
        }

        * {
            box-sizing: border-box
        }

        html, body { overflow-x: clip; } 

        body {
            font-family: var(--body);
            color: var(--text);
            margin: 0;
            background: #fff;
            line-height: 1.65
        }

        section {
            padding: 78px 0
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: var(--disp)
        }

        img {
            max-width: 100%
        }

        a {
            text-decoration: none
        }

        /* ===== NAVBAR (green, bootstrap toggle) ===== */
        .navbar-custom{
    background: var(--green);
    padding: 12px 0;

    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

        .navbar-custom .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: var(--disp);
            font-weight: 800;
            font-size: 1.5rem;
            color: #fff
        }

        .navbar-custom .navbar-brand .logo {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 2px solid #fff;
            object-fit: cover;
            background: #fff
        }

                .navbar-custom .nav-link {
                    color: rgba(255, 255, 255, 0.92) !important;
                    font-weight: 500;
                    font-size: 1rem;
                    /* smaller text */
                    padding: 6px 10px !important;
                    /* less spacing */
                    transition: color .2s;
                }

        .navbar-custom .nav-link:hover {
            color: #fe8300 !important
        }

        .navbar-custom .btn-call {
            background: var(--orange);
            color: #fff;
            font-weight: 700;
            border: none;
            border-radius: 7px;
            padding: 10px 26px
        }

        .navbar-custom .btn-call:hover {
            background: var(--orange-dk);
            color: #fff
        }

        .navbar-toggler {
            border: 1.5px solid rgba(255, 255, 255, .6);
            padding: 6px 10px
        }

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

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
        }


.menu-close{
display: none;
}

        @media (max-width:991px){
        
        #mainNav{
        display:block !important;
        position:fixed !important;
        top:0;
        right:0;
        bottom:0;
        left:auto;
        width:300px;
        max-width:84%;
        height:100vh;
        background:var(--green-ink);
        z-index:99999;
        padding:80px 26px 30px;
        overflow-y:auto;
        box-shadow:-10px 0 34px rgba(0,0,0,.34);
        transform:translateX(100%);
        visibility:hidden;
        transition:transform .28s ease, visibility 0s linear .28s;
        }

        #mainNav.show{
        transform:translateX(0);
        visibility:visible;
        transition:transform .28s ease;
        }

        #mainNav.collapsing{
        display:block !important;
        height:100vh !important;
        transition:none !important;
        }
        
        .menu-close{
        display:block !important;
        position:absolute;
        top:20px;
        right:25px;
        width:45px;
        height:45px;
        font-size:52px;
        line-height:45px;
        text-align:center;
        color:#fff;
        background:transparent;
        border:2px solid #fff;
        border-radius:8px;
        cursor:pointer;
        z-index:100000;
        }
        
        /* Desktop */
        .navbar-nav{
        gap: 12px;
        align-items: center;
        }
        
        .navbar-custom .nav-link{
        font-size: 1rem !important;
        padding: 8px 14px !important;
        white-space: nowrap;
        }
        
        .navbar-custom .navbar-brand{
        font-size: 1.2rem;
        white-space: nowrap;
        }
        
    
        
        .btn-call{
        width:100%;
        margin-top:25px;
        }
        }
        /* ===== BUTTONS ===== */
        .btn-green {
            background: var(--green);
            color: #fff;
            font-weight: 700;
            border: none;
            border-radius: 7px;
            padding: 11px 28px;
            transition: .2s
        }

        .btn-green:hover {
            background: var(--green-dk);
            color: #fff
        }

        .btn-orange {
            background: var(--orange);
            color: #fff;
            font-weight: 700;
            border: none;
            border-radius: 7px;
            padding: 11px 28px;
            transition: .2s
        }

        .btn-orange:hover {
            background: var(--orange-dk);
            color: #fff
        }

        .btn-outline-green {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, .7);
            font-weight: 700;
            border-radius: 7px;
            padding: 10px 26px;
            transition: .2s
        }

        .btn-outline-green:hover {
            background: #fff;
            color: var(--green)
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 560px;
            display: flex;
            align-items: center;
            text-align: center;
            color: #ffffff;
            background: linear-gradient(rgba(15,23,42, 0.88), rgba(30,41,59, 0.82)), url('assets/images/store-rebar.webp') center/cover
        }

        .hero h1 {
            font-weight: 900;
            font-size: clamp(2.1rem, 4.8vw, 3.4rem);
            margin-bottom: 18px;
            max-width: 880px;
            margin-inline: auto
        }

        @media (max-width:991px){
            .hero h1{
                font-size: 1.5rem;
            }
            .hero p{
                font-size: 0.8rem;
            }
        }

        .hero p {
            font-size: 1.18rem;
            max-width: 620px;
            margin: 0 auto 28px;
            color: rgba(255, 255, 255, 0.92)
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 46px;
            margin-top: 46px;
            flex-wrap: wrap
        }

        .hero-stats .num {
            font-family: var(--disp);
            font-weight: 800;
            font-size: 2rem;
            color: #ffce9e
        }

        .hero-stats .lbl {
            font-size: .92rem;
            color: rgba(255, 255, 255, .82)
        }

        /* ===== SECTION HEADINGS ===== */
        .section-heading {
            font-weight: 800;
            font-size: clamp(1.8rem, 3.6vw, 2.6rem);
            text-align: center;
            margin-bottom: 10px;
            color: var(--text)
        }

        .intro-box {
            border-left: 4px solid var(--green);
            background: var(--light);
            padding: 18px 24px;
            border-radius: 0 8px 8px 0;
            color: var(--muted);
            font-size: 1.02rem;
            margin-bottom: 36px
        }

        .intro-box strong {
            color: var(--green)
        }

        /* ===== BRAND STRIP ===== */
        .brand-strip {
            background: var(--green-dk);
            padding: 22px 0;
            text-align: center
        }

        .brand-strip .lbl {
            color: rgba(255, 255, 255, .6);
            font-size: .8rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            font-weight: 600;
            margin-right: 10px
        }

        .brand-strip .chip {
            display: inline-block;
            font-family: var(--disp);
            font-weight: 700;
            font-size: 1.15rem;
            color: #fff;
            padding: 4px 18px;
            border-left: 1px solid rgba(255, 255, 255, .22)
        }

        .brand-strip .chip:first-of-type {
            border-left: none
        }

        /* ===== FEATURE CARDS ===== */
        .feature-card {
            border: 1px solid var(--border);
            border-top: 3px solid var(--orange);
            border-radius: 10px;
            padding: 26px 22px;
            background: #fff;
            height: 100%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
            transition: transform .25s, box-shadow .25s
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 30px rgba(0, 0, 0, .1)
        }

        .feature-card .ic {
            width: 52px;
            height: 52px;
            border-radius: 9px;
            background: #eef1f7;
            color: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 16px
        }

        .feature-card h5 {
            font-weight: 700;
            font-size: 1.18rem;
            margin-bottom: 8px;
            font-family: var(--disp)
        }

        .feature-card p {
            font-size: .96rem;
            color: var(--muted);
            margin: 0
        }

        /* ===== PRICE ===== */
        .price-section {
            background: var(--light)
        }

        .product-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            position: relative;
            transition: transform .25s, box-shadow .25s
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 30px rgba(0, 0, 0, .1)
        }

        .product-card .badge-off {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--orange);
            color: #fff;
            font-size: .78rem;
            font-weight: 700;
            border-radius: 4px;
            padding: 4px 11px;
            z-index: 2
        }

        .product-card img {
            width: 100%;
            height: 170px;
            object-fit: cover
        }

        .product-card .card-body {
            padding: 18px;
            text-align: center
        }

        .product-card h6 {
            font-weight: 700;
            font-size: 1.15rem;
            font-family: var(--disp)
        }

        .product-card .stars {
            color: var(--orange);
            font-size: .85rem;
            margin: 3px 0
        }

        .product-card .price-now {
            color: var(--green);
            font-size: 1.45rem;
            font-weight: 800;
            font-family: var(--disp)
        }

        .product-card .price-now small {
            font-size: .78rem;
            color: var(--muted);
            font-weight: 400
        }

        .product-card .price-old {
            color: #9a9a9a;
            text-decoration: line-through;
            font-size: .9rem
        }

        /* ===== ABOUT ===== */
        .about-img {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 16px 40px rgba(0, 0, 0, .12)
        }

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

        .about-img .seal {
            position: absolute;
            bottom: 16px;
            left: 16px;
            background: var(--green);
            color: #fff;
            border-radius: 10px;
            padding: 14px 18px;
            display: flex;
            align-items: center;
            gap: 12px
        }

        .about-img .seal .big {
            font-family: var(--disp);
            font-weight: 800;
            font-size: 1.9rem;
            color: #ffce9e
        }

        .about-list {
            list-style: none;
            padding: 0;
            margin: 22px 0 0
        }

        .about-list li {
            display: flex;
            gap: 12px;
            margin-bottom: 13px
        }

        .about-list i {
            color: var(--orange);
            font-size: 1.2rem;
            margin-top: 2px
        }

        .about-list b {
            color: var(--green)
        }

        /* ===== WHY (green band) ===== */
        .why-section {
            background: var(--green)
        }

        .why-section .section-heading {
            color: #fff
        }

        .why-card {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 10px;
            padding: 24px 20px;
            height: 100%;
            transition: .25s
        }

        .why-card:hover {
            background: rgba(255, 255, 255, .16)
        }

        .why-card .ic {
            font-size: 1.7rem;
            color: #ffce9e;
            margin-bottom: 12px
        }

        .why-card h6 {
            color: #fff;
            font-weight: 700;
            font-size: 1.12rem;
            font-family: var(--disp);
            margin-bottom: 7px
        }

        .why-card p {
            color: rgba(255, 255, 255, .82);
            font-size: .94rem;
            margin: 0
        }

        /* ===== REVIEWS ===== */
        .rating-badge {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 16px 26px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .06)
        }

        .rating-badge .score {
            font-family: var(--disp);
            font-weight: 800;
            font-size: 2.6rem;
            color: var(--green);
            line-height: 1
        }

        .rating-badge .stars {
            color: var(--orange);
            font-size: 1rem
        }

        .rating-badge .cnt {
            color: var(--muted);
            font-size: .85rem
        }

        .review-card {
            background: #fff;
            border: 1px solid var(--border);
            border-top: 3px solid var(--green);
            border-radius: 10px;
            padding: 24px;
            height: 100%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
            transition: transform .25s, box-shadow .25s
        }

        .review-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 30px rgba(0, 0, 0, .1)
        }

        .review-card .stars {
            color: var(--orange);
            font-size: .92rem;
            margin-bottom: 10px
        }

        .review-card p {
            font-size: 1rem;
            color: #333;
            margin-bottom: 18px
        }

        .review-card .who {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .review-card .av {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--green);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--disp);
            font-weight: 700
        }

        .review-card .nm {
            font-weight: 700;
            font-size: 1rem
        }

        .review-card .meta {
            font-size: .82rem;
            color: var(--muted)
        }

        .review-card .verified {
            margin-left: auto;
            color: var(--green);
            font-size: .78rem;
            font-weight: 600
        }

        /* ===== FAQ ===== */
        .accordion-button {
            font-family: var(--disp);
            font-weight: 700;
            font-size: 1.08rem;
            color: var(--text);
            background: #fff
        }

        .accordion-button:not(.collapsed) {
            color: var(--green);
            background: #eef1f7;
            box-shadow: none
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--border)
        }

        .accordion-item {
            border: 1px solid var(--border);
            border-radius: 8px !important;
            margin-bottom: 10px;
            overflow: hidden
        }

        .accordion-body {
            color: var(--muted);
            font-size: .98rem
        }

        /* ===== CONTACT ===== */
        .form-section {
            background: var(--light)
        }

        .req-form-card {
            background: #fff;
            border-radius: 12px;
            padding: 36px;
            box-shadow: 0 6px 26px rgba(0, 0, 0, .08)
        }

        .req-form-card .form-control,
        .req-form-card .form-select {
            border-radius: 7px;
            border: 1px solid #d3d3d3;
            padding: 12px 14px
        }

        .req-form-card .form-control:focus,
        .req-form-card .form-select:focus {
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(29, 122, 58, .14)
        }

        .cinfo-item {
            display: flex;
            gap: 14px;
            align-items: center;
            margin-bottom: 18px
        }

        .cinfo-item .ic {
            width: 48px;
            height: 48px;
            border-radius: 9px;
            background: #eef1f7;
            color: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex: none
        }

        .cinfo-item b {
            display: block;
            font-size: .8rem;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: var(--muted)
        }

        /* ===== FOOTER ===== */
        .footer-section {
            background: var(--green-ink);
            color: rgba(255, 255, 255, .72)
        }

        .footer-section h5 {
            color: #fff;
            font-family: var(--disp);
            margin-bottom: 16px
        }

        .footer-section a {
            color: rgba(255, 255, 255, .66);
            display: block;
            margin-bottom: 8px
        }

        .footer-section a:hover {
            color: #ffce9e
        }

        .footer-section .ci {
            margin-bottom: 10px
        }

        .footer-section .ci i {
            color: var(--orange);
            margin-right: 8px
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .13);
            padding-top: 16px;
            text-align: center;
            font-size: .86rem;
            color: rgba(255, 255, 255, .45)
        }

        /* ===== FLOATING CALL ===== */
        .floating-call {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: var(--orange);
            color: #fff;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
            z-index: 999;
            transition: transform .2s
        }

        .floating-call:hover {
            transform: scale(1.1);
            color: #fff
        }






                /* ===== INNER / CONTENT / LEGAL PAGES ===== */
                .page-hero {
                    position: relative;
                    min-height: 340px;
                    display: flex;
                    align-items: center;
                    text-align: center;
                    color: #fff;
                }
        
                .page-hero::after {
                    content: "";
                    position: absolute;
                    left: 50%;
                    bottom: 34px;
                    transform: translateX(-50%);
                    width: 70px;
                    height: 4px;
                    border-radius: 4px;
                    background: var(--orange);
                }
        
                .page-hero h1 {
                    font-weight: 900;
                    font-size: clamp(2rem, 4.4vw, 3.1rem);
                    margin: 0 auto;
                    max-width: 900px;
                }
        
                .page-hero .crumb {
                    margin-top: 14px;
                    font-size: .95rem;
                    color: rgba(255, 255, 255, .82);
                    letter-spacing: .3px;
                }
        
                .page-hero .crumb a {
                    color: rgba(255, 255, 255, .82);
                    text-decoration: none;
                }
        
                .page-hero .crumb a:hover {
                    color: #fff;
                }
        
                .page-section {
                    padding: 72px 0;
                }
        
                .page-wrap {
                    max-width: 920px;
                    margin: 0 auto;
                }
        
                .page-wrap h2 {
                    
                    font-weight: 800;
                    font-size: clamp(1.45rem, 2.7vw, 2rem);
                    color: var(--green-dk);
                    margin: 38px 0 14px;
                    scroll-margin-top: 90px;
                }
        
                .page-wrap h2:first-child {
                    margin-top: 0;
                }
        
                .page-wrap h3 {
                    font-weight: 700;
                    font-size: 1.16rem;
                    color: var(--text);
                    margin: 26px 0 10px;
                }
        
                .page-wrap p {
                    line-height: 1.85;
                    color: #454545;
                    margin-bottom: 16px;
                    font-size: 1.02rem;
                }
        
                .page-wrap .lead-p {
                    font-size: 1.12rem;
                    color: #333;
                    line-height: 1.85;
                }
        
                .check-list {
                    list-style: none;
                    padding-left: 0;
                    margin-bottom: 18px;
                }
        
                .check-list li {
                    display: flex;
                    gap: 11px;
                    margin-bottom: 11px;
                    line-height: 1.7;
                    color: #454545;
                }
        
                .check-list li i {
                    color: var(--green);
                    font-size: 1.12rem;
                    margin-top: 2px;
                    flex-shrink: 0;
                }
        
                .page-card {
                    background: #fff;
                    border: 1px solid #ececec;
                    border-radius: 16px;
                    padding: 30px;
                    box-shadow: 0 6px 26px rgba(0, 0, 0, .05);
                    height: 100%;
                }
        
                .page-card .ic {
                    width: 54px;
                    height: 54px;
                    border-radius: 13px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 1.5rem;
                    background: #eef1f7;
                    color: var(--green);
                    margin-bottom: 16px;
                }
        
                .page-card h4 {
                    font-weight: 700;
                    font-size: 1.15rem;
                    margin-bottom: 10px;
                    color: var(--text);
                }
        
                .page-card p {
                    color: var(--muted);
                    font-size: .98rem;
                    line-height: 1.7;
                    margin: 0;
                }
        
                .page-toc {
                    background: var(--light);
                    border: 1px solid #ececec;
                    border-radius: 14px;
                    padding: 24px 28px;
                    margin-bottom: 34px;
                }
        
                .page-toc .toc-title {
                    margin: 0 0 12px;
                    font-size: 1.15rem;
                    font-weight: 700;
                    color: var(--text);
                }
        
                .page-toc ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                    columns: 2;
                }
        
                .page-toc a {
                    display: block;
                    color: var(--green);
                    text-decoration: none;
                    padding: 6px 0;
                    font-weight: 600;
                    font-size: .97rem;
                }
        
                .page-toc a:hover {
                    text-decoration: underline;
                }
        
                .stat-band {
                    background: var(--green-dk);
                    color: #fff;
                    border-radius: 18px;
                    padding: 40px 20px;
                }
        
                .stat-band .num {
                    font-weight: 800;
                    font-size: clamp(1.6rem, 3vw, 2.3rem);
                    color: #fff;
                }
        
                .stat-band .lbl {
                    font-size: .92rem;
                    color: rgba(255, 255, 255, .8);
                    margin-top: 4px;
                }
        
                .legal-meta {
                    background: var(--light);
                    border-left: 4px solid var(--orange);
                    border-radius: 0 8px 8px 0;
                    padding: 14px 20px;
                    color: var(--muted);
                    font-size: .96rem;
                    margin-bottom: 30px;
                }
        
                @media (max-width:600px) {
                    .page-toc ul {
                        columns: 1;
                    }
                }
