/* ==========================================================================
   Navasiddhi Trading L.L.C — main stylesheet
   Brand colours: deep green #0C4624, gold #C39A5C, dark gray #434244
   Font: Poppins
   ========================================================================== */

:root {
  /* === NavaSiddhi brand palette === */
  --green: #0C4624;        /* primary deep green */
  --green-bright: #16542A; /* accent green */
  --green-dark: #08331A;   /* darkest green */
  --gold: #C39A5C;         /* primary gold */
  --gold-light: #DDB676;   /* light gold */
  --gold-dark: #A87C3A;    /* deep gold */
  --gray: #434244;         /* brand dark gray */

  /* Semantic aliases (used throughout the CSS & inline styles) */
  --blue: var(--green);
  --blue-dark: var(--green-dark);
  --cyan: var(--gold);

  --ink: #2b2b2d;
  --muted: #5e5e62;
  --bg: #ffffff;
  --bg-soft: #f5f7f3;
  --line: #e6e9e3;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(12, 70, 36, .12);
  --wrap: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 { font-family: "Poppins", "Segoe UI", Arial, sans-serif; line-height: 1.25; color: var(--green); font-weight: 600; letter-spacing: .2px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.section { padding: 80px 0; }
.section-soft { background: var(--bg-soft); }

.section-head { text-align: center; margin: 0 auto 50px; }
.section-head .eyebrow {
  color: var(--cyan); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; font-size: 13px; display: block; margin-bottom: 10px;
}
.section-head h2 { font-size: 36px; }
.section-head p { color: var(--muted); margin-top: 14px; }

.btn {
  display: inline-block; background: var(--blue); color: #fff;
  padding: 13px 30px; border-radius: 50px; font-weight: 600;
  letter-spacing: .3px; transition: .25s; border: 2px solid var(--blue);
}
.btn:hover { background: var(--cyan); border-color: var(--cyan); color: #fff; }
.btn-outline { background: transparent; color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-light { background: #fff; color: var(--blue); border-color: #fff; }
.btn-light:hover { background: var(--cyan); border-color: var(--cyan); color: #fff; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100; background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .07); transition: padding .25s;
}
.header-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.site-header.scrolled .header-inner { padding-top: 8px; padding-bottom: 8px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img {
  height: 56px; width: auto; max-width: none; flex-shrink: 0;
  object-fit: contain; transition: height .25s;
}
.site-header.scrolled .logo img { height: 46px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
  font-family: "Poppins", sans-serif; font-weight: 700; font-size: 22px;
  letter-spacing: 3px; color: var(--green);
}
.logo-text small {
  font-size: 8.5px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gray); margin-top: 2px; white-space: nowrap;
}

.nav-menu { list-style: none; display: flex; align-items: center; gap: 6px; }
.nav-menu > li { position: relative; }
.nav-link, .nav-menu a {
  display: block; padding: 10px 14px; font-weight: 600; color: var(--ink);
  font-size: 15px; border-radius: 6px;
}
.nav-menu > li > a:hover, .nav-menu a.active { color: var(--blue); }
.nav-menu a.active { position: relative; }
.nav-menu > li > a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--cyan);
}
.caret { font-size: 11px; }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 270px; list-style: none;
  background: #fff; box-shadow: var(--shadow); border-radius: 8px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s;
  border-top: 3px solid var(--cyan);
}
.has-dropdown:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 9px 18px; font-size: 14px; font-weight: 500; border-radius: 0; }
.dropdown a:hover { background: var(--bg-soft); color: var(--blue); }

.nav-cta a {
  background: var(--blue); color: #fff !important; border-radius: 50px;
  padding: 10px 22px; margin-left: 8px;
}
.nav-cta a:hover { background: var(--cyan); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--blue); margin: 5px 0; border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative; color: #fff; text-align: center;
  background: linear-gradient(rgba(8, 51, 26, .80), rgba(12, 70, 36, .86)), url("../images/banner.jpg") center/cover no-repeat;
  padding: 130px 20px;
}
.hero h1 { font-size: 48px; color: #fff; margin-bottom: 18px; }
.hero p { font-size: 19px; max-width: 720px; margin: 0 auto 30px; opacity: .95; }
.hero .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Page banner (inner pages) */
.page-banner {
  color: #fff; text-align: center; padding: 90px 20px 70px;
  background: linear-gradient(rgba(8, 51, 26, .86), rgba(12, 70, 36, .90)), url("../images/banner.jpg") center/cover no-repeat;
}
.page-banner h1 { color: #fff; font-size: 42px; }
.breadcrumb { margin-top: 12px; font-size: 14px; opacity: .9; }
.breadcrumb a { color: var(--cyan); }

/* ===== Feature cards (Mission/Vision/People) ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 28px; text-align: center; transition: .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .ico {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(145deg, var(--green-bright), var(--green));
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(195, 154, 92, .22);
}
.card .ico img { width: 34px; height: auto; display: block; }
.card .ico .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); display: block; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }

/* ===== Product grid ===== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06); transition: .25s; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card .thumb { height: 210px; overflow: hidden; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.product-card:hover .thumb img { transform: scale(1.07); }
.product-card .body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 19px; margin-bottom: 10px; }
.product-card p { color: var(--muted); font-size: 14.5px; flex: 1; }
.product-card .more { margin-top: 16px; font-weight: 700; color: var(--blue); font-size: 14px; }
.product-card .more:hover { color: var(--cyan); }

/* ===== Page intro (full-width image + copy) ===== */
.page-intro img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.page-intro p {
  color: var(--muted); margin: 24px auto 0;
  max-width: 720px; text-align: center;
}

/* ===== About split ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.split h2 { font-size: 34px; margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 14px; }
.tick { list-style: none; margin-top: 10px; }
.tick li { position: relative; padding-left: 32px; margin-bottom: 12px; color: var(--ink); }
.tick li::before {
  content: "\2713"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px;
  background: var(--cyan); color: #fff; border-radius: 50%; font-size: 12px;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}

/* ===== Feature list (product detail) ===== */
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 30px; }
.feature-item {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--cyan);
  border-radius: 8px; padding: 20px 22px;
}
.feature-item h4 { font-size: 17px; margin-bottom: 6px; color: var(--blue); }
.feature-item p { color: var(--muted); font-size: 14.5px; }
.feature-item ul { list-style: none; margin-top: 4px; }
.feature-item ul li {
  position: relative; padding-left: 24px; margin-bottom: 6px;
  color: var(--muted); font-size: 14px; line-height: 1.5;
}
.feature-item ul li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 15px; height: 15px;
  background: url("../images/icon-arrow-bullet.svg") center / contain no-repeat;
}
.tool-list{
    list-style:none;
    padding:0;
    margin:0;
}

.tool-list li{
    position:relative;
    padding-left:34px;
    margin-bottom:14px;
    color:var(--muted);
    font-size:15px;
    line-height:1.6;
}

/* Green Circle */
.tool-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:3px;
    width:20px;
    height:20px;
    background:var(--green);      /* #0C4624 */
    border-radius:50%;
}

/* Golden Arrow */
.tool-list li::after{
    content:"";
    position:absolute;
    left:8px;
    top:8px;
    width:0;
    height:0;
    border-top:4px solid transparent;
    border-bottom:4px solid transparent;
    border-left:6px solid var(--gold);   /* #C39A5C */
}
.tool-list li::before{
    background:var(--green);
}

.tool-list li::after{
    border-left:6px solid var(--gold);
}
.drum-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.drum-card{
    background:#fff;
    border:1px solid #d9d9d9;
    border-radius:22px;
    overflow:hidden;
    padding:14px;
    transition:.3s;
}

.drum-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.drum-card img{
    width:100%;
    height:260px;
    object-fit:contain;
    display:block;
}
.drum-card h3{
    margin-top:12px;
    font-size:17px;
}
.ibc-images img{
    width: 85%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px; /* optional */
}
.ibc-images{
    margin-top: 50px;
}
.ibc-images{
    margin-top: 60px;
}
.ibc-title{
    margin-bottom: 25px;   /* h1 ke niche gap */
}

.ibc-text{
    margin-bottom: 50px;   /* p aur images ke beech gap */
    line-height: 1.8;      /* paragraph ki lines ke beech gap */
}



/* ===== Industrial Supplies: drums section ===== */
.industrial-drums-section { padding-top: 20px; }
.industrial-drums-panel {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; margin-bottom: 28px;
}
.industrial-drums-copy { padding: 34px 34px 34px 36px; }
.industrial-drums-gallery { padding: 30px 30px 30px 0; align-content: center; }
.industrial-drums-copy .eyebrow {
  color: var(--cyan); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; font-size: 13px; display: block; margin-bottom: 10px;
}
.industrial-drums-copy h2 { font-size: 34px; margin-bottom: 18px; }
.industrial-drums-copy p { color: var(--muted); margin-bottom: 14px; font-size: 15.5px; }
.industrial-drums-aside {
  background: linear-gradient(180deg, #fafcf8, #f3f7f1);
  border-left: 1px solid var(--line);
  padding: 34px 30px;
}
.industrial-drums-aside h3 {
  font-size: 20px; margin-bottom: 18px; color: var(--green);
}
.industrial-drums-gallery {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px;
}
.industrial-drums-card {
  margin: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 22px rgba(12, 70, 36, .06);
   text-align: center;
}
.industrial-drums-card img {
  width: 100%; height: 240px; object-fit: contain; background: #fff; display: block;
  padding: 16px;
}
.industrial-drums-card figcaption {
  padding: 14px 18px 18px; color: var(--green); font-weight: 600; font-size: 15px;
  border-top: 1px solid var(--line);
}
/* ===== Rig Management section ===== */
.rig-management-section { padding-top: 20px; }
.rig-management-panel {
  align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.rig-management-copy { padding: 34px 34px 34px 36px; }
.rig-management-copy .eyebrow {
  color: var(--cyan); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; font-size: 13px; display: block; margin-bottom: 10px;
}
.rig-management-copy h2 { font-size: 34px; margin-bottom: 18px; }
.rig-management-copy p { color: var(--muted); margin-bottom: 14px; font-size: 15.5px; }
.rig-management-aside {
  background: linear-gradient(180deg, #fafcf8, #f3f7f1);
  border-left: 1px solid var(--line);
  padding: 34px 30px;
}
.rig-management-aside h3 {
  font-size: 20px; margin-bottom: 18px; color: var(--green);
}
.rig-management-aside .tool-list li { color: var(--ink); }
.rig-management-aside .tool-list li:last-child { margin-bottom: 0; }
/* ===== Chemical product page ===== */
.product-detail-hero { padding: 70px 0; }
.chemical-hero { grid-template-columns: .95fr 1.05fr; gap: 56px; }
.chemical-hero-image {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.chemical-hero-image img {
  width: 100%; aspect-ratio: 2 / 1; object-fit: cover;
  border-radius: 8px; box-shadow: none;
}
.chemical-hero-copy .eyebrow {
  color: var(--cyan); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; font-size: 13px; display: block; margin-bottom: 10px;
}
.chemical-hero-copy h2 { font-size: 36px; margin-bottom: 16px; }
.chemical-hero-copy p { max-width: 560px; font-size: 16px; }
.chemical-range-section {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  position: relative;
}
.chemical-range-section .section-head { margin-bottom: 40px; }
.chemical-range-section .section-head .eyebrow { color: var(--gold-light); }
.chemical-range-section .section-head h2 { color: #fff; }
.chemical-range-section .section-head p { color: rgba(255, 255, 255, .78); }

.chemical-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch; gap: 22px;
}
.chemical-grid .feature-item {
  min-height: 100%; padding: 26px 24px 22px;
  border-radius: 12px; border-left-width: 4px;
  box-shadow: 0 14px 30px rgba(4, 20, 11, .22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.chemical-grid .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(4, 20, 11, .3);
}
.chemical-grid .feature-item h4 {
  min-height: 42px; display: flex; align-items: flex-end;
  margin-bottom: 8px; font-size: 17px;
}
.chemical-grid .feature-item p,
.chemical-grid .feature-item li { font-size: 15px; line-height: 1.6; }
.chemical-grid .feature-item ul { margin-top: 0; }
.chemical-grid .feature-item ul li { padding-left: 20px; margin-bottom: 7px; }
.chemical-grid .feature-item ul li::before {
  content: none;
}
.chemical-grid .feature-item ul li {
  position: relative;
}
.chemical-grid .feature-item ul li::after {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%;
}

/* Checkerboard alternation: odd = light card, even = brand-green card */
.chemical-grid .feature-item:nth-child(odd) {
  background: #fff; border-left-color: var(--gold);
}
.chemical-grid .feature-item:nth-child(odd) h4 { color: var(--green); }
.chemical-grid .feature-item:nth-child(odd) p,
.chemical-grid .feature-item:nth-child(odd) li { color: var(--muted); }
.chemical-grid .feature-item:nth-child(odd) ul li::after { background: var(--gold); }

.chemical-grid .feature-item:nth-child(even) {
  background: linear-gradient(160deg, var(--green-bright), var(--green-dark));
  border-left-color: var(--gold-light);
}
.chemical-grid .feature-item:nth-child(even) h3 { color: #fff; }
.chemical-grid .feature-item:nth-child(even) h4 { color: #fff; }
.chemical-grid .feature-item:nth-child(even) p,
.chemical-grid .feature-item:nth-child(even) li { color: rgba(255, 255, 255, .9); }
.chemical-grid .feature-item:nth-child(even) ul li::after { background: var(--gold-light); }

/* ===== Equipment product page ===== */
.equipment-hero-section { padding: 70px 0; }
.equipment-hero {
  display: grid; grid-template-columns: .95fr 1.05fr;
  gap: 56px; align-items: center;
}
.equipment-hero-image,
.equipment-block-image {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.equipment-hero-image { padding: 22px; }
.equipment-hero-image img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 8px; box-shadow: none;
}
.equipment-hero-copy .eyebrow {
  color: var(--cyan); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; font-size: 13px; display: block; margin-bottom: 10px;
}
.equipment-hero-copy h2 { font-size: 36px; margin-bottom: 16px; }
.equipment-hero-copy p { max-width: 600px; color: var(--muted); margin-bottom: 14px; }
.equipment-hero-copy .btn { margin-top: 10px; }
.equipment-catalog-section .section-head { margin-bottom: 36px; }
.equipment-catalog { display: grid; gap: 26px; }
.equipment-block {
  display: grid; grid-template-columns: 330px minmax(0, 1fr);
  gap: 30px; align-items: stretch; padding: 26px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: 0 8px 22px rgba(12, 70, 36, .07);
}
.equipment-block-image {
  padding: 14px; display: flex; align-items: center; justify-content: center;
  box-shadow: none; background: var(--bg-soft);
}
.equipment-block-image img {
  width: 100%; height: 100%; max-height: 360px;
  object-fit: contain; border-radius: 8px; box-shadow: none;
}
.equipment-block-content h3 { font-size: 24px; margin-bottom: 18px; }
.equipment-list-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 30px; }
.equipment-list li { margin-bottom: 10px; font-size: 14.5px; }
.equipment-summary-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.equipment-summary-grid .feature-item { border-left-color: var(--gold); }

/* Equipment page image sizing while the HTML page is open/locked */
.split img[src$="oil-field-equipment-hero.png"],
.split img[src$="prod-2.jpg"],
.split img[src$="prod2.jpg"],
.split img[src$="prod3-1.jpg"],
.split img[src$="prod4.jpg"],
.split img[src$="prod5.jpg"] {
  width: min(100%, 460px);
  max-height: 430px;
  margin: 0 auto;
  object-fit: contain;
  background: #fff;
  padding: 14px;
}

.split img[src$="oil-field-equipment-hero.png"] {
  width: min(100%, 620px);
  max-height: 430px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .split img[src$="oil-field-equipment-hero.png"],
  .split img[src$="prod-2.jpg"],
  .split img[src$="prod2.jpg"],
  .split img[src$="prod3-1.jpg"],
  .split img[src$="prod4.jpg"],
  .split img[src$="prod5.jpg"] {
    width: min(100%, 420px);
    max-height: 380px;
  }
}

.split img[src$="oil-field-equipment-hero.png"] {
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}

/* ===== Shared product detail image cleanup ===== */
.product-polish .split img[src$="prod-3.jpg"],
.product-polish .split img[src$="Line-Pipes01.jpg"],
.product-polish .split img[src$="prod-5.jpg"],
.product-polish .split img[src$="prod-6.jpg"],
.product-polish .split img[src$="prod-7.jpg"],
.product-polish .split img[src$="prod-8.jpg"],
.product-polish .split img[src$="prod9.jpg"],
.product-polish .split img[src$="prod10.jpg"],
.product-polish .split img[src$="prod11.jpg"] {
  width: min(100%, 520px);
  height: 340px;
  margin: 0 auto;
  padding: 16px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-polish .split img[src$="Line-Pipes01.jpg"],
.product-polish .split img[src$="prod9.jpg"] {
  object-fit: cover;
}

.product-polish .split img[src$="prod10.jpg"],
.product-polish .split img[src$="prod11.jpg"] {
  width: min(100%, 390px);
  height: 330px;
}

.product-polish .section > .wrap > h1,
.product-polish .section > .wrap > .ibc-title {
  color: var(--green);
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.product-polish .section > .wrap > p,
.product-polish .section > .wrap > .ibc-text {
  max-width: 920px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 34px;
}

.product-polish .section.cta > .wrap > p {
  color: #fff;
  opacity: .92;
}

.product-polish .section > .wrap > .feature-item {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px;
  box-shadow: 0 8px 22px rgba(12, 70, 36, .07);
}

.product-polish .section > .wrap > .feature-item h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.product-polish .feature-list .feature-item {
  box-shadow: 0 8px 22px rgba(12, 70, 36, .06);
}

.product-polish .feature-list .feature-item h4:only-child {
  margin-bottom: 0;
  min-height: 38px;
  display: flex;
  align-items: center;
}

.product-polish .drum-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-polish .drum-card {
  border-color: var(--line);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: 0 8px 22px rgba(12, 70, 36, .06);
}

.product-polish .drum-card img {
  height: 220px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.product-polish .ibc-images { margin-top: 24px; }

.product-polish .split img[src$="prod-3.jpg"] {
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.product-polish .split img[src$="Line-Pipes01.jpg"] {
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.product-polish .split img[src$="prod-5.jpg"] {
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}

/* ===== CTA strip ===== */
.cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; text-align: center;
}
.cta h2 { color: #fff; font-size: 34px; margin-bottom: 14px; }
.cta p { max-width: 640px; margin: 0 auto 26px; opacity: .92; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.info-box { display: flex; gap: 16px; margin-bottom: 26px; }
.info-box .ico {
  flex: none; width: 48px; height: 48px; border-radius: 10px; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.info-box h4 { font-size: 17px; margin-bottom: 3px; }
.info-box p, .info-box a { color: var(--muted); font-size: 15px; }
.contact-form { background: var(--bg-soft); padding: 34px; border-radius: var(--radius); }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 13px 15px; margin-bottom: 16px; border: 1px solid var(--line);
  border-radius: 8px; font-family: inherit; font-size: 15px; background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--cyan); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.map-embed { margin-top: 60px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.map-embed iframe { width: 100%; height: 380px; border: 0; }

/* ===== Footer ===== */
.site-footer { background: #08331A; color: #c4d4c7; }
.footer-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 64px 20px 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 36px;
}
.footer-logo { margin-bottom: 18px; color: inherit; }
.footer-logo:hover { color: inherit; }
.site-footer .logo-text strong { color: #fff; }
.site-footer .logo-text small { color: var(--gold-light); }
.site-footer .logo img {
  height: 56px; width: auto; max-width: none;
  object-fit: contain; flex-shrink: 0;
}
.footer-about p { font-size: 14.5px; color: #a7bdab; }
.footer-col h4 { color: #fff; font-size: 17px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; background: var(--cyan); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #a7bdab; font-size: 14.5px; }
.footer-col ul a:hover { color: var(--cyan); padding-left: 4px; }
.f-line { font-size: 14px; color: #a7bdab; margin-bottom: 12px; }
.f-line strong { color: #fff; }
.f-line a { color: #a7bdab; }
.f-line a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); text-align: center; padding: 20px; font-size: 14px; color: #8ba491; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  nav { position: fixed; inset: 0 0 0 auto; width: 300px; max-width: 84vw;
        background: #fff; box-shadow: -4px 0 30px rgba(0, 0, 0, .12);
        transform: translateX(100%); transition: transform .3s; overflow-y: auto; padding-top: 70px; }
  .nav-menu.open { display: flex; }
  nav:has(.nav-menu.open) { transform: translateX(0); }
  nav.open { transform: translateX(0); }
  .nav-menu { flex-direction: column; align-items: stretch; gap: 0; padding: 0 16px 30px; }
  .nav-menu > li { border-bottom: 1px solid var(--line); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
              max-height: 0; overflow: hidden; transition: max-height .3s; padding: 0; border: 0; min-width: 0; }
  .has-dropdown.open .dropdown { max-height: 500px; padding: 4px 0 10px; }
  .dropdown a { padding-left: 16px; color: var(--muted); }
  .nav-cta a { margin: 14px 0 0; text-align: center; }

  .cards, .product-grid, .chemical-grid, .equipment-summary-grid, .product-polish .drum-gallery { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid, .chemical-hero, .equipment-hero, .equipment-block, .rig-management-panel, .industrial-drums-panel { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 36px; }
  .section-head h2 { font-size: 28px; }
  .equipment-list-columns { grid-template-columns: 1fr; }
  .equipment-block-image img { max-height: 300px; }
  .industrial-drums-gallery { padding: 0 30px 30px; }
}

@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .cards, .product-grid, .feature-list, .chemical-grid, .equipment-summary-grid, .drum-gallery, .industrial-drums-gallery, .contact-form .row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 90px 18px; }
  .hero h1 { font-size: 30px; }
  .chemical-hero-copy h2, .equipment-hero-copy h2, .rig-management-copy h2, .industrial-drums-copy h2 { font-size: 28px; }
  .chemical-hero-image, .equipment-hero-image { padding: 14px; }
  .industrial-drums-copy, .industrial-drums-aside { padding: 24px; }
  .industrial-drums-gallery { padding: 0 24px; }
  .industrial-drums-card img { height: 210px; }
  .rig-management-copy, .rig-management-aside { padding: 24px; }
  .equipment-block { padding: 18px; }
  .product-polish .split img[src$="prod-3.jpg"],
  .product-polish .split img[src$="Line-Pipes01.jpg"],
  .product-polish .split img[src$="prod-5.jpg"],
  .product-polish .split img[src$="prod-6.jpg"],
  .product-polish .split img[src$="prod-7.jpg"],
  .product-polish .split img[src$="prod-8.jpg"],
  .product-polish .split img[src$="prod9.jpg"],
  .product-polish .split img[src$="prod10.jpg"],
  .product-polish .split img[src$="prod11.jpg"] { height: 280px; padding: 12px; }
  .product-polish .drum-card img { height: 190px; }
}
/* ===== Site-wide responsive hardening ===== */
html, body { max-width: 100%; overflow-x: hidden; }
body { overflow-wrap: break-word; }
.wrap, .header-inner, .footer-inner { width: 100%; }
.logo, .logo-text, .nav-menu, .split > *, .feature-item, .product-card, .drum-card { min-width: 0; }
.breadcrumb { overflow-wrap: anywhere; }
.split div[style*="display:flex"] { flex-wrap: wrap; }

@media (max-width: 1100px) {
  .header-inner { gap: 12px; }
  .nav-menu { gap: 2px; }
  .nav-link, .nav-menu a { padding: 9px 10px; font-size: 14px; }
  .nav-cta a { padding: 9px 14px; margin-left: 4px; }
  .logo-text strong { font-size: 20px; letter-spacing: 2px; }
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .header-inner { padding: 10px 16px; }
  .logo img { height: 48px; }
  .site-header.scrolled .logo img { height: 42px; }
  .logo-text strong { font-size: 18px; letter-spacing: 1.5px; }
  .logo-text small { font-size: 6.5px; white-space: normal; max-width: 170px; }
  nav { width: min(320px, 86vw); }
  .hero { padding: 96px 16px; }
  .page-banner { padding: 70px 16px 54px; }
  .page-banner h1 { font-size: 34px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 34px; }
  .split { gap: 30px; }
  .split img { max-height: 420px; object-fit: contain; }
  .product-card .thumb { height: 190px; }
  .contact-form { padding: 26px; }
  .map-embed iframe { height: 320px; }
}

@media (max-width: 700px) {
  .wrap { padding: 0 16px; }
  .cards, .product-grid, .feature-list, .chemical-grid, .equipment-summary-grid, .product-polish .drum-gallery { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding-top: 44px; gap: 28px; }
  .hero h1, .page-banner h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
  .section-head h2, .split h2, .cta h2 { font-size: 28px; }
  .btn { width: 100%; max-width: 280px; text-align: center; padding: 12px 22px; }
  .hero .btn-row { align-items: center; flex-direction: column; }
  .split div[style*="display:flex"] { flex-direction: column; gap: 0 !important; }
  .tool-list li { padding-left: 30px; font-size: 14px; }
  .tool-list li::before { width: 18px; height: 18px; }
  .tool-list li::after { left: 7px; top: 8px; }
}

@media (max-width: 560px) {
  .header-inner { padding: 9px 14px; }
  .logo { gap: 8px; }
  .logo img { height: 42px; }
  .site-header.scrolled .logo img { height: 38px; }
  .logo-text strong { font-size: 15px; letter-spacing: 1px; }
  /* .logo-text small { display: none; } */
  .nav-toggle { padding: 6px; }
  nav { padding-top: 62px; }
  .section { padding: 48px 0; }
  .hero { padding: 76px 14px; }
  .page-banner { padding: 56px 14px 42px; }
  .hero h1, .page-banner h1 { font-size: 26px; }
  .section-head h2, .split h2, .cta h2, .rig-management-copy h2, .industrial-drums-copy h2 { font-size: 25px; }
  .card, .product-card .body, .feature-item, .contact-form { padding: 22px 18px; }
  .product-card .thumb { height: 180px; }
  .split img,
  .product-polish .split img[src$="prod-3.jpg"],
  .product-polish .split img[src$="Line-Pipes01.jpg"],
  .product-polish .split img[src$="prod-5.jpg"],
  .product-polish .split img[src$="prod-6.jpg"],
  .product-polish .split img[src$="prod-7.jpg"],
  .product-polish .split img[src$="prod-8.jpg"],
  .product-polish .split img[src$="prod9.jpg"],
  .product-polish .split img[src$="prod10.jpg"],
  .product-polish .split img[src$="prod11.jpg"] {
    width: 100%; height: auto; max-height: 300px; object-fit: contain;
  }
  .drum-card img, .product-polish .drum-card img { height: 180px; }
  .contact-form .row { gap: 0; }
  .map-embed { margin-top: 36px; }
  .map-embed iframe { height: 260px; }
}

@media (max-width: 380px) {
  .wrap { padding: 0 12px; }
  .hero h1, .page-banner h1 { font-size: 23px; }
  .section-head h2, .split h2, .cta h2 { font-size: 23px; }
  .logo-text strong { font-size: 13px; letter-spacing: .6px; }
  .btn { max-width: 100%; }
}