/* ================================================================
   HERO SECTION
   ================================================================ */

.hero {
  position: relative;
  width: 100vw;
  height: 600px;
  margin: 0 auto;
}

/* ── Slider track ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 1;
}

/* ── Individual slide ── */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Dark overlay 30% ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
  z-index: 1;
}

/* ── Content layer (form + text) ── */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  gap: 40px;
}

/* ── Contact form — fixed on left, outside slider ── */
.hero-form-wrap {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 400px;
  background: rgba(255, 255, 255, 0.50);
  border-radius: 8px;
  padding: 28px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.hero-form-field label {
  font-family: 'Futura', 'Century Gothic', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.hero-form-field input,
.hero-form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.70);
  border: none;
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 13px;
  font-family: 'Futura', 'Century Gothic', sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  outline: none;
  resize: none;
}

.hero-form-field input::placeholder,
.hero-form-field textarea::placeholder {
  color: #888;
}

.home-form input,
.home-form textarea {
  font-family: 'Futura', 'Century Gothic', sans-serif;
  font-weight: 300;
}

.home-form input::placeholder,
.home-form textarea::placeholder {
  font-family: 'Futura', sans-serif;
  font-weight: 300;
}

.hero-submit {
  width: 100%;
  background: #333333;
  color: #ffffff;
  font-family: 'Futura', 'Century Gothic', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 24px;
}

.hero-submit:hover {
  background: #222222;
}

/* ── Slide headline text ── */
.hero-text {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-text h1 {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 900;
  font-size: 80px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.05;
  text-align: right;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin: 0;
}

/* ── Arrow buttons ── */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.30);
}

.hero-arrow--prev {
  left: 16px;
}

.hero-arrow--next {
  right: 16px;
}

/* ================================================================
   PRODUCT HERO (product pages — 500px slider)
   ================================================================ */

.product-hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  height: 500px;
  overflow: hidden;
}

.product-hero .hero-slider,
.product-hero .product-slider {
  height: 500px;
}

.product-hero .hero-slide,
.product-hero .product-slide {
  height: 500px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

.product-hero .product-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.product-hero .product-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.product-hero .hero-overlay {
  background: transparent;
}

/* ================================================================
   IMF FEATURE CARDS
   ================================================================ */

.imf-feature-cards {
  width: 100%;
  background: #ffffff;
  padding: 40px 80px;
  box-sizing: border-box;
}

.imf-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.imf-card {
  background: #4CAF50;
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border-top: 2px solid rgba(255, 255, 255, 0.45);
}

.imf-card img {
  filter: brightness(0) invert(1);
}

.imf-card-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 16px;
}

.imf-card-text {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0;
}

/* ================================================================
   IMF POWER TRAK SECTION
   ================================================================ */

.imf-power-trak {
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: stretch;
}

.imf-pt-left {
  background: #2a2a2a;
  padding: 60px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.imf-pt-right {
  background: #ffffff;
  display: flex;
  align-items: stretch;
}

.imf-pt-heading {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 900;
  font-size: 52px;
  color: #ffffff;
  margin: 0 0 32px 0;
}

.imf-pt-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.imf-pt-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.imf-pt-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(476%) hue-rotate(86deg) brightness(95%) contrast(91%);
}

.imf-pt-title {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.imf-pt-desc {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #aaaaaa;
  line-height: 1.5;
  margin: 0;
}

.imf-pt-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================================================================
   IMF WHY CHOOSE PAKTHERM SECTION
   ================================================================ */

.imf-why-choose {
  width: 100%;
  background: #ffffff;
  padding: 60px 80px;
  box-sizing: border-box;
}

.imf-wc-heading {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 900;
  font-size: 75px;
  color: #EE5B30;
  text-align: center;
  margin: 0;
  padding-bottom: 24px;
}

.why-choose-inner {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 40px;
}

.imf-wc-image-area {
  /* no background — inherited from why-choose-inner */
}

.imf-wc-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.imf-wc-caption {
  margin: 24px 0 0 0;
  text-align: center;
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #444444;
}

.imf-wc-new {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #EE5B30;
}

.imf-wc-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.imf-wc-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.imf-wc-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(500%) hue-rotate(347deg) brightness(100%) contrast(95%);
}

.imf-wc-title {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #141414;
  margin: 0 0 4px 0;
}

.imf-wc-desc {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

.imf-wc-last-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.imf-wc-last-row .imf-wc-block {
  width: calc(33.333% - 16px);
}

/* ================================================================
   IMF SCOPE OF SUPPLY SECTION
   ================================================================ */

.imf-scope {
  width: 100%;
  background: #ffffff;
  padding: 60px 80px;
  box-sizing: border-box;
}

.imf-scope-heading {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 900;
  font-size: 75px;
  color: #EE5B30;
  text-align: center;
  margin: 0 0 40px 0;
}

.imf-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.imf-scope-card {
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.imf-scope-img-wrap {
  height: 180px;
  width: 100%;
  background: #ffffff;
  padding: 12px;
  box-sizing: border-box;
}

.imf-scope-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.imf-scope-label {
  background: #EE5B30;
  color: #ffffff;
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 900;
  font-size: 13px;
  text-align: center;
  padding: 10px 8px;
  text-transform: uppercase;
  margin: 0;
}

.imf-scope-last-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.imf-scope-last-row .imf-scope-card {
  width: calc(25% - 18px);
}

/* ================================================================
   PRODUCTS SECTION
   ================================================================ */

.products-section {
  background: #ffffff;
  padding: 80px 0 100px;
  width: 100%;
  overflow: hidden;
}

.products-heading {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 900;
  font-size: 75px;
  color: #EE5B30;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 40px;
  margin: 0;
  line-height: 1;
}

.products-slider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}

.products-arrow {
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #dddddd;
  color: #999999;
  font-size: 28px;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  padding: 0;
  position: relative;
  z-index: 2;
}

.products-arrow:hover {
  border-color: #bbbbbb;
  color: #555555;
}

.products-viewport {
  width: 1218px;
  flex-shrink: 0;
  overflow: hidden;
}

.products-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

/* ── Individual card ── */
.product-card {
  flex-shrink: 0;
  width: 390px;
  height: 680px;
  background: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.product-card-image {
  width: 100%;
  height: 290px;
  flex-shrink: 0;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0;
}

.product-card-name {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 900;
  font-size: 35px;
  color: #141414;
  line-height: 1.1;
  padding: 0 20px;
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: center;
  min-height: 80px;
}

.product-card-desc {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #666666;
  line-height: 1.5;
  padding: 0 20px;
  margin-top: 16px;
  margin-bottom: 20px;
  text-align: center;
  flex: 1;
}

.product-card-btn {
  display: block;
  margin: 0 auto 24px;
  width: fit-content;
  background: transparent;
  border: 2px solid #EE5B30;
  color: #EE5B30;
  padding: 14px 36px;
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}

.product-card-btn:hover {
  background: #EE5B30;
  color: #ffffff;
}

/* ================================================================
   ACHIEVEMENTS SECTION
   ================================================================ */

.achievements-section {
  background: #ffffff;
  padding: 80px 0 100px;
  width: 100%;
}

.achievements-heading {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 900;
  font-size: 75px;
  color: #EE5B30;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 40px;
  margin: 0;
  line-height: 1;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 60px;
}

.achievement-box {
  background: #ffffff;
  border: 2px solid #EE5B30;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.achievement-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.achievement-number {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: #141414;
  margin-top: 16px;
}

.achievement-label {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #666666;
  margin-top: 8px;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */

.about-section {
  background: #ffffff;
  padding: 80px 0;
  width: 100%;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 0;
}

.about-image-col {
  width: 50%;
  flex-shrink: 0;
}

.about-image-col img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-text-col {
  width: 50%;
  padding-left: 60px;
}

.about-heading {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: #141414;
  line-height: 1;
  margin: 0 0 24px 0;
}

.about-body {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #444444;
  line-height: 1.6;
  margin: 0;
}

.about-readmore {
  display: inline-block;
  margin-top: 30px;
  background: transparent;
  border: 2px solid #EE5B30;
  color: #EE5B30;
  padding: 12px 30px;
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.about-readmore:hover {
  background: #EE5B30;
  color: #ffffff;
}

/* ================================================================
   STATS AND AVAILABILITY SECTION
   ================================================================ */

.stats-section {
  background: #ffffff;
  padding: 60px 80px;
  width: 100%;
  box-sizing: border-box;
}

.stats-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.stats-col {
  flex: 1;
  padding: 40px;
  box-sizing: border-box;
}

.stats-col--orange {
  background: #EE5B30;
}

.stats-col--middle {
  background: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats-col--right {
  background: #ffffff;
}

/* Left column */
.stats-range-heading {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

.stats-range-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stats-range-list li {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
  margin-bottom: 12px;
}

.stats-range-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
}

/* Middle column */
.stats-supplied-label {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #666666;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: left;
}

.stats-big-number {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 900;
  font-size: 80px;
  color: #EE5B30;
  line-height: 1;
  margin-bottom: 16px;
}

.stats-supplied-sub {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

/* Right column */
.stats-available-heading {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #141414;
  margin: 0 0 12px 0;
  text-transform: uppercase;
}

.stats-available-underline {
  display: block;
  width: 120px;
  height: 6px;
  background: #2e7d32;
  margin-bottom: 16px;
}

.stats-available-text {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #444444;
  line-height: 1.7;
  margin: 0;
}

/* ================================================================
   MAP SECTION
   ================================================================ */

.map-section {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ================================================================
   FOOTER
   ================================================================ */

.site-footer {
  background: #1a1a1a;
  padding: 60px 80px;
  box-sizing: border-box;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* ── Column 1: Brand ── */
.footer-logo {
  height: 60px;
  width: auto;
  display: block;
}

.footer-brand-text {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #aaaaaa;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 0;
}

.footer-socials {
  margin-top: 20px;
}

.footer-social-link {
  color: #EE5B30;
  font-size: 24px;
  margin-right: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-social-link:hover {
  opacity: 0.75;
}

/* ── Column 2: Links + Phone ── */
.footer-links-block {
  display: flex;
  flex-direction: column;
}

.footer-phone-block {
  margin-top: 32px;
}

.footer-col-heading {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #EE5B30;
  margin: 0 0 16px 0;
}

.footer-col-heading--white {
  color: #ffffff;
}

.footer-link {
  display: block;
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #aaaaaa;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #EE5B30;
}

.footer-phone-line {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #aaaaaa;
  margin: 0 0 8px 0;
}

.footer-phone-country {
  color: #aaaaaa;
  margin-top: 12px;
}

.footer-wa-icon {
  color: #25D366;
  margin-right: 8px;
}

/* ── Column 3: Contact ── */
.footer-contact-line {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #aaaaaa;
  margin: 0 0 8px 0;
}

.footer-contact-label {
  color: #ffffff;
}

/* ── Column 4: Address ── */
.footer-address-text {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #aaaaaa;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

/* ── Bottom bar ── */
.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 20px;
  margin-top: 40px;
}

.footer-bottom-text {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #666666;
  text-align: center;
  margin: 0;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */

/* FIX 1 — white background on every surface of this page */
.page-template-page-about-php,
.page-template-page-about-php body,
.page-template-page-about-php main,
.page-template-page-about-php .about-title,
.page-template-page-about-php .about-content,
.page-template-page-about-php .about-icons-section {
  background: #ffffff;
}

.about-title {
  text-align: center;
  padding: 60px 0 40px;
  background: #ffffff;
}

.about-title h1 {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 900;
  font-size: 75px;
  color: #EE5B30;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
  padding: 0 80px 80px;
  background: #ffffff;
}

.about-col--image {
  margin: 0;
  padding: 0;
}

.about-col--image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

.about-col--text {
  margin: 0;
  padding-left: 40px;
  padding-top: 64px;
  display: flex;
  flex-direction: column;
}

.about-col--text h2 {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: #141414;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  line-height: 1.1;
}

.about-col--text p {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #444444;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 0;
}

.about-col--text p + p {
  margin-top: 24px;
}

.about-col--text .about-icons-img {
  width: 100%;
  height: auto;
  margin-top: 24px;
}

/* 55 Years image */
.about-55-image {
  padding: 0 80px;
  margin-bottom: 40px;
  background: #ffffff;
}

.about-55-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Two cards */
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 32px;
  padding: 0 80px 80px;
  background: #ffffff;
}

.about-card {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about-card h3 {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #141414;
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-card p {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 12px;
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-card ul li {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ── Request a Quote Page ── */

body.page-template-page-request-a-quote-php,
body.page-template-page-request-a-quote-php main {
  background-color: #ffffff;
}

.quote-section {
  padding: 80px;
  background-color: #ffffff;
}

/* Full-width header above grid (Fix 2) */
.quote-header {
  max-width: 1400px;
  margin: 0 auto 40px;
}

.quote-heading {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: #141414;
  margin: 0;
  line-height: 1.1;
}

.quote-underline {
  display: block;
  width: 80px;
  height: 4px;
  background: #EE5B30;
  margin: 12px 0 8px;
}

.quote-subtext {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #666666;
  margin-bottom: 0;
  margin-top: 0;
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.quote-form {
  background: #EE5B30;
  border-radius: 12px;
  padding: 32px;
}

.quote-field {
  display: flex;
  flex-direction: column;
}

.quote-field label {
  color: #ffffff;
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 6px;
}

.quote-form input,
.quote-form textarea {
  background: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  width: 100%;
  margin-bottom: 16px;
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  outline: none;
  resize: vertical;
}

.quote-submit {
  width: 100%;
  background: #333333;
  color: #ffffff;
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px;
  border: none;
  border-radius: 6px;
  margin-top: 8px;
  cursor: pointer;
  letter-spacing: 0.05em;
}

.quote-submit:hover {
  background: #222222;
}

/* RIGHT COLUMN */
.quote-info-heading {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #141414;
  margin-top: 0;
  margin-bottom: 24px;
}

.quote-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quote-contact-block {
  display: flex;
  flex-direction: column;
}

.quote-contact-label {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #141414;
  margin-bottom: 6px;
  margin-top: 0;
}

.quote-contact-text {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  margin: 0 0 4px 0;
}

.quote-icon--orange {
  color: #EE5B30;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

/* Follow Us */
.quote-follow {
  margin-top: 32px;
}

.quote-follow-heading {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #141414;
  margin-top: 0;
  margin-bottom: 16px;
}

.quote-social {
  display: flex;
  align-items: center;
}

.quote-social-icon {
  display: inline-flex;
  margin-right: 16px;
  text-decoration: none;
}

.quote-social-icon:last-child {
  margin-right: 0;
}

/* ── Products Dropdown ── */

.nav-item--dropdown {
  position: relative;
}

.nav-item--dropdown .nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a1a;
  min-width: 280px;
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.nav-item--dropdown:hover .nav-dropdown {
  display: block;
}

.nav-dropdown li {
  list-style: none;
  padding: 0;
}

.nav-dropdown a {
  display: block;
  padding: 12px 20px;
  color: #aaaaaa;
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: #EE5B30;
  background: rgba(255, 255, 255, 0.05);
}

/* ================================================================
   SOLAR INDUCTION MELTING FURNACE — electricity cards
   ================================================================ */

.simf-elec-card {
  border-top: 2px solid rgba(255,255,255,0.45);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* ================================================================
   SOLAR INDUCTION MELTING FURNACE — upgrade to solar section
   ================================================================ */

.simf-upgrade {
  width: 100%;
  background: #ffffff;
}

.simf-upgrade-banner {
  width: 100%;
  background: #4CAF50;
  padding: 20px 80px;
}

.simf-upgrade-banner-text {
  font-family: 'Futura', 'Futura PT', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

.simf-save-money {
  background: #ffffff;
  padding: 60px 80px;
}

.simf-save-heading {
  font-family: 'Futura', 'Futura PT', sans-serif;
  font-weight: 900;
  font-size: 52px;
  color: #EE5B30;
  text-align: center;
  margin-bottom: 48px;
}

.simf-save-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.simf-save-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.simf-save-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(500%) hue-rotate(347deg) brightness(100%) contrast(95%);
}

.simf-save-text {
  font-family: 'Futura', 'Futura PT', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #141414;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0;
}

/* ================================================================
   CBC PLC MONITORING & CONTROL SYSTEM
   ================================================================ */

.cbc-plc {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-attachment: scroll;
  background-size: cover;
  background-position: center center;
}

.cbc-plc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.30);
}

.cbc-plc-content {
  position: relative;
  z-index: 1;
  padding: 80px 80px;
  box-sizing: border-box;
}

.cbc-plc-heading {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 900;
  font-size: 52px;
  color: #ffffff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
}

.cbc-plc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cbc-plc-img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* ================================================================
   CBC SPECIALLY DESIGNED SECTION
   ================================================================ */

.cbc-specially {
  width: 100%;
  background: #ffffff;
  padding: 60px 80px;
  box-sizing: border-box;
}

.cbc-specially-heading {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: #141414;
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
}

.cbc-specially-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cbc-specially-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cbc-specially-img-wrap {
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.cbc-specially-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cbc-specially-label {
  background: #EE5B30;
  color: #ffffff;
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 900;
  font-size: 13px;
  text-align: center;
  padding: 10px 8px;
  text-transform: uppercase;
  margin: 0;
}

/* ── Why Choose PAKTHERM ── */
.cbc-why {
  width: 100%;
  background: #ffffff;
  padding: 60px 80px;
  box-sizing: border-box;
}

.cbc-why-heading {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: #141414;
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
}

.cbc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cbc-why-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.cbc-why-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(500%) hue-rotate(347deg) brightness(100%) contrast(95%);
}

.cbc-why-fa-icon {
  font-size: 40px;
  color: #EE5B30;
  flex-shrink: 0;
  line-height: 1;
}

.fa-thumbs-up {
  color: #EE5B30;
  font-size: 40px;
}

.cbc-why-text {
  display: flex;
  flex-direction: column;
}

.cbc-why-title {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #141414;
  margin: 0 0 6px 0;
  text-align: center;
}

.cbc-why-desc {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* ── Drawing Image ── */
.cbc-drawing {
  width: 100%;
  padding: 0;
  margin: 0;
  display: block;
  line-height: 0;
}

.cbc-drawing-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================================================================
   HGE - RECTIFIER TRANSFORMER SECTION
   ================================================================ */

.hge-rectifier {
  width: 100%;
  background: #ffffff;
  padding: 60px 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hge-rectifier-image {
  max-width: 700px;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
  margin-bottom: 32px;
  border-radius: 8px;
}

.hge-rectifier-heading {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #EE5B30;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.hge-rectifier-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #EE5B30;
  margin: 16px auto;
}

.hge-rectifier-desc {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #666666;
  text-align: center;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ================================================================
   HGE - BATTERY ASSEMBLY SECTION
   ================================================================ */

.hge-battery {
  width: 100%;
  background: #f4f4f4;
  padding: 60px 80px;
  box-sizing: border-box;
}

.hge-battery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hge-battery-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
}

.hge-battery-heading {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #141414;
  margin-top: 0;
  margin-bottom: 0;
}

.hge-battery-divider {
  display: block;
  width: 60px;
  height: 4px;
  background: #EE5B30;
  margin: 12px 0 16px;
}

.hge-battery-desc {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: #555555;
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

/* ================================================================
   PRODUCT HERO — slider-prev / slider-next arrow buttons
   ================================================================ */

.product-hero .slider-prev,
.product-hero .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
}

.product-hero .slider-prev:hover,
.product-hero .slider-next:hover {
  background: rgba(255, 255, 255, 0.30);
}

.product-hero .slider-prev { left: 16px; }
.product-hero .slider-next { right: 16px; }

/* ================================================================
   TRANSFORMER — General Section
   ================================================================ */

.transformer-general {
  width: 100%;
  background: #f4f4f4;
  padding: 60px 80px;
  box-sizing: border-box;
}

.transformer-general-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.transformer-general-heading {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: #141414;
  margin-bottom: 24px;
  margin-top: 0;
}

.transformer-general-text {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #444444;
  line-height: 1.7;
  margin-bottom: 24px;
}

.transformer-general-btn {
  display: inline-block;
  background: #EE5B30;
  color: #ffffff;
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
}

.transformer-general-image {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-left: auto;
}

/* ================================================================
   TRANSFORMER — All Types Section
   ================================================================ */

.transformer-all-types-section {
  width: 100%;
  display: block;
}

/* ================================================================
   CONTACT FORM 7 — Hero Form (home page)
   ================================================================ */

/* FIX 1 — Field group: label above input */
.home-form .hero-field {
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 18px !important;
}

/* FIX 2 — Placeholder text more transparent */
.home-form .wpcf7-form-control::placeholder {
  color: rgba(0,0,0,0.5) !important;
}

/* FIX 3 — Labels */
.home-form label {
  font-family: Futura, sans-serif !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  color: #141414 !important;
  margin-bottom: 6px !important;
  display: block !important;
}

/* FIX 4 — Input fields */
.home-form .wpcf7-text,
.home-form .wpcf7-email,
.home-form .wpcf7-tel {
  padding: 14px !important;
  height: 48px !important;
  width: 100% !important;
  background: rgba(255,255,255,0.70) !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: Futura, sans-serif !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  box-sizing: border-box !important;
}

/* FIX 5 — Message textarea */
.home-form .wpcf7-textarea {
  height: 80px !important;
  width: 100% !important;
  padding: 14px !important;
  background: rgba(255,255,255,0.70) !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: Futura, sans-serif !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  box-sizing: border-box !important;
  resize: none !important;
}

/* FIX 6 — Submit button */
.home-form .wpcf7-submit {
  background: #EE5B30 !important;
  color: white !important;
  font-family: Futura, sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 14px 40px !important;
  display: block !important;
  margin: 16px auto 0 !important;
  width: auto !important;
  cursor: pointer !important;
  border: none !important;
  border-radius: 4px !important;
}

.home-form .wpcf7-submit:hover {
  background: #d44e25 !important;
}

/* ================================================================
   CONTACT FORM 7 — Request a Quote Form
   ================================================================ */

.quote-form-wrap {
  background: #EE5B30;
  border-radius: 12px;
  padding: 32px;
}

.quote-form-wrap .wpcf7-form {
  background: transparent;
}

.quote-form-wrap label {
  color: white !important;
  font-family: Futura, sans-serif !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  display: block !important;
  margin-bottom: 6px !important;
}

.quote-form-wrap .wpcf7-text,
.quote-form-wrap .wpcf7-email,
.quote-form-wrap .wpcf7-tel,
.quote-form-wrap .wpcf7-textarea {
  width: 100% !important;
  background: white !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 16px !important;
  font-family: Futura, sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  margin-bottom: 16px !important;
  display: block !important;
  box-sizing: border-box !important;
}

.quote-form-wrap .wpcf7-textarea {
  height: 100px !important;
  resize: none !important;
}

.quote-form-wrap input::placeholder,
.quote-form-wrap textarea::placeholder {
  color: rgba(0,0,0,0.35) !important;
  font-family: Futura, sans-serif !important;
  font-weight: 300 !important;
}

.quote-form-wrap .wpcf7-submit {
  width: 100% !important;
  background: #333333 !important;
  color: white !important;
  font-family: Futura, sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 14px !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  margin-top: 8px !important;
}

.quote-form-wrap .wpcf7-submit:hover {
  background: #141414 !important;
}

/* ================================================================
   HEADER — MOBILE RESPONSIVE
   ================================================================ */

.hamburger {
  display: none;
}

@media (max-width: 768px) {
  /* FIX 5 — Remove grey area */
  body { margin: 0; padding: 0; }

  /* FIX 1 — Header full width */
  .site-header { width: 100%; left: 0; right: 0; height: 80px; margin: 0; }
  .header-inner { width: 100%; padding: 0 16px !important; height: 80px; display: flex; justify-content: space-between; align-items: center; }
  .header-logo img {
    height: 50px !important;
    width: auto !important;
  }

  /* FIX 2 — Nav hidden by default, shown only when open */
  .nav-list { display: none !important; }
  .nav-list.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #141414;
    z-index: 999;
    padding: 20px 0;
  }

  /* FIX 3 — Hamburger on right, logo on left */
  .hamburger { display: flex !important; margin-left: auto; flex-direction: column; justify-content: space-between; width: 24px; height: 18px; cursor: pointer; background: none; border: none; padding: 0; }
  .hamburger span { display: block; width: 100%; height: 2px; background: #ffffff; border-radius: 2px; }
  .header-logo { margin-right: auto; }

  /* Nav items */
  .nav-item {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-cta { margin: 16px auto; display: inline-block; }
  .nav-item--dropdown .nav-dropdown { position: static; background: #222222; width: 100%; display: none; box-shadow: none; border-radius: 0; }
  .nav-item--dropdown.open .nav-dropdown { display: block; }

  /* FIX — Prevent horizontal overflow causing grey side area */
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  * {
    box-sizing: border-box;
  }
  .site-header,
  .section-hero,
  .hero,
  .section-about-home,
  .section-products-grid,
  .section-achievements,
  .site-footer {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* FIX — About section mobile */
  .about-section {
    padding: 40px 20px;
  }
  .about-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
  }
  .about-image-col {
    order: 1 !important;
    width: 100% !important;
  }
  .about-image-col img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .about-text-col {
    order: 2 !important;
    width: 100% !important;
    padding-left: 0 !important;
  }

  /* FIX — Products slider arrows mobile */
  .products-slider-wrap {
    position: relative;
    overflow: hidden !important;
  }
  .products-slider-wrap .products-arrow--prev {
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    display: flex !important;
  }
  .products-slider-wrap .products-arrow--next {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    display: flex !important;
  }

  /* FIX — Products slider card visibility mobile */
  .products-viewport {
    width: 100% !important;
    max-width: 390px !important;
    overflow: visible !important;
  }
  .products-track {
    display: flex !important;
  }
  .product-card {
    flex-shrink: 0 !important;
    width: 390px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .products-slider-wrap {
    justify-content: center !important;
    overflow: hidden !important;
  }

  /* FIX — Achievements section mobile */
  .achievements-heading {
    font-size: clamp(32px, 8vw, 75px) !important;
    padding: 0 20px;
    text-align: center;
  }
  .achievements-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 0 20px !important;
  }
  .achievement-box {
    width: 100% !important;
    max-width: 320px !important;
  }

  /* FIX 1 — Achievements heading to first box gap */
  .achievements-grid {
    margin-top: 40px !important;
  }

  /* FIX 2 — Stats section stacked */
  .stats-section {
    display: flex !important;
    flex-direction: column !important;
  }
  .stats-col--orange,
  .stats-col--middle {
    width: 100% !important;
  }
  .stats-col--right {
    width: 100% !important;
    margin-top: 0 !important;
  }

  /* FIX 3 — Footer 2x2 grid */
  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    padding: 40px 20px !important;
  }
  .footer-brand,
  .footer-col {
    width: 100% !important;
  }

  /* FIX — About page two-column section mobile */
  .about-content {
    display: flex !important;
    flex-direction: column !important;
  }
  .about-col--image {
    order: 1 !important;
    width: 100% !important;
  }
  .about-col--image img {
    width: 100% !important;
    height: auto !important;
  }
  .about-col--text {
    order: 2 !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding: 24px 20px !important;
  }

  /* FIX — Request a Quote page two-column mobile */
  .quote-inner {
    display: flex !important;
    flex-direction: column !important;
  }
  .quote-col--form {
    order: 1 !important;
    width: 100% !important;
  }
  .quote-col--info {
    order: 2 !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-top: 32px !important;
  }
  .quote-contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }
  .quote-contact-block {
    width: 100% !important;
  }

  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  /* FIX — Product hero mobile */
  .product-hero {
    width: 100% !important;
    height: 177px !important;
    min-height: unset !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
  }
  .product-hero .product-slider,
  .product-hero .hero-slider {
    width: 100% !important;
    height: 177px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .product-hero .product-slide,
  .product-hero .hero-slide {
    width: 100% !important;
    height: 177px !important;
    background-size: cover !important;
    background-position: center center !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .product-hero + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* FIX — Hero contact form mobile */
  .hero-form-wrap {
    width: 280px !important;
    left: 16px !important;
    padding: 16px !important;
  }
  .hero-form-wrap .wpcf7-text,
  .hero-form-wrap .wpcf7-email,
  .hero-form-wrap .wpcf7-tel,
  .hero-form-wrap .wpcf7-textarea {
    padding: 10px !important;
    font-size: 12px !important;
  }
  .hero-form-wrap label {
    font-size: 11px !important;
  }
  .hero-form-wrap .wpcf7-submit {
    padding: 10px !important;
    font-size: 14px !important;
  }

  /* FIX — Home page text sizes mobile */
  .about-heading {
    font-size: clamp(28px, 7vw, 60px) !important;
  }
  .about-body {
    font-size: clamp(14px, 4vw, 20px) !important;
  }
  .about-readmore {
    font-size: clamp(11px, 3vw, 14px) !important;
  }
  .products-heading {
    font-size: clamp(28px, 8vw, 75px) !important;
  }

  /* FIX — About page font sizes mobile */
  .about-title h1 {
    font-size: clamp(32px, 8vw, 75px) !important;
    padding: 0 20px !important;
  }
  .about-col--text h2 {
    font-size: clamp(24px, 6vw, 48px) !important;
  }
  .about-col--text p {
    font-size: clamp(14px, 4vw, 20px) !important;
    padding: 0 4px !important;
  }
  .about-card h3 {
    font-size: clamp(16px, 5vw, 22px) !important;
  }
  .about-card p,
  .about-card li {
    font-size: clamp(13px, 3.5vw, 16px) !important;
  }

  /* FIX — IMF feature cards mobile */
  .imf-cards-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 20px !important;
  }
  .imf-card {
    width: 100% !important;
  }

  /* FIX — IMF Power Trak section mobile */
  .imf-power-trak {
    display: flex !important;
    flex-direction: column !important;
  }
  .imf-pt-left {
    order: 1 !important;
    width: 100% !important;
    padding: 24px 20px !important;
  }
  .imf-pt-right {
    order: 2 !important;
    width: 100% !important;
  }
  .imf-pt-image {
    width: 100% !important;
    height: auto !important;
  }
  .imf-pt-features {
    grid-template-columns: 1fr !important;
  }

  /* FIX — IMF Why Choose PAKTHERM section mobile */
  .why-choose-inner {
    display: flex !important;
    flex-direction: column !important;
    padding: 20px !important;
  }
  .imf-wc-image-area {
    order: 1 !important;
    width: 100% !important;
  }
  .imf-wc-image {
    width: 100% !important;
    height: auto !important;
  }
  .imf-wc-caption {
    order: 2 !important;
    text-align: center !important;
    padding: 16px 0 !important;
  }
  .imf-wc-features {
    order: 3 !important;
    grid-template-columns: 1fr !important;
  }
  .imf-wc-last-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
  }
  .imf-wc-last-row .imf-wc-block {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .imf-wc-heading {
    font-size: clamp(32px, 8vw, 75px) !important;
  }

  /* FIX — IMF Scope of Supply section mobile */
  .imf-scope-heading {
    font-size: clamp(32px, 8vw, 75px) !important;
  }
  .imf-scope-grid {
    grid-template-columns: 1fr !important;
  }
  .imf-scope-last-row {
    flex-direction: column !important;
    align-items: center !important;
  }
  .imf-scope-card {
    width: 100% !important;
  }

  /* FIX — Solar IMF: Melt Your Electricity Bills section mobile */
  .simf-elec-inner {
    display: flex !important;
    flex-direction: column !important;
  }
  .simf-elec-left {
    order: 1 !important;
    width: 100% !important;
    padding: 24px 20px !important;
  }
  .simf-elec-heading {
    font-size: clamp(28px, 7vw, 64px) !important;
  }
  .simf-elec-text {
    font-size: clamp(13px, 3.5vw, 16px) !important;
  }
  .simf-elec-right {
    order: 2 !important;
    width: 100% !important;
    padding: 0 20px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
  .simf-elec-card {
    width: 100% !important;
  }

  /* FIX — Solar IMF: Upgrade To Solar section mobile */
  .simf-upgrade-banner-text {
    font-size: clamp(16px, 4vw, 24px) !important;
    padding: 0 20px !important;
  }
  .simf-save-heading {
    font-size: clamp(28px, 7vw, 52px) !important;
  }
  .simf-save-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0 20px !important;
    gap: 24px !important;
  }
  .simf-save-block {
    width: 100% !important;
  }

  /* FIX — CBC: Introduction section mobile */
  .cbc-intro-inner {
    display: flex !important;
    flex-direction: column !important;
  }
  .cbc-intro-left {
    order: 1 !important;
    width: 100% !important;
    padding: 24px 20px !important;
  }
  .cbc-intro-heading {
    font-size: clamp(28px, 7vw, 64px) !important;
  }
  .cbc-intro-text {
    font-size: clamp(13px, 3.5vw, 16px) !important;
  }
  .cbc-intro-right {
    order: 2 !important;
    width: 100% !important;
  }
  .cbc-intro-image {
    width: 100% !important;
    height: auto !important;
  }

  /* FIX — CBC: PLC Monitoring section mobile */
  .cbc-plc-content {
    display: flex !important;
    flex-direction: column !important;
    padding: 24px 20px !important;
  }
  .cbc-plc-heading {
    font-size: clamp(28px, 7vw, 64px) !important;
  }
  .cbc-plc-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
  .cbc-plc-img {
    width: 100% !important;
    height: auto !important;
  }

  /* FIX — CBC: Specially Designed section mobile */
  .cbc-specially {
    padding: 40px 20px !important;
  }
  .cbc-specially-heading {
    font-size: clamp(28px, 7vw, 64px) !important;
  }
  .cbc-specially-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .cbc-specially-card {
    width: 100% !important;
  }
  .cbc-specially-label {
    font-size: clamp(13px, 3.5vw, 16px) !important;
  }

  /* FIX — CBC: Why Choose PAKTHERM section mobile */
  .cbc-why {
    padding: 40px 20px !important;
  }
  .cbc-why-heading {
    font-size: clamp(28px, 7vw, 64px) !important;
  }
  .cbc-why-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .cbc-why-block {
    width: 100% !important;
  }
  .cbc-why-title {
    font-size: clamp(14px, 4vw, 18px) !important;
  }
  .cbc-why-desc {
    font-size: clamp(13px, 3.5vw, 15px) !important;
  }

  /* ── Air Pollution Control System – Introduction ── */
  .apcs-intro-inner {
    display: flex !important;
    flex-direction: column !important;
  }
  .apcs-intro-left {
    order: 1 !important;
    width: 100% !important;
    padding: 24px 20px !important;
  }
  .apcs-intro-heading {
    font-size: clamp(24px, 6vw, 48px) !important;
  }
  .apcs-intro-text {
    font-size: clamp(14px, 3.5vw, 18px) !important;
  }
  .apcs-intro-right {
    order: 2 !important;
    width: 100% !important;
    padding: 0 20px 24px !important;
  }
  .apcs-intro-image {
    width: 100% !important;
    height: auto !important;
  }

  /* ── Air Pollution Control System – Customize Design ── */
  .apcs-customize-heading {
    font-size: clamp(20px, 5vw, 40px) !important;
    padding: 0 20px !important;
    text-align: center !important;
  }
  .apcs-features-heading {
    font-size: clamp(24px, 6vw, 36px) !important;
  }
  .apcs-features-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0 20px !important;
    gap: 24px !important;
  }
  .apcs-feature-block {
    width: 100% !important;
  }

  /* ── Energy Saver Hydrogen Gas Electrolyzer – Introduction ── */
  .hge-intro-inner {
    display: flex !important;
    flex-direction: column !important;
  }
  .hge-intro-left {
    order: 1 !important;
    width: 100% !important;
    padding: 24px 20px !important;
  }
  .hge-intro-heading {
    font-size: clamp(24px, 6vw, 48px) !important;
  }
  .hge-intro-text {
    font-size: clamp(14px, 3.5vw, 18px) !important;
  }
  .hge-intro-right {
    order: 2 !important;
    width: 100% !important;
    padding: 0 20px 24px !important;
  }

  /* ── Energy Saver Hydrogen Gas Electrolyzer – Rectifier Transformer ── */
  .hge-rectifier-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  .hge-rectifier-heading {
    font-size: clamp(24px, 6vw, 36px) !important;
  }
  .hge-rectifier-desc {
    font-size: clamp(13px, 3.5vw, 16px) !important;
  }

  /* ── Energy Saver Hydrogen Gas Electrolyzer – Battery Assembly ── */
  .hge-battery-inner {
    display: flex !important;
    flex-direction: column !important;
  }
  .hge-battery-left {
    order: 1 !important;
    width: 100% !important;
  }
  .hge-battery-left img {
    width: 100% !important;
    height: auto !important;
  }
  .hge-battery-right {
    order: 2 !important;
    width: 100% !important;
    padding: 24px 20px !important;
    text-align: center !important;
  }
  .hge-battery-heading {
    font-size: clamp(24px, 6vw, 42px) !important;
    text-align: center !important;
  }
  .hge-battery-divider {
    margin: 12px auto !important;
  }
  .hge-battery-desc {
    font-size: clamp(14px, 4vw, 22px) !important;
    text-align: center !important;
  }

  /* ── Transformer – General ── */
  .transformer-general-inner {
    display: flex !important;
    flex-direction: column !important;
  }
  .transformer-general-left {
    order: 1 !important;
    width: 100% !important;
    padding: 24px 20px !important;
  }
  .transformer-general-heading {
    font-size: clamp(24px, 6vw, 48px) !important;
  }
  .transformer-general-text {
    font-size: clamp(14px, 3.5vw, 18px) !important;
  }
  .transformer-general-right {
    order: 2 !important;
    width: 100% !important;
    padding: 0 20px 24px !important;
  }
  .transformer-general-image {
    width: 100% !important;
    height: auto !important;
  }

}

@media (max-width: 480px) {
  .about-cards {
    padding: 20px !important;
    gap: 16px !important;
  }
  .about-card {
    padding: 24px !important;
  }
}

@media (max-width: 400px) {
  .hero-form-wrap {
    width: 220px !important;
    left: 10px !important;
    padding: 12px !important;
  }
}

/* ── iPad (769px – 1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Header */
  .header-inner {
    padding: 0 24px;
  }
  .header-logo img {
    height: 60px;
  }
  .nav-cta {
    font-size: 12px !important;
    padding: 8px 12px !important;
    white-space: nowrap !important;
  }
  .header-nav ul {
    gap: 20px;
  }
  .header-nav ul li a {
    font-size: 12px;
  }

  /* About Section */
  .about-text-col h2 {
    font-size: clamp(28px, 4vw, 48px);
  }
  .about-text-col p {
    font-size: clamp(14px, 2vw, 20px);
  }
  .about-text-col a {
    font-size: 13px;
    padding: 10px 20px;
  }

  /* Achievements – 2×2 grid */
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* Overflow fix */
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
  .section-hero,
  .hero,
  .product-slider {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Stats Section */
  .stats-col--orange h3,
  .stats-col--orange p {
    font-size: clamp(14px, 2vw, 24px) !important;
  }
  .stats-col--middle p {
    font-size: clamp(12px, 1.5vw, 20px) !important;
  }
  .stats-available-heading {
    font-size: clamp(20px, 3vw, 32px) !important;
  }
  .stats-available-text {
    font-size: clamp(12px, 1.5vw, 16px) !important;
  }

  /* Footer – 2 columns per row */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }

  /* About Page */
  .about-title h1 {
    font-size: clamp(40px, 6vw, 75px) !important;
  }
  .about-col--text h2 {
    font-size: clamp(28px, 4vw, 48px) !important;
  }
  .about-col--text p {
    font-size: clamp(14px, 2vw, 20px) !important;
  }

  /* Request a Quote */
  .quote-inner {
    display: flex !important;
    flex-direction: column !important;
  }
  .quote-col--form {
    order: 1 !important;
    width: 100% !important;
  }
  .quote-col--info {
    order: 2 !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-top: 32px !important;
  }

  /* Product Hero – reduce height and remove gap */
  .product-hero {
    height: 245px !important;
    min-height: unset !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  .product-hero .product-slider,
  .product-hero .hero-slider {
    height: 245px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .product-hero .product-slide,
  .product-hero .hero-slide {
    height: 245px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .product-hero + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* Hydrogen Gas Electrolyzer – intro padding */
  .hge-intro {
    padding-top: 40px !important;
  }

  /* Air Pollution Control System – intro padding */
  .apcs-intro {
    padding-top: 40px !important;
  }

  /* Hydrogen Gas Electrolyzer – intro text */
  .hge-intro-heading {
    font-size: clamp(24px, 4vw, 48px) !important;
  }
  .hge-intro-text {
    font-size: clamp(13px, 2vw, 18px) !important;
  }

  /* Air Pollution Control System – intro text */
  .apcs-intro-heading {
    font-size: clamp(24px, 4vw, 48px) !important;
  }
  .apcs-intro-text {
    font-size: clamp(13px, 2vw, 18px) !important;
  }

  /* Continuous Billet Caster – Introduction */
  .cbc-intro-heading {
    font-size: clamp(24px, 4vw, 48px) !important;
  }
  .cbc-intro-text {
    font-size: clamp(13px, 2vw, 18px) !important;
  }

  /* Continuous Billet Caster – PLC Monitoring 2×2 */
  .cbc-plc-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .cbc-plc-img {
    width: 100% !important;
    height: auto !important;
  }

  /* Continuous Billet Caster – Specially Designed */
  .cbc-specially-heading {
    font-size: clamp(24px, 4vw, 48px) !important;
  }
  .cbc-specially-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Solar Induction – fix black gap after hero */
  .page-template-page-product-solar-induction-melting-furnace-php .product-hero {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .page-template-page-product-solar-induction-melting-furnace-php .simf-electricity {
    margin-top: 0 !important;
    padding-top: 40px !important;
  }
  .simf-electricity {
    padding-top: 40px !important;
  }

  /* Solar Induction – text above, cards below in a row */
  .simf-elec-inner {
    display: flex !important;
    flex-direction: column !important;
  }
  .simf-elec-left {
    order: 1 !important;
    width: 100% !important;
  }
  .simf-elec-heading {
    font-size: clamp(28px, 4vw, 64px) !important;
  }
  .simf-elec-text {
    font-size: clamp(13px, 2vw, 16px) !important;
  }
  .simf-elec-right {
    order: 2 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
  }
  .simf-elec-card {
    width: 50% !important;
  }

  /* Induction Melting Furnace – four green cards 2×2 */
  .imf-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Power Trak – text above image */
  .imf-power-trak {
    display: flex !important;
    flex-direction: column !important;
  }
  .imf-pt-left {
    order: 1 !important;
    width: 100% !important;
  }
  .imf-pt-right {
    order: 2 !important;
    width: 100% !important;
  }
  .imf-pt-image {
    width: 100% !important;
    height: auto !important;
  }

  /* Why Choose Paktherm – text relative */
  .imf-wc-heading {
    font-size: clamp(36px, 5vw, 75px) !important;
  }
  .imf-wc-title {
    font-size: clamp(14px, 2vw, 18px) !important;
  }
  .imf-wc-desc {
    font-size: clamp(12px, 1.5vw, 14px) !important;
  }

  /* Scope of Supply – 2 cards per row */
  .imf-scope-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .imf-scope-last-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    justify-content: start !important;
    width: 100% !important;
  }
  .imf-scope-last-row .imf-scope-card {
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
  }

}
