
:root{
  --cream:#FAF8F3;
  --cream-alt:#F2EBDA;
  --white:#FFFFFF;
  --charcoal:#1C1810;
  --charcoal-soft:#2B2519;
  --body-text:#55503F;
  --gold:#C9971E;
  --gold-light:#E8C572;
  --gold-dark:#9A6F0F;
  --line:rgba(28,24,16,.12);
  --whatsapp:#25D366;
  --radius:14px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:.001ms !important; transition-duration:.001ms !important;}
}
body{
 
  font-family: "Poppins", sans-serif;
  color:var(--body-text);
  background:var(--cream);
  overflow-x:hidden;
}
h1,h2,h3,h4,.display-font{

  font-family: "Poppins", sans-serif;
  color:var(--charcoal);
  font-weight:700;
}
a{ text-decoration:none; }
.eyebrow{
  font-size:.76rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold-dark);
  font-weight:700;
}
.section-pad{ padding:88px 0; }
@media (max-width:767px){ .section-pad{ padding:56px 0; } }
.bg-alt{ background:var(--cream-alt); }
.bg-dark{ background:var(--charcoal); color:rgba(250,248,243,.78); }
.bg-dark h2, .bg-dark h3, .bg-dark h4{ color:var(--white); }
.bg-dark .eyebrow{ color:var(--gold-light); }

/* ---------- TOP UTILITY BAR ---------- */
.topbar{
  background:var(--charcoal);
  color:rgba(250,248,243,.85);
  font-size:.76rem;
  letter-spacing:.05em;
  padding:8px 0;
}
.topbar a{ color:rgba(250,248,243,.85); }
.topbar a:hover{ color:var(--gold-light); }
.topbar .authorized{ color:var(--gold-light); font-weight:700; }

/* ---------- NAVBAR ---------- */
.navbar{
  background:var(--white);
  border-bottom:1px solid var(--line);
  padding:14px 0;
  transition:padding .25s ease, box-shadow .25s ease;
}
.navbar.scrolled{ padding:8px 0; box-shadow:0 8px 24px rgba(28,24,16,.06); }
.navbar-brand img{ height:50px; transition:height .25s ease; }
.navbar.scrolled .navbar-brand img{ height:40px; }
.nav-link{

  font-family: "Poppins", sans-serif;
  font-size:.9rem;
  font-weight:600;
  color:var(--charcoal) !important;
  margin:0 8px;
  position:relative;
}
.nav-link::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-2px; height:2px;
  background:var(--gold); transform:scaleX(0); transform-origin:left;
  transition:transform .25s ease;
}
.nav-link:hover::after,.nav-link.active::after{ transform:scaleX(1); }
.nav-link.active{ color:var(--gold-dark) !important; }

.btn-gold{
  background:var(--gold);
  color:var(--charcoal);
  border:none;

  font-family: "Poppins", sans-serif;
  font-weight:700;
  font-size:.88rem;
  padding:11px 26px;
  border-radius:6px;
  transition:all .2s ease;
}
.btn-gold:hover{ background:var(--gold-dark); color:#fff; transform:translateY(-2px); box-shadow:0 12px 26px rgba(154,111,15,.28); }
.btn-dark{
  background:var(--charcoal);
  color:var(--white);
  border:none;

  font-family: "Poppins", sans-serif;
  font-weight:700;
  font-size:.88rem;
  padding:11px 26px;
  border-radius:6px;
  transition:all .2s ease;
}
.btn-dark:hover{ background:#000; color:#fff; transform:translateY(-2px); }
.btn-outline-dark2{
  border:1.5px solid var(--charcoal);
  color:var(--charcoal);

  font-family: "Poppins", sans-serif;
  font-weight:700;
  font-size:.88rem;
  padding:11px 26px;
  border-radius:6px;
  transition:all .2s ease;
}
.btn-outline-dark2:hover{ background:var(--charcoal); color:#fff; }
.btn-whatsapp{
  background:var(--whatsapp);
  color:#fff;
  border:none;

  font-family: "Poppins", sans-serif;
  font-weight:700;
  font-size:.88rem;
  padding:11px 24px;
  border-radius:6px;
  transition:all .2s ease;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-whatsapp:hover{ background:#1DA851; color:#fff; transform:translateY(-2px); }

/* ---------- HERO ---------- */
.hero-bg {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;

    background-image: url('images/steel.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 6, 8, 0.97) 0%,
            rgba(5, 6, 8, 0.90) 35%,
            rgba(5, 6, 8, 0.55) 62%,
            rgba(5, 6, 8, 0.20) 100%
        );
    z-index: 1;
}

.hero-bg .container {
    z-index: 2;
}

.hero-bg h1 {
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.98;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    margin: 25px 0 18px;
}

.hero-bg h1 span {
    display: block;
    color: #e8c572;
}

.hero-bg .gold-sub {
    color: #e8c572;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-bg .lead-text {
    max-width: 700px;
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.75;
}

/* Badge */
.hero-bg .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 17px;
    border: 1px solid rgba(232,197,114,.7);
    border-radius: 50px;
    color: #fff;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(6px);
    font-size: 14px;
    font-weight: 600;
}

.hero-bg .badge-pill i {
    color: #e8c572;
}

/* Buttons */
.hero-bg .btn-gold {
    background: linear-gradient(135deg, #f0cc72, #a87917);
    color: #111;
    border: none;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(190,140,40,.25);
    transition: .3s ease;
}

.hero-bg .btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(190,140,40,.4);
}

.hero-bg .btn-whatsapp {
    background: #19a852;
    color: #fff;
    border: none;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 700;
    transition: .3s ease;
}

.hero-bg .btn-whatsapp:hover {
    background: #128c43;
    transform: translateY(-3px);
}

/* Feature Boxes */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    max-width: 850px;
    border: 1px solid rgba(232,197,114,.45);
    border-radius: 12px;
    background: rgba(5,5,5,.58);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.hero-feature {
    flex: 1 1 180px;
    min-height: 78px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(232,197,114,.25);
}

.hero-feature:last-child {
    border-right: 0;
}

.hero-feature > i {
    font-size: 27px;
    color: #e8c572;
}

.hero-feature strong {
    display: block;
    color: #fff;
    font-size: 14px;
}

.hero-feature small {
    display: block;
    color: rgba(255,255,255,.62);
    font-size: 11px;
    margin-top: 3px;
}

/* Mobile */
@media (max-width: 991px) {

    .hero-bg {
        min-height: 800px;
        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5,6,8,.96),
                rgba(5,6,8,.78)
            );
    }

    .hero-bg h1 {
        font-size: 48px;
    }

    .hero-bg .gold-sub {
        font-size: 19px;
    }

    .hero-features {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {

    .hero-bg {
        min-height: 850px;
        padding: 80px 0 50px;
        background-position: 65% center;
    }

    .hero-bg h1 {
        font-size: 39px;
        letter-spacing: -1px;
    }

    .hero-bg .lead-text {
        font-size: 15px;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-feature {
        border-right: 1px solid rgba(232,197,114,.25);
        border-bottom: 1px solid rgba(232,197,114,.25);
    }

    .hero-feature:nth-child(2) {
        border-right: 0;
    }

    .hero-feature:nth-child(3),
    .hero-feature:nth-child(4) {
        border-bottom: 0;
    }

    .hero-feature > i {
        font-size: 22px;
    }
}
.hero{
  position:relative;
  padding:150px 0 70px;
  background:
    white;
  overflow:hidden;
}

.badge-pill{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid var(--gold);
  color:var(--gold-dark);
  background:rgba(201,151,30,.08);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  padding:8px 16px;
  border-radius:30px;
}
.hero h1{
  font-size:clamp(2.4rem, 5vw, 4rem);
  line-height:1.05;
  margin:20px 0 8px;
}
.hero .gold-sub{

  font-family: "Poppins", sans-serif;
  font-weight:700;
  color:var(--gold-dark);
  font-size:clamp(1.05rem, 2vw, 1.4rem);
  margin-bottom:18px;
}
.hero p.lead-text{ max-width:560px; font-size:1.05rem; }

.hero-visual svg{ position:absolute; inset:0; width:100%; height:100%; }
.hero-visual .visual-label{
  position:absolute; bottom:20px; left:20px;
  background:rgba(250,248,243,.95);
  color:var(--charcoal);

  font-family: "Poppins", sans-serif;
  font-weight:700;
  font-size:.78rem;
  padding:8px 14px;
  border-radius:6px;
}

/* ---------- QUICK FACTS STRIP ---------- */
.facts-strip{
  background:var(--charcoal);
  padding:38px 0;
}
.fact-item{ text-align:center; padding:6px 16px; border-left:1px solid rgba(250,248,243,.14); }
.fact-item:first-child{ border-left:none; }
.fact-item .fact-title{

  font-family: "Poppins", sans-serif;
  color:var(--gold-light);
  font-weight:700;
  font-size:1.1rem;
  letter-spacing:.02em;
}
.fact-item .fact-label{
  font-size:.72rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(250,248,243,.6);
  margin-top:4px;
}

/* ---------- PRODUCTS BENTO ---------- */
.bento-card{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  color:#fff;
  min-height:230px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:22px;
  background:linear-gradient(155deg, #2B2519, #1C1810);
  transition:transform .25s ease, box-shadow .25s ease;
}
.bento-card.big{ min-height:480px; }
.bento-card:hover{ transform:translateY(-5px); box-shadow:0 20px 40px rgba(28,24,16,.18); }
.bento-card .pattern{
  position:absolute; inset:0; opacity:.5;
  background-image:repeating-linear-gradient(115deg, rgba(232,197,114,.10) 0 2px, transparent 2px 26px);
}
.bento-card .icon-tag{
  width:44px; height:44px; border-radius:10px;
  background:rgba(232,197,114,.16);
  border:1px solid rgba(232,197,114,.4);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-light);
  font-size:1.2rem;
  margin-bottom:14px;
  position:relative; z-index:1;
}
.bento-card h4{ color:#fff; margin-bottom:6px; position:relative; z-index:1; font-size:1.15rem; }
.bento-card p{ color:rgba(250,248,243,.72); font-size:.88rem; margin-bottom:10px; position:relative; z-index:1; }
.bento-card .chips{ position:relative; z-index:1; }
.bento-card .chips span{
  display:inline-block;
  font-size:.72rem; font-weight:600;
  color:var(--charcoal);
  background:var(--gold-light);
  padding:4px 10px; border-radius:20px;
  margin:0 6px 6px 0;
}
.bento-card .learn{
  position:relative; z-index:1;
  color:var(--gold-light); font-weight:700; font-size:.82rem;
  display:inline-flex; align-items:center; gap:6px;
}

/* ---------- MANUFACTURING ---------- */
.mfg-list-item{
  display:flex; gap:14px; padding:18px 0;
  border-bottom:1px solid var(--line);
}
.mfg-list-item:last-child{ border-bottom:none; }
.mfg-list-item .icon-box{
  width:46px; height:46px; min-width:46px;
  border-radius:10px;
  background:var(--cream-alt);
  color:var(--gold-dark);
  display:flex; align-items:center; justify-content:center;
  font-size:1.15rem;
}
.mfg-visual{
  display:grid; grid-template-columns:1fr 1fr; gap:14px; height:100%;
}
.mfg-visual .panel{
  border-radius:12px;
  min-height:150px;
  background:linear-gradient(160deg, var(--charcoal-soft), var(--charcoal));
  position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.mfg-visual .panel i{ color:var(--gold-light); font-size:2rem; opacity:.85; }
.mfg-visual .panel.alt{ background:linear-gradient(160deg,#E8C572,#C9971E); }
.mfg-visual .panel.alt i{ color:var(--charcoal); }

/* ---------- WHY US ---------- */
.why-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px 26px;
  height:100%;
  transition:transform .25s ease, box-shadow .25s ease;
}
.why-card:hover{ transform:translateY(-5px); box-shadow:0 18px 36px rgba(28,24,16,.08); }
.why-card .icon-box{
  width:50px; height:50px; border-radius:10px;
  background:var(--cream-alt);
  color:var(--gold-dark);
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; margin-bottom:16px;
}

/* ---------- PROBLEM / SOLUTION ---------- */
.ps-card{
  border-radius:var(--radius);
  padding:32px 30px;
  height:100%;
}
.ps-card.problem{ background:var(--white); border:1px solid var(--line); }
.ps-card.solution{ background:var(--charcoal); color:rgba(250,248,243,.85); }
.ps-card.solution h3{ color:#fff; }
.ps-list{ list-style:none; padding:0; margin:16px 0 0; }
.ps-list li{ display:flex; gap:10px; margin-bottom:12px; font-size:.94rem; }
.ps-card.problem .ps-list i{ color:#C24B3F; }
.ps-card.solution .ps-list i{ color:#5FBF7A; }

/* ---------- FAQ ---------- */
.accordion-item{
  background:transparent;
  border:1px solid rgba(250,248,243,.14);
  border-radius:10px !important;
  margin-bottom:12px;
  overflow:hidden;
}
.accordion-button{
  background:rgba(250,248,243,.03);
  color:#fff;

  font-family: "Poppins", sans-serif;
  font-weight:600;
  font-size:.96rem;
  box-shadow:none !important;
}
.accordion-button:not(.collapsed){
  background:rgba(232,197,114,.10);
  color:var(--gold-light);
}
.accordion-button::after{ filter:invert(1); }
.accordion-body{
  color:rgba(250,248,243,.72);
  font-size:.92rem;
}

/* ---------- CONTACT ---------- */
.contact-info-item{ display:flex; gap:16px; align-items:flex-start; margin-bottom:24px; }
.contact-info-item .icon-circle{
  width:44px; height:44px; min-width:44px; border-radius:50%;
  background:var(--charcoal); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center; font-size:1rem;
}
.contact-info-item a{ color:var(--body-text); }
.contact-info-item a:hover{ color:var(--gold-dark); }
.contact-form-wrap{
  background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius); padding:32px;
}
.form-control,.form-select{
  border-radius:6px; border:1px solid var(--line); padding:11px 14px; font-size:.94rem;
}
.form-control:focus,.form-select:focus{
  border-color:var(--gold); box-shadow:0 0 0 .2rem rgba(201,151,30,.16);
}
label.form-label{
  font-size:.78rem; text-transform:uppercase; letter-spacing:.05em;
  color:var(--body-text); font-weight:700;
}
.map-frame{ border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); height:220px; }
.map-frame iframe{ width:100%; height:100%; border:0; }

/* ---------- CTA BANNER ---------- */
.cta-banner{
  background:linear-gradient(120deg, var(--gold-light), var(--gold));
  padding:64px 0;
  text-align:center;
}
.cta-banner h2{ color:var(--charcoal); }
.cta-banner p{ color:rgba(28,24,16,.75); max-width:560px; margin:0 auto 26px; }

/* ---------- FOOTER ---------- */
footer{ background:var(--charcoal); color:white; padding:56px 0 22px; }
footer img{ height:44px; margin-bottom:14px; }
footer h6{

  font-family: "Poppins", sans-serif; color:var(--gold-light);
  text-transform:uppercase; letter-spacing:.08em; font-size:.82rem; margin-bottom:18px;
}
footer a{ color:white; }
footer a:hover{ color:var(--gold-light); }
footer .foot-line{
  border-top:1px solid rgba(250,248,243,.12); margin-top:32px; padding-top:18px;
  font-size:.8rem; color:white;
}

.divider-line{ width:60px; height:3px; background:var(--gold); border-radius:3px; margin:12px 0 20px; }
.center .divider-line{ margin-left:auto; margin-right:auto; }

.reveal{ opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

.back-to-top{
  position:fixed; right:22px; bottom:88px; width:46px; height:46px; border-radius:50%;
  background:var(--charcoal); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center; font-size:1.1rem; z-index:999;
  opacity:0; visibility:hidden; transform:translateY(10px); transition:all .3s ease;
  box-shadow:0 10px 26px rgba(28,24,16,.3);
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }

.whatsapp-float{
  position:fixed; right:22px; bottom:22px; width:52px; height:52px; border-radius:50%;
  background:var(--whatsapp); color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; z-index:999; box-shadow:0 10px 26px rgba(37,211,102,.4);
  transition:transform .2s ease;
}
.whatsapp-float:hover{ transform:scale(1.08); color:#fff; }
/* =========================================
   PREMIUM ANIMATED FACTS
========================================= */


.product-range-section {
    position: relative;
    background: #f6f7f8;
    padding: 95px 0;
    color: #151515;
    overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.product-heading {
    max-width: 850px;
    margin-bottom: 42px;
}

.product-eyebrow {
    color: #b08a20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.product-heading h2 {
    margin: 0;
    color: #161616;
    font-size: 50px;
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -2px;
}

.product-heading h2 span {
    display: block;
    color: #555;
}

.product-heading p {
    max-width: 650px;
    margin: 20px 0 0;
    color: #6d6d6d;
    font-size: 14px;
    line-height: 1.7;
}

.gold-divider {
    width: 55px;
    height: 3px;
    margin-top: 24px;
    background: #c9a227;
}


/* =========================================
   BENTO GRID
========================================= */

.product-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 292px 292px 292px;
    gap: 14px;
}


/* =========================================
   PRODUCT CARD
========================================= */

.bento-product-card {
    position: relative;
    min-height: 278px;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e3e3e3;
    box-shadow:
        0 8px 30px rgba(0,0,0,0.06);
    isolation: isolate;
}


/* BIG CARD */

.bento-big {
    grid-row: span 2;
    min-height: 424px;
}


/* BOTTOM CARD */

.bento-bottom {
    grid-column: 1;
}


/* =========================================
   IMAGE
========================================= */

.bento-product-card > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -2;

    transition:
        transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.bento-product-card:hover > img {
    transform: scale(1.06);
}


/* =========================================
   LIGHT IMAGE OVERLAY
========================================= */

.bento-overlay {
    position: absolute;
    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.02) 10%,
            rgba(255,255,255,0.15) 35%,
            rgba(0,0,0,0.78) 100%
        );
}


/* =========================================
   CARD CONTENT
========================================= */

.bento-content {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 18px;
}


.bento-number {
    display: block;

    color: #e0b52d;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 3px;
}


.bento-category {
    display: block;

    color: rgba(255,255,255,0.72);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.5px;

    margin-bottom: 4px;
}


.bento-content h3 {
    margin: 0 0 6px;

    color: #fff;

    font-size: 19px;
    line-height: 1.15;

    font-weight: 750;
}


.bento-big .bento-content h3 {
    font-size: 27px;
}


.bento-content h3 span {
    color: #e2bd4c;
    font-weight: 500;
}


.bento-content p {
    max-width: 470px;

    margin: 0 0 9px;

    color: rgba(255,255,255,0.78);

    font-size: 10px;
    line-height: 1.45;
}


/* =========================================
   PRODUCT LIST
========================================= */

.bento-products {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 12px;

    margin-bottom: 9px;
}


.bento-products span {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: rgba(255,255,255,0.9);

    font-size: 9px;
}


.bento-products i {
    color: #e0b52d;
    font-size: 10px;
}


/* =========================================
   LEARN MORE
========================================= */

.bento-content a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #e0b52d;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    transition: gap 0.3s ease;
}

.bento-content a i {
    font-size: 11px;
}

.bento-product-card:hover .bento-content a {
    gap: 12px;
}


/* =========================================
   BOTTOM CTA
========================================= */

.products-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 32px;
    padding: 21px 24px;

    background: #ffffff;

    border: 1px solid #e3e3e3;

    border-radius: 12px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.05);
}


.products-bottom span {
    display: block;

    color: #777;

    font-size: 11px;

    margin-bottom: 3px;
}


.products-bottom strong {
    color: #222;

    font-size: 14px;
}


.product-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 11px 21px;

    background: #d1aa2b;

    color: #fff;

    border-radius: 50px;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}


.product-quote-btn:hover {
    background: #111;
    color: #fff;

    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .product-range-section {
        padding: 75px 0;
    }

    .product-heading h2 {
        font-size: 42px;
    }

    .product-bento-grid {
        grid-template-rows: 200px 200px 200px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .product-range-section {
        padding: 60px 0;
    }

    .product-heading {
        margin-bottom: 30px;
    }

    .product-heading h2 {
        font-size: 34px;
        line-height: 1;
        letter-spacing: -1px;
    }

    .product-heading p {
        font-size: 13px;
    }

    .product-bento-grid {
        display: grid;

        grid-template-columns: 1fr;
        grid-template-rows: none;

        gap: 12px;
    }

    .bento-product-card,
    .bento-big,
    .bento-bottom {
        grid-column: auto;
        grid-row: auto;

        min-height: 280px;
    }

    .bento-big {
        min-height: 340px;
    }

    .bento-big .bento-content h3 {
        font-size: 24px;
    }

    .bento-content h3 {
        font-size: 20px;
    }

    .products-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-quote-btn {
        width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .product-heading h2 {
        font-size: 29px;
    }

    .bento-product-card {
        min-height: 260px;
    }

    .bento-big {
        min-height: 310px;
    }

    .bento-content {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

}.mfg-panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.mfg-visual .panel {
    overflow: hidden;
}.testimonials-section {
    background: #f7f8fc;
    padding: 100px 0 115px;
    position: relative;
    overflow: hidden;
}

.testimonial-heading {
    max-width: 700px;
    margin: 0 auto 55px;
}

.testimonial-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #c89b18;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.testimonial-heading h2 {
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
}

.testimonial-heading p {
    color: #777;
    font-size: 15px;
    margin: 0;
}


/* CARD */
.testimonial-card {
    position: relative;
    background: #fff;
    min-height: 295px;
    padding: 30px;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,.045);
    transition: all .35s ease;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
    border-color: rgba(200,155,24,.35);
}


/* STARS */
.stars {
    color: #d5a623;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 22px;
}


/* QUOTE */
.quote-icon {
    position: absolute;
    right: 25px;
    top: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff8df;
    color: #c99c20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}


/* TEXT */
.testimonial-text {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
    min-height: 75px;
}


/* CLIENT */
.client-info {
    display: flex;
    align-items: center;
    gap: 13px;
    border-top: 1px solid #eee;
    padding-top: 18px;
}

.client-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #111;
    color: #dcb126;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.client-info h5 {
    margin: 0 0 3px;
    font-size: 14px;
    font-weight: 800;
    color: #111;
}

.client-info span {
    font-size: 11px;
    color: #888;
}


/* ARROWS */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111 !important;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transition: .3s;
}

.testimonial-arrow:hover {
    background: #d3a621 !important;
}

.testimonial-arrow i {
    font-size: 18px;
}

.testimonial-arrow.prev {
    left: -65px;
}

.testimonial-arrow.next {
    right: -65px;
}


/* DOTS */
.testimonial-dots {
    position: static;
    margin: 40px 0 0;
    gap: 7px;
}

.testimonial-dots button {
    width: 8px !important;
    height: 8px !important;
    border: 0 !important;
    border-radius: 50%;
    background: #ccc !important;
    opacity: 1 !important;
    padding: 0 !important;
}

.testimonial-dots button.active {
    width: 25px !important;
    border-radius: 10px;
    background: #d3a621 !important;
}


/* RESPONSIVE */
@media (max-width: 1200px) {
    .testimonial-arrow.prev {
        left: 5px;
    }

    .testimonial-arrow.next {
        right: 5px;
    }
}

@media (max-width: 991px) {
    .testimonial-card {
        min-height: auto;
    }

    .testimonial-text {
        min-height: auto;
    }

    .testimonial-arrow {
        display: none;
    }
}

@media (max-width: 575px) {
    .testimonials-section {
        padding: 70px 0 85px;
    }

    .testimonial-heading {
        margin-bottom: 35px;
    }

    .testimonial-card {
        padding: 25px;
    }
}.about-section {
    padding: 116px 0;
    background: #fff;
    overflow: hidden;
}

.about-image-wrap {
    position: relative;
    height: 560px;
    padding-right: 45px;
    padding-bottom: 35px;
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 25px 60px rgba(0,0,0,.14);
}

.about-experience {
    position: absolute;
    left: -25px;
    bottom: 65px;
    width: 155px;
    height: 155px;
    background: #111;
    color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
    border: 3px solid #d3a621;
}

.about-experience strong {
    color: #d3a621;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
}

.about-experience span {
    margin-top: 8px;
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
}

.about-image-tag {
    position: absolute;
    right: 0;
    top: 35px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    font-size: 13px;
    font-weight: 700;
    color: #222;
}

.about-image-tag i {
    color: #d3a621;
    font-size: 20px;
}


/* CONTENT */
.about-content {
    padding-left: 25px;
}

.about-content h2 {
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    color: #111;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.about-content h2 span {
    color: #c49a1c;
}

.about-content > p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.about-intro {
    font-size: 16px !important;
    color: #444 !important;
    font-weight: 500;
}


/* FEATURES */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 25px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.about-feature-icon {
    min-width: 43px;
    width: 43px;
    height: 43px;
    border-radius: 10px;
    background: #fff8df;
    color: #c49a1c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.about-feature h4 {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    margin: 0 0 4px;
}

.about-feature p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #888;
}


/* STATS */
.about-stats {
    display: flex;
    gap: 0;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #e9e9e9;
}

.about-stat {
    flex: 1;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #e5e5e5;
}

.about-stat:last-child {
    border-right: 0;
}

.about-stat strong {
    display: block;
    color: #111;
    font-size: 26px;
    font-weight: 800;
}

.about-stat span {
    display: block;
    color: #888;
    font-size: 11px;
    margin-top: 3px;
}


/* RESPONSIVE */
@media (max-width: 991px) {

    .about-section {
        padding: 80px 0;
    }

    .about-content {
        padding-left: 0;
    }

    .about-image-wrap {
        height: 480px;
        padding-right: 25px;
    }

    .about-image-tag {
        right: 10px;
    }
}

@media (max-width: 575px) {

    .about-image-wrap {
        height: 400px;
        padding-right: 15px;
    }

    .about-experience {
        left: 5px;
        bottom: 30px;
        width: 125px;
        height: 125px;
    }

    .about-experience strong {
        font-size: 34px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        gap: 10px;
    }

    .about-stat {
        padding-right: 10px;
        margin-right: 5px;
    }

    .about-stat strong {
        font-size: 21px;
    }
}.mission-vision-section {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

/* soft background decoration */
.mission-vision-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #faf7ec;
    top: -220px;
    left: -180px;
}

.mission-vision-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: #faf7ec;
    bottom: -200px;
    right: -150px;
}

/* HEADING */
.mv-heading {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 50px;
}

.mv-heading .eyebrow {
    color: #c49a1c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.mv-heading h2 {
    color: #111;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
}

.mv-heading h2 span {
    color: #c49a1c;
}

.mv-heading p {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* CARD */
.mv-card {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 38px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,.06);
    transition: all .35s ease;
}

.mv-card:hover {
    transform: translateY(-7px);
    border-color: #d3a621;
    box-shadow: 0 20px 50px rgba(0,0,0,.10);
}


/* TOP */
.mv-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eeeeee;
}

.mv-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 14px;
    background: #fff8df;
    color: #c49a1c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.mv-label {
    display: block;
    color: #999;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.mv-card h3 {
    color: #111;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}


/* DESCRIPTION */
.mv-description {
    color: #666;
    font-size: 13px;
    line-height: 1.8;
    margin: 24px 0 28px;
}


/* LIST */
.mv-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mv-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.mv-number {
    min-width: 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e3c968;
    background: #fffdf5;
    color: #b58a0c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

.mv-item h4 {
    color: #222;
    font-size: 13px;
    font-weight: 800;
    margin: 2px 0 5px;
}

.mv-item p {
    color: #777;
    font-size: 11.5px;
    line-height: 1.65;
    margin: 0;
}


/* BOTTOM PROMISE */
.mv-bottom {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 45px auto 0;
    padding: 18px 25px;
    background: #fffdf5;
    border: 1px solid #ead98d;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.mv-bottom-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #d3a621;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.mv-bottom strong {
    display: block;
    color: #222;
    font-size: 13px;
    margin-bottom: 3px;
}

.mv-bottom p {
    color: #777;
    font-size: 12px;
    margin: 0;
}


/* RESPONSIVE */
@media (max-width: 767px) {

    .mission-vision-section {
        padding: 70px 0;
    }

    .mv-card {
        padding: 27px 22px;
    }

    .mv-card h3 {
        font-size: 24px;
    }

    .mv-heading h2 {
        font-size: 36px;
    }

    .mv-bottom {
        justify-content: flex-start;
    }
}.why-section {
    position: relative;
    padding: 105px 0;
    background: #fff;
    overflow: hidden;
}

.why-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #faf7ec;
    top: -250px;
    right: -200px;
}


/* HEADING */
.why-heading {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 55px;
}

.why-heading .eyebrow {
    color: #c49a1c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.3px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.why-heading h2 {
    color: #111;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.why-heading h2 span {
    color: #c49a1c;
}

.why-heading p {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* CARD */
.why-card {
    position: relative;
    height: 100%;
    padding: 28px;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 17px;
    box-shadow: 0 8px 30px rgba(0,0,0,.045);
    transition: all .35s ease;
    overflow: hidden;
}

.why-card::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fffaf0;
    right: -25px;
    bottom: -30px;
    transition: .35s;
}

.why-card:hover {
    transform: translateY(-7px);
    border-color: #d5b34a;
    box-shadow: 0 18px 45px rgba(0,0,0,.09);
}

.why-card:hover::after {
    transform: scale(1.5);
}


/* TOP */
.why-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: #fff8df;
    color: #c49a1c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.why-top > span {
    color: #d2d2d2;
    font-size: 13px;
    font-weight: 800;
}


/* CONTENT */
.why-card h3 {
    position: relative;
    z-index: 1;
    color: #151515;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
}

.why-card p {
    position: relative;
    z-index: 1;
    color: #777;
    font-size: 12.5px;
    line-height: 1.75;
    margin: 0;
}


/* GENUINE */
.genuine-card {
    border-color: #eadb9c;
    background: #fffefa;
}

.mtc-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    padding: 7px 12px;
    border-radius: 30px;
    background: #fff4c9;
    color: #98740a;
    font-size: 10px;
    font-weight: 800;
}

.mtc-badge i {
    font-size: 12px;
}


/* TRUST STRIP */
.why-trust-strip {
    position: relative;
    z-index: 2;
    margin-top: 45px;
    padding: 20px 25px;
    border: 1px solid #eadb9c;
    background: #fffdf5;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #d3a621;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.why-trust-strip strong {
    display: block;
    color: #222;
    font-size: 13px;
    margin-bottom: 3px;
}

.why-trust-strip p {
    color: #777;
    font-size: 11.5px;
    margin: 0;
}

.trust-years {
    margin-left: auto;
    padding-left: 30px;
    border-left: 1px solid #e3d8ad;
    text-align: right;
}

.trust-years strong {
    color: #c49a1c;
    font-size: 20px;
}

.trust-years span {
    display: block;
    color: #888;
    font-size: 10px;
}


/* RESPONSIVE */
@media (max-width: 767px) {

    .why-section {
        padding: 75px 0;
    }

    .why-heading {
        margin-bottom: 38px;
    }

    .why-card {
        padding: 24px;
    }

    .why-trust-strip {
        align-items: flex-start;
    }

    .trust-years {
        display: none;
    }
}
/* =========================================
   TOPBAR - DESKTOP
========================================= */

.topbar {
    background: #111111;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.topbar .container {
    min-height: 34px;
}

.topbar .authorized {
    color: #d4af37;
    font-weight: 700;
}

.topbar a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.topbar a:hover {
    color: #d4af37;
}

.topbar i {
    color: #d4af37;
}


/* =========================================
   MOBILE TOPBAR
========================================= */

@media (max-width: 767px) {

    .topbar {
        padding: 8px 12px;
        font-size: 10px;
        line-height: 1.5;
    }

    .topbar .container {
        display: flex !important;
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        text-align: center;
    }

    /* Company information */
    .topbar .container > div:first-child {
        width: 100%;
        line-height: 1.5;
    }

    /* Phone section */
    .topbar .container > div:last-child {
        width: 100%;
        justify-content: center !important;
        gap: 0 !important;
    }

    .topbar .container > div:last-child a {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;

        padding: 3px 12px;

        color: #ffffff;
        font-size: 11px;
        font-weight: 600;

        border: 1px solid rgba(212, 175, 55, 0.35);
        border-radius: 20px;

        background: rgba(212, 175, 55, 0.06);
    }

    .topbar .container > div:last-child a i {
        font-size: 10px;
    }

}/* ================= ABOUT PAGE ================= */

.about-page {
    background: #fff;
    color: #171717;
    overflow: hidden;
}

/* Breadcrumb */

.about-breadcrumb {
    background: #faf7f0;
    border-bottom: 1px solid #eadfca;
}

.breadcrumb-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 14px;
}

.breadcrumb-inner span {
    color: #777;
}

.breadcrumb-inner i {
    color: #c49a45;
    font-size: 12px;
}

.breadcrumb-inner strong {
    color: #b48632;
}


/* About Intro */

.about-intro {
    padding: 0px 0;
    position: relative;
}

.about-intro:before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -180px;
    top: 20px;
    border-radius: 50%;
    background: rgba(196,154,69,.06);
}

.about-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b48632;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-label span {
    width: 35px;
    height: 2px;
    background: #c49a45;
    display: block;
}

.about-intro h1 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 28px;
}

.about-intro h1 span {
    color: #b48632;
    display: block;
}

.about-main-text {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    max-width: 850px;
    margin-bottom: 15px;
}


/* Features */

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.about-feature {
    display: flex;
    gap: 14px;
    padding: 17px;
    border: 1px solid #eee5d5;
    background: #fff;
    transition: .3s ease;
}

.about-feature:hover {
    border-color: #c49a45;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #faf4e7;
    color: #b48632;
    font-size: 20px;
}

.about-feature h4 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
}

.about-feature p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}


/* Highlight Card */

.about-highlight-card {
    min-height: 560px;
    position: relative;
    padding: 45px;
    overflow: hidden;
    background: linear-gradient(145deg, #171717, #292929);
    color: #fff;
    box-shadow: 0 30px 70px rgba(0,0,0,.15);
}

.about-highlight-card:after {
    content: "";
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(196,154,69,.35);
    pointer-events: none;
}

.gold-ring {
    position: absolute;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(196,154,69,.25);
    border-radius: 50%;
    right: -100px;
    top: 100px;
}

.highlight-top {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    color: #c49a45;
    letter-spacing: 2px;
    font-size: 12px;
}

.highlight-top strong {
    font-size: 16px;
}

.highlight-content {
    position: relative;
    z-index: 2;
    margin-top: 75px;
}

.big-stat {
    display: flex;
    flex-direction: column;
}

.big-stat strong {
    color: #d4af5d;
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
}

.big-stat span {
    margin-top: 8px;
    color: #d8d8d8;
    font-size: 14px;
}

.stat-line {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.12);
    margin: 28px 0;
}

.steel-watermark {
    position: absolute;
    bottom: -20px;
    left: 20px;
    font-size: 90px;
    font-weight: 800;
    letter-spacing: 8px;
    color: rgba(255,255,255,.035);
}


/* ================= PURPOSE ================= */

.purpose-section {
    background: #faf8f3;
    padding: 105px 0;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 80px;
}

.center-label {
    justify-content: center;
}

.section-heading h2 {
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-heading h2 span {
    color: #b48632;
}

.section-heading p {
    color: #707070;
    line-height: 1.8;
}


/* Purpose Block */

.purpose-block {
    margin-bottom: 90px;
}

.purpose-title {
    margin-bottom: 35px;
    max-width: 750px;
}

.purpose-title > span {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #b48632;
}

.purpose-title h3 {
    font-size: 40px;
    margin: 8px 0 12px;
}

.purpose-title p {
    color: #6d6d6d;
    line-height: 1.8;
}


/* Cards */

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.purpose-card {
    position: relative;
    background: #fff;
    border: 1px solid #ebe3d4;
    padding: 30px 25px;
    min-height: 270px;
    transition: .35s ease;
    overflow: hidden;
}

.purpose-card:hover {
    transform: translateY(-8px);
    border-color: #c49a45;
    box-shadow: 0 20px 40px rgba(0,0,0,.07);
}

.purpose-card > span {
    position: absolute;
    right: 18px;
    top: 15px;
    color: #d9c49a;
    font-size: 32px;
    font-weight: 700;
}

.purpose-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #faf4e7;
    color: #b48632;
    font-size: 22px;
    margin-bottom: 25px;
}

.purpose-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.purpose-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* Vision */

.vision-block {
    padding-top: 20px;
}


/* ================= PROMISE ================= */

.promise-section {
    padding: 0 0 100px;
    background: #faf8f3;
}

.promise-box {
    background: #181818;
    padding: 55px 60px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    overflow: hidden;
    border-left: 4px solid #c49a45;
}

.promise-box:after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(196,154,69,.2);
    border-radius: 50%;
    right: -100px;
    top: -130px;
}

.promise-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196,154,69,.12);
    color: #d4af5d;
    font-size: 25px;
}

.promise-box > div:nth-child(2) {
    flex: 1;
}

.promise-box span {
    color: #c49a45;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.promise-box h2 {
    color: #fff;
    font-size: 28px;
    line-height: 1.4;
    margin: 8px 0 0;
}

.promise-box h2 strong {
    color: #d4af5d;
}

.promise-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    color: #171717;
    background: #d4af5d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

.promise-btn:hover {
    background: #fff;
    color: #171717;
}

.promise-btn i {
    font-size: 16px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .about-intro {
        padding: 75px 0;
    }

    .about-highlight-card {
        min-height: 480px;
    }

    .purpose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promise-box {
        padding: 40px;
        flex-wrap: wrap;
    }

    .promise-btn {
        margin-left: 85px;
    }
}


@media (max-width: 767px) {

    .about-breadcrumb {
        padding: 0 10px;
    }

    .breadcrumb-inner {
        min-height: 55px;
        font-size: 13px;
    }

    .about-intro {
        padding: 60px 0;
    }

    .about-intro h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .about-main-text {
        font-size: 14px;
        line-height: 1.75;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-highlight-card {
        min-height: 450px;
        padding: 35px;
    }

    .big-stat strong {
        font-size: 45px;
    }

    .purpose-section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 55px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .purpose-grid {
        grid-template-columns: 1fr;
    }

    .purpose-card {
        min-height: auto;
    }

    .purpose-title h3 {
        font-size: 32px;
    }

    .promise-section {
        padding-bottom: 70px;
    }

    .promise-box {
        padding: 35px 25px;
        display: block;
    }

    .promise-icon {
        margin-bottom: 20px;
    }

    .promise-box h2 {
        font-size: 24px;
    }

    .promise-btn {
        margin: 25px 0 0;
    }
}/* ================= ABOUT BREADCRUMB ================= */

.about-breadcrumb {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.52)
        ),
        url("images/bg.webp");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.about-breadcrumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(196, 154, 69, 0.10),
        transparent 55%
    );
    pointer-events: none;
}

.breadcrumb-inner {
    position: relative;
    z-index: 2;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
}

.breadcrumb-inner::before {
    /* content: "ABOUT US"; */
    color: #d4af5d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 2px;
}

.breadcrumb-inner span,
.breadcrumb-inner strong {
    font-size: 15px;
}

.breadcrumb-inner span {
    color: rgba(255,255,255,.72);
}

.breadcrumb-inner i {
    color: #d4af5d;
    font-size: 12px;
}

.breadcrumb-inner strong {
    color: #fff;
}

/* Breadcrumb title */
.breadcrumb-inner span:first-of-type {
    margin-right: 8px;
}


/* Mobile */
@media (max-width: 767px) {

    .about-breadcrumb {
        min-height: 180px;
        background-position: center;
    }

    .breadcrumb-inner {
        min-height: 180px;
        padding: 30px 15px;
    }

    .breadcrumb-inner::before {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .breadcrumb-inner span,
    .breadcrumb-inner strong {
        font-size: 13px;
    }
}/* =========================================
   PRODUCTS SECTION
========================================= */

:root {
    --gold: #d4af5d;
    --gold-dark: #b8923e;
    --gold-light: #ead8a5;
    --black: #171717;
    --text: #333333;
    --light: #f8f8f7;
    --white: #ffffff;
}

.products-section {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

/* Soft background decoration */
.products-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: -300px;
    top: 100px;
    border: 1px solid rgba(212, 175, 93, 0.12);
    transform: rotate(45deg);
}

.products-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    bottom: 100px;
    border: 1px solid rgba(212, 175, 93, 0.12);
    transform: rotate(45deg);
}

.products-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   HEADING
========================================= */

.products-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.products-heading h2 {
    margin: 0;
    color: var(--black);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.products-heading h2 span {
    color: var(--gold-dark);
}

.products-heading p {
    max-width: 620px;
    margin: 18px auto 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   PRODUCT CARD
========================================= */

.product-card {
    height: 100%;
    background: var(--white);
    border: 1px solid #e9e3d6;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 18px 45px rgba(212, 175, 93, 0.18);
}


/* =========================================
   IMAGE
========================================= */

.product-img {
    position: relative;
    height: 235px;
    overflow: hidden;
    background: #eee;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.07);
}


/* Gold image overlay */

.product-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.35)
    );
}


/* =========================================
   ICON
========================================= */

.product-icon {
    position: absolute;
    z-index: 3;
    left: 20px;
    bottom: 24px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--gold);
    color: #fff;

    font-size: 19px;

    border: 4px solid #fff;

    box-shadow: 0 5px 15px rgba(212, 175, 93, 0.35);
}


/* =========================================
   CONTENT
========================================= */

.product-content {
    position: relative;
    padding: 40px 24px 25px;
}

.product-content h3 {
    margin: 0 0 10px;
    color: var(--black);
    font-size: 21px;
    font-weight: 700;
}

.product-content p {
    min-height: 65px;
    margin: 0 0 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   BUTTON
========================================= */

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 10px 17px;

    border-radius: 6px;

    background: var(--gold);
    color: #fff;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.product-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.product-btn:hover {
    background: var(--gold-dark);
    color: #fff;
}

.product-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   WIDE CARDS
========================================= */

.product-wide .product-img {
    height: 260px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .products-section {
        padding: 80px 0;
    }

    .products-heading h2 {
        font-size: 36px;
    }

    .product-img {
        height: 220px;
    }
}


@media (max-width: 767px) {

    .products-section {
        padding: 65px 0;
    }

    .products-heading {
        margin-bottom: 35px;
    }

    .products-heading h2 {
        font-size: 30px;
    }

    .products-heading p {
        font-size: 14px;
    }

    .section-tag {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .product-img,
    .product-wide .product-img {
        height: 220px;
    }

    .product-content {
        padding: 38px 20px 22px;
    }

    .product-content h3 {
        font-size: 19px;
    }
}


@media (max-width: 480px) {

    .products-heading h2 {
        font-size: 26px;
    }

    .product-img,
    .product-wide .product-img {
        height: 200px;
    }
}.mobile-name {
    display: none;
}

@media (max-width: 767px) {

    .desktop-name {
        display: none;
    }

    .mobile-name {
        display: inline-block;
        font-weight: 700;
    }

    /* Phone + Email completely hide on mobile */
    .contact-info {
        display: none !important;
    }

    .topbar {
        justify-content: center !important;
        text-align: center;
    }
}


/* =========================================
   PRODUCT DETAIL PAGE
========================================= */

.product-detail-page {
    background: #f8f8f6;
    padding-bottom: 80px;
    color: #292929;
}


/* =========================================
   HERO
========================================= */

.product-hero {
    position: relative;
    padding: 95px 0 90px;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82),
            rgba(0,0,0,.55)
        ),
        url("images/bg.webp") center/cover no-repeat;
    color: #fff;
}

.product-breadcrumb {
    font-size: 13px;
    margin-bottom: 20px;
    color: #e8e8e8;
}

.product-breadcrumb span {
    color: #d4af5d;
    margin: 0 9px;
}

.product-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin: 0 0 15px;
}

.hero-subtitle {
    max-width: 650px;
    font-size: 17px;
    color: #eee;
    margin-bottom: 30px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.hero-points i {
    color: #d4af5d;
    font-size: 18px;
}


/* =========================================
   MAIN BOX
========================================= */

.product-main-box {
    background: #fff;
    margin-top: -45px;
    position: relative;
    z-index: 5;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 12px 45px rgba(0,0,0,.08);
}


/* =========================================
   INTRO
========================================= */

.product-intro {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 35px;
    align-items: center;
}

.product-image {
    height: 340px;
    overflow: hidden;
    border-radius: 10px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.product-image:hover img {
    transform: scale(1.05);
}

.small-heading {
    color: #b18d3e;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
}

.product-about h2 {
    font-size: 30px;
    margin: 10px 0 15px;
    color: #222;
}

.product-about p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 10px;
}


/* =========================================
   QUICK INFO
========================================= */

.quick-info {
    margin-top: 25px;
    background: #fbf8ef;
    border: 1px solid #eadfca;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px;
    border-bottom: 1px solid #eadfca;
}

.quick-item:nth-child(odd) {
    border-right: 1px solid #eadfca;
}

.quick-item:nth-last-child(-n+2) {
    border-bottom: 0;
}

.quick-item > i {
    color: #d4af5d;
    font-size: 21px;
    width: 30px;
}

.quick-item strong {
    display: block;
    font-size: 13px;
    color: #a37e31;
    margin-bottom: 4px;
}

.quick-item span {
    font-size: 12px;
    color: #555;
}


/* =========================================
   TABS
========================================= */

.product-tabs {
    margin-top: 40px;
    display: flex;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.tab-btn {
    flex: 1;
    padding: 17px 12px;
    border: 0;
    border-right: 1px solid #e5e5e5;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.tab-btn:last-child {
    border-right: 0;
}

.tab-btn i {
    color: #d4af5d;
    margin-right: 7px;
}

.tab-btn:hover,
.tab-btn.active {
    background: #d4af5d;
    color: #fff;
}

.tab-btn:hover i,
.tab-btn.active i {
    color: #fff;
}


/* =========================================
   TAB CONTENT
========================================= */

.tab-content {
    display: none;
    padding: 40px 0 10px;
}

.tab-content.active {
    display: block;
    animation: fadeTab .4s ease;
}

@keyframes fadeTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.content-title i {
    color: #d4af5d;
    font-size: 20px;
}

.content-title h3 {
    margin: 0;
    font-size: 23px;
    color: #252525;
}


/* =========================================
   SPECIFICATION TABLE
========================================= */

.spec-table-wrap {
    overflow-x: auto;
}

.spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #dfc889;
    border-radius: 8px;
    overflow: hidden;
}

.spec-table th,
.spec-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
    font-size: 14px;
}

.spec-table th {
    width: 30%;
    background: #fbf8ef;
    color: #9a762d;
    font-weight: 700;
}

.spec-table td {
    color: #444;
    background: #fff;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
    border-bottom: 0;
}

.spec-table tr:hover td {
    background: #fffdf7;
}


/* =========================================
   APPLICATIONS
========================================= */

.application-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.application-list {
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 10px 20px;
}

.application-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 5px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #555;
}

.application-item:last-child {
    border-bottom: 0;
}

.application-item i {
    color: #d4af5d;
    font-size: 13px;
}


/* =========================================
   ADVANTAGES
========================================= */

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.advantage-card {
    padding: 25px 20px;
    background: #fbf8ef;
    border: 1px solid #eee2c8;
    border-radius: 10px;
    transition: .3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: #d4af5d;
    box-shadow: 0 10px 25px rgba(212,175,93,.15);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #d4af5d;
    color: #fff;
    margin-bottom: 18px;
}

.advantage-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.advantage-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================
   BRANDS
========================================= */

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.brand-box {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e4d5ad;
    background: #fbf8ef;
    border-radius: 8px;
    color: #a17b2e;
    font-size: 20px;
    font-weight: 700;
    transition: .3s;
}

.brand-box:hover {
    background: #d4af5d;
    color: #fff;
    transform: translateY(-4px);
}

.grade-note {
    margin-top: 25px;
    padding: 18px;
    background: #f7f7f7;
    display: flex;
    gap: 12px;
    align-items: center;
    border-left: 4px solid #d4af5d;
}

.grade-note i {
    color: #d4af5d;
}

.grade-note p {
    margin: 0;
    font-size: 13px;
    color: #555;
}


/* =========================================
   PACKAGING
========================================= */

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.packaging-card {
    text-align: center;
    padding: 35px 25px;
    background: #fbf8ef;
    border: 1px solid #eee1c6;
    border-radius: 10px;
}

.packaging-card > i {
    font-size: 30px;
    color: #d4af5d;
    margin-bottom: 15px;
}

.packaging-card h4 {
    margin-bottom: 10px;
}

.packaging-card p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   CTA
========================================= */

.product-cta {
    margin-top: 40px;
    padding: 25px 30px;
    border-radius: 10px;
    background: linear-gradient(
        100deg,
        #d4af5d,
        #b88e35
    );
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.cta-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.18);
    border-radius: 50%;
    font-size: 22px;
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    margin: 0 0 5px;
    font-size: 21px;
}

.cta-content p {
    margin: 0;
    font-size: 13px;
    opacity: .9;
    
}

.cta-btn {
    padding: 13px 22px;
    background: #fff;
    color: #a27c2d;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    transition: .3s;
}

.cta-btn i {
    margin-left: 7px;
}

.cta-btn:hover {
    background: #222;
    color: #fff;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .product-intro {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 300px;
    }

    .advantages-grid {
        grid-template-columns: 1fr 1fr;
    }

    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-hero h1 {
        font-size: 42px;
    }

}


@media (max-width: 767px) {

    .product-detail-page {
        padding-bottom: 40px;
    }

    .product-hero {
        padding: 65px 0 75px;
    }

    .product-hero h1 {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-points {
        gap: 15px;
        flex-direction: column;
    }

    .product-main-box {
        margin-top: -35px;
        padding: 20px 15px;
        border-radius: 10px;
    }

    .product-image {
        height: 240px;
    }

    .product-about h2 {
        font-size: 25px;
    }

    .quick-info {
        grid-template-columns: 1fr;
    }

    .quick-item:nth-child(odd) {
        border-right: 0;
    }

    .quick-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #eadfca;
    }

    .quick-item:last-child {
        border-bottom: 0;
    }

    /* Mobile Tabs */
    .product-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .tab-btn {
        border-bottom: 1px solid #e5e5e5;
        border-right: 1px solid #e5e5e5;
        padding: 14px 8px;
        font-size: 11px;
    }

    .tab-btn:last-child {
        grid-column: span 2;
    }

    .tab-content {
        padding-top: 30px;
    }

    .content-title h3 {
        font-size: 20px;
    }

    /* Table */
    .spec-table {
        min-width: 650px;
    }

    .spec-table th,
    .spec-table td {
        padding: 12px 15px;
        font-size: 12px;
    }

    .application-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .brand-grid {
        grid-template-columns: 1fr 1fr;
    }

    .packaging-grid {
        grid-template-columns: 1fr;
    }

    .product-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 20px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

}


@media (max-width: 480px) {

    .product-hero h1 {
        font-size: 30px;
    }

    .brand-grid {
        grid-template-columns: 1fr 1fr;
    }

    .brand-box {
        min-height: 70px;
        font-size: 17px;
    }

}

/* ================= MANUFACTURING SECTION ================= */

.manufacturing-section {
    padding: 90px 0;
    background: #fffdf8;
    overflow: hidden;
}

.manufacturing-wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 55px;
    align-items: center;
}


/* ================= LEFT CONTENT ================= */

.manufacturing-content {
    padding-right: 15px;
}

.manufacturing-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #b88a16;
    margin-bottom: 14px;
}

.manufacturing-content h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #171717;
}

.manufacturing-content h2 span {
    display: block;
}

.gold-line {
    width: 58px;
    height: 4px;
    background: #c9a227;
    margin: 22px 0 22px;
    border-radius: 10px;
}

.manufacturing-intro {
    max-width: 650px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}


/* ================= FEATURE ITEMS ================= */

.manufacturing-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px solid #e8dfca;
    transition: all 0.3s ease;
}

.manufacturing-item:last-child {
    border-bottom: none;
}

.manufacturing-item:hover {
    transform: translateX(7px);
}

.manufacturing-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b78a16;
    font-size: 16px;
    border: 1px solid #d7b95c;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s ease;
}

.manufacturing-item:hover .manufacturing-icon {
    background: #c9a227;
    color: #fff;
    transform: rotate(5deg);
}

.manufacturing-item h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: #242424;
}

.manufacturing-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #666;
}


/* ================= IMAGE GRID ================= */

.manufacturing-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.manufacturing-img {
    height: 280px;
    overflow: hidden;
    border-radius: 13px;
    position: relative;
    background: #eee;
}

.manufacturing-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(201,162,39,0.08),
        transparent
    );
    pointer-events: none;
}

.manufacturing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.manufacturing-img:hover img {
    transform: scale(1.07);
}


/* ================= GOLD IMAGE BORDER ================= */

.manufacturing-img:nth-child(1),
.manufacturing-img:nth-child(4) {
    border: 1px solid #d7b95c;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .manufacturing-wrap {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .manufacturing-content {
        padding-right: 0;
    }

    .manufacturing-content h2 {
        font-size: 36px;
    }

    .manufacturing-images {
        max-width: 700px;
        width: 100%;
        margin: auto;
    }

}


@media (max-width: 575px) {

    .manufacturing-section {
        padding: 60px 0;
    }

    .manufacturing-content h2 {
        font-size: 30px;
    }

    .manufacturing-intro {
        font-size: 14px;
    }

    .manufacturing-images {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .manufacturing-img {
        height: 180px;
        border-radius: 9px;
    }

    .manufacturing-item {
        gap: 12px;
        padding: 14px 0;
    }

    .manufacturing-item h4 {
        font-size: 14px;
    }

    .manufacturing-item p {
        font-size: 13px;
    }

    .manufacturing-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 13px;
    }

}/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 90px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* subtle golden background */
.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 230px;
    height: 230px;
    background: #fbf5e5;
    border-radius: 0 0 100% 0;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}


/* ================= HEADING ================= */

.contact-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}

.contact-heading span {
    color: #b58a18;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-heading h2 {
    margin: 10px 0 14px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #171717;
}

.contact-heading p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}


/* ================= MAIN WRAPPER ================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 45px;
    align-items: start;
}


/* ================= LEFT ================= */

.contact-left {
    padding: 10px 0;
}

.contact-left h3 {
    margin: 0 0 10px;
    font-size: 27px;
    color: #191919;
}

.contact-description {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}


/* ================= INFO CARD ================= */

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 20px;
    margin-bottom: 13px;
    background: #fff;
    border: 1px solid #eadfbd;
    border-radius: 12px;
    box-shadow: 0 7px 25px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    border-color: #c9a227;
    box-shadow: 0 10px 28px rgba(184,138,22,0.10);
}

.contact-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #c9a227;
    color: #fff;
    font-size: 17px;
}

.contact-info-card span {
    display: block;
    color: #9b7615;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-card h4 {
    margin: 0;
    color: #252525;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.contact-info-card h4 a {
    color: #252525;
    text-decoration: none;
    transition: 0.3s;
}

.contact-info-card h4 a:hover {
    color: #b58a18;
}


/* ================= WHATSAPP ================= */

.contact-whatsapp {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border: 1px solid #c9a227;
    border-radius: 50px;
    color: #9d7818;
    background: #fffdf7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-whatsapp i:first-child {
    font-size: 21px;
}

.contact-whatsapp i:last-child {
    margin-left: auto;
}

.contact-whatsapp:hover {
    background: #c9a227;
    color: #fff;
}


/* ================= FORM ================= */

.contact-form-box {
    background: #fff;
    border: 1px solid #e7dcb9;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.form-heading {
    margin-bottom: 25px;
}

.form-heading span {
    font-size: 11px;
    font-weight: 700;
    color: #b58a18;
    letter-spacing: 2px;
}

.form-heading h3 {
    margin: 7px 0 0;
    color: #191919;
    font-size: 25px;
}


/* ================= FORM ROW ================= */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.input-box {
    position: relative;
}

.input-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #b58a18;
    font-size: 14px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    padding: 13px 15px 13px 42px;
    font-size: 13px;
    color: #333;
    outline: none;
    transition: 0.3s;
    font-family: inherit;
}

.input-box input {
    height: 48px;
}

.input-box input:focus,
.input-box textarea:focus {
    border-color: #c9a227;
    box-shadow: 0 0 0 3px rgba(201,162,39,0.10);
}

.textarea-box i {
    top: 19px;
    transform: none;
}

.input-box textarea {
    min-height: 125px;
    resize: vertical;
    padding-top: 14px;
}


/* ================= SUBMIT ================= */

.contact-submit {
    width: 100%;
    border: none;
    background: #c9a227;
    color: #fff;
    height: 50px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-submit i {
    margin-left: 8px;
}

.contact-submit:hover {
    background: #a98216;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180,137,24,0.25);
}


/* ================= MAP ================= */

.map-box {
    margin-top: 18px;
    overflow: hidden;
    border-radius: 13px;
    border: 1px solid #d8bd69;
    box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}

.map-box iframe {
    display: block;
    filter: saturate(0.85);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-left {
        max-width: 750px;
        margin: auto;
        width: 100%;
    }

    .contact-right {
        max-width: 750px;
        width: 100%;
        margin: auto;
    }

}


@media (max-width: 575px) {

    .contact-section {
        padding: 60px 0;
    }

    .contact-heading {
        margin-bottom: 35px;
    }

    .contact-heading h2 {
        font-size: 30px;
    }

    .contact-heading p {
        font-size: 14px;
    }

    .contact-left h3 {
        font-size: 23px;
    }

    .contact-form-box {
        padding: 20px 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-card {
        padding: 16px;
    }

    .contact-info-card h4 {
        font-size: 14px;
    }

    .map-box iframe {
        height: 260px;
    }

}/* =====================================================
   GOLDEN + WHITE PRODUCT THEME
===================================================== */

:root{
    --gold:#c9a227;
    --gold-dark:#a98212;
    --gold-light:#f8f1dc;
    --gold-border:#e6d39a;
    --dark:#292929;
    --text:#666;
    --white:#fff;
}


/* MAIN SECTION */

.galvanised-product-section{
    background:#fff;
    padding:70px 0;
}


/* =====================================================
   PRODUCT SLIDER
===================================================== */

.product-gallery{
    width:100%;
    margin-bottom:20px;
}

.productSwiper{
    padding:10px 5px 30px;
}

.product-gallery-img{
    height:330px;
    overflow:hidden;
    border-radius:18px;

    background:#fff;

    border:1px solid var(--gold-border);

    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.product-gallery-img img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;

    transition:.5s ease;
}

.product-gallery-img:hover img{
    transform:scale(1.05);
}


/* SLIDER ARROWS */

.product-prev,
.product-next{
    width:44px;
    height:44px;

    border-radius:50%;

    background:var(--gold);
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    position:absolute;
    top:50%;
    transform:translateY(-50%);

    z-index:10;

    cursor:pointer;

    box-shadow:0 7px 20px rgba(0,0,0,.15);

    transition:.3s ease;
}

.product-prev{
    left:18px;
}

.product-next{
    right:18px;
}

.product-prev:hover,
.product-next:hover{
    background:var(--gold-dark);
    transform:translateY(-50%) scale(1.08);
}


/* =====================================================
   INFORMATION SECTION
===================================================== */

.product-info-section{
    padding:55px 0;

    border-top:1px solid #eee;
}


/* =====================================================
   HEADING
===================================================== */

.section-heading{
    display:flex;
    align-items:center;

    gap:15px;

    margin-bottom:30px;
}

.heading-icon{
    width:48px;
    height:48px;

    flex:0 0 48px;

    border-radius:13px;

    background:var(--gold-light);
    color:var(--gold-dark);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;

    border:1px solid var(--gold-border);
}

.section-heading span{
    display:block;

    color:var(--gold-dark);

    font-size:10px;
    font-weight:700;

    letter-spacing:1.5px;

    margin-bottom:5px;
}

.section-heading h2{
    margin:0;

    color:#292929;

    font-size:28px;
    font-weight:700;
}


/* =====================================================
   ABOUT
===================================================== */

.about-content{
    max-width:950px;
}

.about-content p{
    color:#666;

    font-size:15px;

    line-height:1.9;

    margin-bottom:15px;
}


/* =====================================================
   SPECIFICATION TABLE DESKTOP
===================================================== */

.spec-table-wrap{
    width:100%;

    overflow:hidden;

    border:1px solid var(--gold-border);

    border-radius:15px;

    box-shadow:0 8px 30px rgba(0,0,0,.05);

    background:#fff;
}

.spec-table{
    width:100%;

    border-collapse:collapse;

    table-layout:fixed;
}

.spec-table tr{
    border-bottom:1px solid #eee;
}

.spec-table tr:last-child{
    border-bottom:0;
}

.spec-table th,
.spec-table td{
    padding:16px 20px;

    text-align:left;

    font-size:14px;

    line-height:1.6;
}

.spec-table th{
    width:32%;

    color:#3b3b3b;

    font-weight:700;

    background:#fbf7eb;

    border-right:1px solid #eee;
}

.spec-table td{
    color:#666;

    background:#fff;

    word-break:normal;
}


/* =====================================================
   APPLICATIONS
===================================================== */

.application-layout{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px 30px;
}

.application-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.application-item{
    display:flex;
    align-items:center;

    gap:12px;

    padding:14px 16px;

    background:#fff;

    border:1px solid #eee;

    border-radius:12px;

    transition:.3s ease;
}

.application-item:hover{
    border-color:var(--gold);

    transform:translateX(4px);

    box-shadow:0 8px 20px rgba(201,162,39,.10);
}

.application-item i{
    width:27px;
    height:27px;

    flex:0 0 27px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--gold-light);

    color:var(--gold-dark);

    font-size:10px;
}

.application-item span{
    color:#555;

    font-size:14px;
    font-weight:600;
}


/* =====================================================
   ADVANTAGES
===================================================== */

.advantages-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;
}

.advantage-card{
    padding:27px 22px;

    background:#fff;

    border:1px solid #eee;

    border-radius:15px;

    transition:.35s ease;
}

.advantage-card:hover{
    transform:translateY(-6px);

    border-color:var(--gold);

    box-shadow:0 12px 30px rgba(201,162,39,.12);
}

.advantage-icon{
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:13px;

    background:var(--gold-light);

    color:var(--gold-dark);

    font-size:19px;

    margin-bottom:18px;
}

.advantage-card h3{
    color:#292929;

    font-size:16px;

    line-height:1.4;

    margin-bottom:9px;
}

.advantage-card p{
    color:#707070;

    font-size:13px;

    line-height:1.7;

    margin:0;
}


/* =====================================================
   BRANDS
===================================================== */

.brand-grid{
    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:15px;
}

.brand-box{
    min-height:85px;
    border:1px solid var(--gold-border);
    border-radius:14px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:7px;
    color:#292929;
    transition:.3s ease;
}

.brand-box i{
    color:var(--gold);

    font-size:14px;
}

.brand-box strong{
    font-size: 12px;
}

.brand-box:hover{
    background:var(--gold);

    color:black;

    transform:translateY(-5px);
}

.brand-box:hover i{
    color:#fff;
}


/* =====================================================
   GRADE NOTE
===================================================== */

.grade-note{
    display:flex;
    align-items:center;

    gap:12px;

    margin-top:20px;

    padding:15px 18px;

    border-radius:10px;

    background:#fbf7eb;

    border:1px solid #f0e4c0;
}

.grade-note i{
    color:var(--gold-dark);
}

.grade-note p{
    margin:0;

    color:#666;

    font-size:13px;
}


/* =====================================================
   PACKAGING
===================================================== */

.packaging-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;
}

.packaging-card{
    padding:28px 23px;

    background:#fff;

    border:1px solid #eee;

    border-radius:15px;

    transition:.3s ease;
}

.packaging-card:hover{
    border-color:var(--gold);

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(201,162,39,.10);
}

.packaging-icon{
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:13px;

    background:var(--gold-light);

    color:var(--gold-dark);

    margin-bottom:18px;
}

.packaging-card h3{
    color:#292929;

    font-size:17px;

    margin-bottom:9px;
}

.packaging-card p{
    color:#707070;

    font-size:13px;

    line-height:1.7;

    margin:0;
}


/* =====================================================
   CTA
===================================================== */

.product-cta{
    position:relative;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:50px 55px;

    margin-top:30px;

    border-radius:20px;

    background:
        linear-gradient(
            135deg,
            #292929,
            #444
        );

    border:1px solid #66551f;
}

.product-cta::before{
    content:"";

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(201,162,39,.10);

    right:-80px;
    top:-130px;
}

.cta-content{
    position:relative;
    z-index:2;
}

.cta-content > span{
    color:#d8b84b;

    font-size:10px;

    font-weight:700;

    letter-spacing:1.5px;
}

.cta-content h2{
    color:#fff;

    font-size:34px;

    line-height:1.3;

    margin:10px 0 12px;
}

.cta-content h2 b{
    color:#d8b84b;
}

.cta-content p{
    color:#ccc;

    max-width:650px;

    font-size:14px;

    line-height:1.7;

    margin-bottom:23px;
}

.cta-btn{
    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:13px 23px;

    border-radius:7px;

    background:var(--gold);

    color:#fff;

    text-decoration:none;

    font-size:14px;

    font-weight:700;

    transition:.3s ease;
}

.cta-btn:hover{
    background:#fff;

    color:#292929;
}

.cta-icon{
    position:relative;
    z-index:2;

    width:95px;
    height:95px;

    border-radius:25px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(201,162,39,.12);

    color:#d8b84b;

    font-size:40px;
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px){

    .product-gallery-img{
        height:280px;
    }

    .advantages-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .brand-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .packaging-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .galvanised-product-section{
        padding:35px 0;
    }

    .product-gallery-img{
        height:235px;

        border-radius:14px;
    }

    .product-prev,
    .product-next{
        width:35px;
        height:35px;

        font-size:11px;
    }

    .product-prev{
        left:8px;
    }

    .product-next{
        right:8px;
    }


    /* SECTION */

    .product-info-section{
        padding:35px 0;
    }

    .section-heading{
        gap:10px;

        margin-bottom:22px;
    }

    .heading-icon{
        width:40px;
        height:40px;

        flex-basis:40px;

        font-size:15px;
    }

    .section-heading h2{
        font-size:21px;
    }

    .section-heading span{
        font-size:8px;
    }


    /* ABOUT */

    .about-content p{
        font-size:14px;

        line-height:1.8;
    }


    /* =================================================
       MOBILE TABLE
       NO HORIZONTAL SCROLL
    ================================================= */

    .spec-table-wrap{
        overflow:visible;

        border-radius:12px;

        box-shadow:none;
    }

    .spec-table{
        min-width:0;

        width:100%;

        table-layout:fixed;
    }

    .spec-table tbody,
    .spec-table tr{
        width:100%;
    }

    .spec-table tr{
        display:grid;

        grid-template-columns:42% 58%;

        border-bottom:1px solid #e7dfc8;
    }

    .spec-table tr:last-child{
        border-bottom:0;
    }

    .spec-table th,
    .spec-table td{
        width:auto !important;

        min-width:0;

        padding:13px 10px;

        font-size:12px;

        line-height:1.5;

        word-break:break-word;

        overflow-wrap:anywhere;
    }

    .spec-table th{
        display:flex;

        align-items:center;

        background:#fbf7eb;

        border-right:1px solid #e7dfc8;
    }

    .spec-table td{
        display:flex;

        align-items:center;

        background:#fff;
    }


    /* APPLICATIONS */

    .application-layout{
        grid-template-columns:1fr;

        gap:12px;
    }

    .application-list{
        gap:10px;
    }

    .application-item{
        padding:12px;
    }

    .application-item span{
        font-size:13px;
    }


    /* ADVANTAGES */

    .advantages-grid{
        grid-template-columns:1fr;

        gap:12px;
    }

    .advantage-card{
        padding:22px 18px;
    }


    /* BRANDS */

    .brand-grid{
        grid-template-columns:repeat(2,1fr);

        gap:10px;
    }

    .brand-box{
        min-height:70px;
    }


    /* PACKAGING */

    .packaging-grid{
        grid-template-columns:1fr;

        gap:12px;
    }

    .packaging-card{
        padding:22px 18px;
    }


    /* CTA */

    .product-cta{
        padding:32px 23px;

        border-radius:16px;
    }

    .cta-content h2{
        font-size:26px;
    }

    .cta-content p{
        font-size:13px;
    }

    .cta-icon{
        display:none;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:420px){

    .product-gallery-img{
        height:210px;
    }

    .section-heading h2{
        font-size:19px;
    }

    .spec-table th,
    .spec-table td{
        padding:11px 8px;

        font-size:11.5px;
    }

    .application-item span{
        font-size:12px;
    }

    .cta-content h2{
        font-size:24px;
    }

}/* CENTER SECTION TITLES */

.section-heading{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:10px;
    margin-bottom:30px;
}

.heading-icon{
    width:48px;
    height:48px;
    flex:0 0 48px;
}

.section-heading span{
    text-align:center;
}

.section-heading h2{
    text-align:center;
    margin:0;
}/* =========================================================
   GALVANISED COIL — PREMIUM GOLD / CREAM DESIGN
   HTML UNCHANGED
========================================================= */

.galvanised-product-section{
    position:relative;
    overflow:hidden;
    padding:80px 0 100px !important;

    background:
        radial-gradient(
            circle at 8% 8%,
            rgba(218,178,65,.18),
            transparent 25%
        ),
        radial-gradient(
            circle at 92% 35%,
            rgba(218,178,65,.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #fffdf8 0%,
            #f8f2df 48%,
            #fffdf8 100%
        ) !important;
}


/* soft decorative glow */
.galvanised-product-section::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    top:-260px;
    left:-240px;
    background:rgba(202,163,55,.07);
    filter:blur(10px);
    pointer-events:none;
}

.galvanised-product-section::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border:1px solid rgba(185,145,35,.09);
    border-radius:50%;
    right:-210px;
    bottom:100px;
    pointer-events:none;
}


/* =========================================================
   GALLERY — LARGE PREMIUM CARD
========================================================= */

.galvanised-product-section .product-gallery{
    position:relative;
    z-index:2;
    overflow:hidden;

    background:#fff;
    border-radius:28px;

    border:1px solid rgba(190,150,40,.16);

    box-shadow:
        0 25px 70px rgba(74,55,16,.10),
        0 4px 15px rgba(74,55,16,.04);

    transition:
        transform .5s ease,
        box-shadow .5s ease;
}

.galvanised-product-section .product-gallery:hover{
    transform:translateY(-7px);

    box-shadow:
        0 35px 85px rgba(74,55,16,.15);
}

.galvanised-product-section .product-gallery-img{
    overflow:hidden;
}

.galvanised-product-section .product-gallery-img img{
    width:100%;
    display:block;

    transition:
        transform 1s cubic-bezier(.2,.8,.2,1),
        filter .6s ease;
}

.galvanised-product-section .product-gallery:hover
.product-gallery-img img{
    transform:scale(1.045);
}


/* golden image shine */
.galvanised-product-section .product-gallery-img::after{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            110deg,
            transparent 30%,
            rgba(255,255,255,.38) 50%,
            transparent 70%
        );

    transform:translateX(-120%);
    transition:1s ease;

    pointer-events:none;
}

.galvanised-product-section .product-gallery:hover
.product-gallery-img::after{
    transform:translateX(120%);
}


/* =========================================================
   ARROWS
========================================================= */

.galvanised-product-section .product-prev,
.galvanised-product-section .product-next{
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#fff;
    color:#9b7621;

    border:1px solid rgba(190,150,40,.25);

    box-shadow:0 8px 25px rgba(80,60,15,.12);

    transition:.35s ease;
}

.galvanised-product-section .product-prev:hover,
.galvanised-product-section .product-next:hover{
    background:#c6a13b;
    color:#fff;

    transform:scale(1.1);

    box-shadow:
        0 12px 30px rgba(150,110,25,.25);
}


/* =========================================================
   ALL INFORMATION CARDS
========================================================= */

.galvanised-product-section .product-info-section{
    position:relative;
    z-index:2;

    margin-top:65px !important;

    padding:50px !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.97),
            rgba(255,252,243,.95)
        ) !important;

    border-radius:26px !important;

    border:1px solid rgba(190,150,40,.16) !important;

    box-shadow:
        0 18px 55px rgba(75,55,15,.075),
        0 3px 12px rgba(75,55,15,.025) !important;

    backdrop-filter:blur(10px);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}

.galvanised-product-section .product-info-section:hover{
    transform:translateY(-5px);

    border-color:rgba(190,150,40,.28) !important;

    box-shadow:
        0 28px 70px rgba(75,55,15,.11) !important;
}


/* =========================================================
   SMALL GOLD EYEBROW
========================================================= */

.galvanised-product-section .section-heading span{
    color:#ad8525 !important;

    font-size:11px !important;
    font-weight:800 !important;

    letter-spacing:3px !important;
    text-transform:uppercase;

    display:inline-flex;
    align-items:center;
    gap:10px;
}

.galvanised-product-section .section-heading span::before{
    content:"";

    width:32px;
    height:2px;

    background:
        linear-gradient(
            90deg,
            #a77d1e,
            #e0c66d
        ) !important;

    transition:.4s ease;
}

.galvanised-product-section
.product-info-section:hover
.section-heading span::before{
    width:48px;
}


/* =========================================================
   HEADINGS
========================================================= */

.galvanised-product-section .section-heading h2{
    color:#252525 !important;

    font-size:clamp(20px,3.5vw,35px);

    font-weight:700 !important;

    letter-spacing:-1px;

    margin-top:8px;
}


/* =========================================================
   ABOUT TEXT
========================================================= */

.galvanised-product-section .about-content p{
    color:#696969;

    line-height:1.9;

    padding-left:20px;

    position:relative;

    transition:.35s ease;
}

.galvanised-product-section .about-content p::before{
    content:"";

    position:absolute;

    left:0;
    top:8px;

    width:3px;
    height:0;

    border-radius:10px;

    background:#c49c35;

    transition:.45s ease;
}

.galvanised-product-section .about-content p:hover{
    color:#292929;
    transform:translateX(5px);
}

.galvanised-product-section .about-content p:hover::before{
    height:calc(100% - 16px);
}


/* =========================================================
   TECHNICAL SPECIFICATION TABLE
========================================================= */

.galvanised-product-section .spec-table-wrap{
    overflow:hidden;

    border-radius:20px;

    border:1px solid rgba(190,150,40,.15);

    background:#fff;

    box-shadow:0 8px 25px rgba(80,60,20,.035);
}

.galvanised-product-section .spec-table{
    border-collapse:collapse;
    width:100%;
}

.galvanised-product-section .spec-table tr{
    transition:.3s ease;
}

.galvanised-product-section .spec-table tbody tr:nth-child(even){
    background:#fffcf3;
}

.galvanised-product-section .spec-table tbody tr:hover{
    background:
        linear-gradient(
            90deg,
            rgba(202,163,55,.13),
            rgba(255,255,255,.7)
        );

    transform:translateX(4px);
}

.galvanised-product-section .spec-table th{
    color:#5d491d !important;
    font-weight:800;
}

.galvanised-product-section .spec-table td{
    color:#686868;
}


/* =========================================================
   APPLICATION ITEMS
========================================================= */

.galvanised-product-section .application-item{
    position:relative;

    padding:17px 20px;

    border-radius:16px;

    background:rgba(255,255,255,.82);

    border:1px solid rgba(190,150,40,.13);

    box-shadow:0 6px 22px rgba(80,60,20,.035);

    transition:.4s cubic-bezier(.2,.8,.2,1);

    overflow:hidden;
}

.galvanised-product-section .application-item:hover{
    transform:translateX(8px);

    border-color:rgba(190,150,40,.30);

    box-shadow:
        0 12px 32px rgba(80,60,20,.09);
}

.galvanised-product-section .application-item i{
    background:
        linear-gradient(
            135deg,
            #ad8424,
            #dfc467
        ) !important;

    color:#fff;

    box-shadow:
        0 7px 18px rgba(170,130,35,.20);

    transition:.5s ease;
}

.galvanised-product-section .application-item:hover i{
    transform:rotate(360deg);
}


/* =========================================================
   ADVANTAGE CARDS
========================================================= */

.galvanised-product-section .advantage-card{
    position:relative;
    overflow:hidden;

    padding:30px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fbf6e8
        );

    border-radius:21px;

    border:1px solid rgba(190,150,40,.14);

    box-shadow:
        0 10px 32px rgba(80,60,20,.055);

    transition:.45s cubic-bezier(.2,.8,.2,1);
}

.galvanised-product-section .advantage-card::after{
    content:"";

    position:absolute;

    bottom:0;
    left:0;
    right:0;

    height:3px;

    background:
        linear-gradient(
            90deg,
            #aa7f20,
            #e2c76e,
            #aa7f20
        );

    transform:scaleX(0);

    transition:.45s ease;
}

.galvanised-product-section .advantage-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 25px 55px rgba(80,60,20,.12);
}

.galvanised-product-section .advantage-card:hover::after{
    transform:scaleX(1);
}


/* ICON */
.galvanised-product-section .advantage-icon{
    background:
        linear-gradient(
            135deg,
            #aa7f21,
            #dec36a
        ) !important;

    color:#fff;

    box-shadow:
        0 10px 25px rgba(170,125,30,.20);

    transition:.4s ease;
}

.galvanised-product-section .advantage-card:hover
.advantage-icon{
    transform:rotate(-6deg) scale(1.08);
}


/* =========================================================
   BRAND BOX
========================================================= */

.galvanised-product-section .brand-box{
    min-height:120px;
    background:rgba(255,255,255,.9);
    border:1px solid rgba(190,150,40,.15);
    border-radius:19px;
    box-shadow:
        0 8px 28px rgba(80,60,20,.045);
    transition:.4s ease;
}

.galvanised-product-section .brand-box:hover{
    transform:translateY(-9px);

    border-color:rgba(190,150,40,.35);

    box-shadow:
        0 20px 45px rgba(80,60,20,.11);
}

.galvanised-product-section .brand-box i{
    color:#b28a2b;

    transition:.5s ease;
}

.galvanised-product-section .brand-box:hover i{
    transform:rotate(360deg) scale(1.12);
}


/* =========================================================
   GRADE NOTE
========================================================= */

.galvanised-product-section .grade-note{
    background:
        linear-gradient(
            90deg,
            rgba(201,163,58,.10),
            rgba(255,255,255,.75)
        );

    border-left:3px solid #c49b34;

    border-radius:14px;
}

.galvanised-product-section .grade-note i{
    color:#b08325;

    animation:goldPulse 2s ease-in-out infinite;
}

@keyframes goldPulse{
    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.15);
    }
}


/* =========================================================
   PACKAGING
========================================================= */

.galvanised-product-section .packaging-card{
    padding:30px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fbf6e8
        );

    border:1px solid rgba(190,150,40,.14);

    border-radius:21px;

    box-shadow:
        0 10px 30px rgba(80,60,20,.05);

    transition:.45s ease;
}

.galvanised-product-section .packaging-card:hover{
    transform:translateY(-9px);

    box-shadow:
        0 23px 50px rgba(80,60,20,.11);
}

.galvanised-product-section .packaging-icon{
    background:
        linear-gradient(
            135deg,
            #ab8122,
            #dfc66d
        ) !important;

    color:#fff;

    box-shadow:
        0 10px 25px rgba(170,125,30,.20);
}


/* =========================================================
   GOLDEN CTA
========================================================= */

.galvanised-product-section .product-cta{
    position:relative;
    overflow:hidden;

    margin-top:85px !important;

    padding:60px !important;

    border-radius:28px;

    color:#fff;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255,255,255,.25),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #96701d,
            #c6a039 48%,
            #a77f24
        );

    box-shadow:
        0 28px 70px rgba(120,85,20,.20);
}


/* CTA decorative circle */
.galvanised-product-section .product-cta::before{
    content:"";

    position:absolute;

    width:450px;
    height:450px;

    right:-180px;
    top:-210px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.20);

    animation:ctaRotate 12s linear infinite;
}

@keyframes ctaRotate{
    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}


.galvanised-product-section .cta-content{
    position:relative;
    z-index:3;
}

.galvanised-product-section .cta-content > span{
    color:rgba(255,255,255,.75);
    letter-spacing:3px;
}

.galvanised-product-section .cta-content h2{
    color:#fff;

    font-size:clamp(32px,4vw,52px);

    letter-spacing:-1.5px;
}

.galvanised-product-section .cta-content p{
    color:rgba(255,255,255,.84);
}


/* CTA BUTTON */
.galvanised-product-section .cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:15px 25px;

    margin-top:18px;

    border-radius:50px;

    background:#fff;
    color:#96711e;

    font-weight:800;

    text-decoration:none;

    box-shadow:
        0 10px 25px rgba(80,55,10,.15);

    transition:.4s ease;
}

.galvanised-product-section .cta-btn:hover{
    transform:translateY(-4px);

    background:#fffaf0;

    color:#785911;

    box-shadow:
        0 16px 35px rgba(80,55,10,.22);
}

.galvanised-product-section .cta-btn i{
    transition:.3s ease;
}

.galvanised-product-section .cta-btn:hover i{
    transform:translateX(5px);
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:767px){

    .galvanised-product-section{
        padding:45px 0 60px !important;
    }

    .galvanised-product-section .product-info-section{
        margin-top:38px !important;
        padding:28px 20px !important;
        border-radius:20px !important;
    }

    .galvanised-product-section .product-cta{
        margin-top:50px !important;
        padding:38px 24px !important;
        border-radius:22px;
    }

    .galvanised-product-section .section-heading h2{
        font-size:30px;
    }

    .galvanised-product-section .advantage-card,
    .galvanised-product-section .packaging-card{
        padding:24px;
    }
}/* =========================================================
   GALVANISED COIL — PREMIUM BLUE THEME
   HTML UNCHANGED
========================================================= */
/* Hidden on desktop */
.mobile-contact-numbers {
  display: none;
}

/* Only Mobile */
@media (max-width: 991.98px) {
  .mobile-contact-numbers {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-align: center;
    margin: 0 auto;
  }

  .mobile-contact-numbers a {
    color: inherit;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
  }

  .mobile-contact-numbers i {
    margin-right: 4px;
  }
}/* =========================================
   MOBILE CONTACT NUMBERS
========================================= */

.mobile-contact-numbers {
  display: none;
}


/* =========================================
   MOBILE NAVBAR
========================================= */

@media (max-width: 991.98px) {

  #mainNav .container {
    display: flex;
    align-items: center;
  }

  /* Logo */
  #mainNav .navbar-brand {
    margin-right: 8px;
    flex-shrink: 0;
  }

  #mainNav .navbar-brand img {
    width: 135px;
    height: auto;
    display: block;
  }


  /* Mobile contacts */
  .mobile-contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    margin-right: 10px;
  }


  .mobile-phone {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 5px 9px;

    min-width: 145px;

    background: #fffaf0;

    border: 1px solid rgba(196, 150, 50, 0.45);

    border-radius: 10px;

    text-decoration: none;

    box-shadow: 0 2px 8px rgba(0,0,0,0.06);

    transition: all 0.25s ease;
  }


  .mobile-phone:active {
    transform: scale(0.96);
  }


  /* Phone icon */
  .phone-icon {
    width: 25px;
    height: 25px;

    min-width: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c89b3c;
    color: #fff;

    font-size: 11px;
  }


  /* Number + Name */
  .phone-info {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
  }


  .phone-info strong {
    font-size: 11px;
    font-weight: 700;

    color: #222;

    white-space: nowrap;
  }


  .phone-info small {
    margin-top: 2px;

    font-size: 8px;

    color: #777;

    white-space: nowrap;
  }


  /* Hamburger */
  #mainNav .navbar-toggler {
    margin-left: 0;

    padding: 7px 9px;

    border: 1px solid #d5d5d5;

    border-radius: 8px;

    flex-shrink: 0;
  }


  /* Dropdown menu */
  #navMenu {
    width: 100%;
    margin-top: 12px;

    text-align: center;
  }


  #navMenu .navbar-nav {
    align-items: center !important;
  }


  #navMenu .nav-item {
    width: 100%;
  }


  #navMenu .nav-link {
    padding: 10px;
  }


  #navMenu .btn-gold {
    margin-top: 8px;
    margin-bottom: 10px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  #mainNav .navbar-brand img {
    width: 110px;
  }

  .mobile-contact-numbers {
    gap: 4px;
    margin-right: 6px;
  }

  .mobile-phone {
    min-width: 125px;
    padding: 4px 6px;
    gap: 5px;
  }

  .phone-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    font-size: 9px;
  }

  .phone-info strong {
    font-size: 9px;
  }

  .phone-info small {
    font-size: 7px;
  }

  #mainNav .navbar-toggler {
    padding: 6px 7px;
  }

}


/* =========================================
   DESKTOP
========================================= */

@media (min-width: 992px) {

  .mobile-contact-numbers {
    display: none !important;
  }

}