/* =========================
   Global Variables
========================= */
:root {
  --black: #050505;
  --dark: #0b0c0e;
  --gold: #f3bd13;
  --muted: #b8b8b8;
  --line: rgba(243, 189, 19, 0.45);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #050505;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   Header / Navigation
========================= */
.topbar {
    background: #000;
    border-bottom: 1px solid rgba(245,189,0,.3);
    padding: 8px 25px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.topbar .container {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    display: block;
    max-height: 80px;
    width: auto;
}

.brand-text strong {
    display: block;
    color: #f5bd00;
    font-size: 1.875rem;
    line-height: 1;
    letter-spacing: 1.5px;
}

.brand-text small {
    display: block;
    color: #fff;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-top: 3px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-nav a {
    position: relative;
    display: inline-block;
    padding: 15px 0;
    font-weight: bold;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #f5bd00;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
    color: #f5bd00;
}

/* =========================
   Common Styles
========================= */
.section-pad {
  padding: 54px 34px;
  max-width: 1280px;
  margin: auto;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: 60px;
  line-height: 0.92;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: 1px;
}
h2 {
  font-size: 43px;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 3px;
  font-weight: 900;
}
h1 span,
h2 span,
.quote-form h3 {
  color: var(--gold);
}
p {
  color: #ddd;
  line-height: 1.55;
}
.section-bg {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.7)), var(--bg);
  background-size: cover;
  background-position: center;
}

/* =========================
   Hero Section
========================= */
.hero {
    position: relative;
    min-height: 80vh;
    height: 620px;
    overflow: hidden;
    border-top: 3px solid #f5bd00;
    background: #050505;
}

.hero-slider,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slider {
    z-index: 0;
}

.hero-slide {
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.2s ease-in-out;
    animation: none;
    will-change: transform, opacity;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide.active.zoom-out {
    animation: heroZoomOut 5s ease forwards;
}

.hero-slide.active.zoom-in {
    animation: heroZoomIn 5s ease forwards;
}

@keyframes heroZoomOut {
    from {
        transform: scale(1.12);
    }
    to {
        transform: scale(1);
    }
}

@keyframes heroZoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.12);
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.18) 0%,
        rgba(0,0,0,.10) 38%,
        rgba(0,0,0,.02) 72%,
        rgba(0,0,0,0) 100%
    );
    pointer-events: none;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 34px;
}

.hero-copy {
    max-width: 520px;
}

.hero-copy h1.main-title {
    font-size: 3.125rem;
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 25px;
}

.hero-copy h1 span {
    color: #f5bd00;
}

.hero-section-learn-button {
    background: #f5bd00;
    color: #000;
    padding: 18px 40px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-weight: 800;
    border-radius: 0;
}

/* =========================
   About Section
========================= */
.about {
  background: #080808;
}
.about-grid {
  display: grid;
  grid-template-columns: 22% 34% 44%;
  gap: 26px;
  align-items: center;
}
.about-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
.logo-card {
  padding: 30px;
  border: 1px solid var(--line);
  text-align: center;
}
.about-text {
  font-size: 14px;
}
.about-text h3{
  color: #f5bd00;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.stats b {
  color: var(--gold);
  display: block;
}
.stats span {
  font-size: 12px;
  color: #eee;
}

.client-section {
    padding: 22px 60px 55px;
    background: #060606;
}

.client-title h3 {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 900;
    margin: 0;
}

.client-line {
    width: 95px;
    height: 3px;
    margin-top: 8px;
    background: #f5bd00;
}

.client-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
}

.client-viewport {
    overflow: hidden;
    width: 100%;
}

.client-track {
    display: flex;
    gap: 26px;
    transition: transform 0.6s ease;
}

.client-card {
    flex: 0 0 calc((100% - 104px) / 5);
    height: 105px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.client-card img {
    max-width: 100%;
    max-height: 75px;
    object-fit: contain;
}

.client-carousel-button {
    flex: 0 0 42px;
    width: 42px;
    height: 55px;
    border: 2px solid #f5bd00;
    background: transparent;
    color: #f5bd00;
    font-size: 48px;
    line-height: 42px;
    cursor: pointer;
}

.client-dots {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
}

.client-dot {
    width: 10px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    border: 0;
    cursor: pointer;
}

.client-dot.active {
    background: #f5bd00;
}

@media (max-width: 900px) {
    .client-section {
        padding: 22px 20px 45px;
    }

    .client-card {
        flex: 0 0 calc((100% - 26px) / 2);
    }
}

.client-next {
    margin-left: 0;
}

/* =========================
   Services Section
========================= */
.services-container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:0 40px;
}

.services {
  max-width: none;
  padding-left: 34px;
  padding-right: 34px;
}
.services > h2,
.services > .section-intro {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.section-intro {
  max-width: 820px;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.service-grid {
  max-width: 1280px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 160px;
  border: 1px solid var(--line);
  padding: 22px;
  background: rgba(0, 0, 0, 0.58);
}
.service-card span,
.supply-card span {
  color: var(--gold);
  font-weight: 900;
}
.service-card h3,
.supply-card h3,
.why-card h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 6px 0;
  color: #fff;
}

.why-card h3 {
  margin: 15px 0;
}

.service-card p,
.supply-card p,
.why-card p {
  font-size: 13px;
  color: #cfcfcf;
}

.section-title-wrap{
    text-align: left;
    margin-bottom: 20px;
    position: relative;
}

.section-title-line{
    width: 220px;
    height: 3px;
    background: linear-gradient(
        90deg,
        #f5bd00 0%,
        #f5bd00 55%,
        rgba(245, 189, 0, 0.45) 75%,
        rgba(245, 189, 0, 0) 100%
    );
    position: relative;
    margin-top: 10px;
}

.section-title-line span{
    position: absolute;
    left: 50%;
    top: -4px;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #f5bd00;
    border-radius: 50%;
}

/* =========================
   Supply Section
   Desktop: 2 cards + 3 cards
   Tablet: 2 cards per row
   Mobile: 1 card per row
========================= */

.supply {
  text-align: left;
  background: #060606;
}

.supply h2 {
  text-align: center;
}

/* Desktop pyramid layout */
.supply .supply-grid {
  width: 100%;
  max-width: 1280px;
  margin: 28px auto 0;

  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* Each card occupies 2 out of 6 columns */
.supply .supply-card {
  grid-column: span 2;
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
}

/* First row: 2 cards centred */
.supply .supply-card:nth-child(1) {
  grid-column: 2 / span 2;
}

.supply .supply-card:nth-child(2) {
  grid-column: 4 / span 2;
}

/* Second row: 3 cards */
.supply .supply-card:nth-child(3) {
  grid-column: 1 / span 2;
}

.supply .supply-card:nth-child(4) {
  grid-column: 3 / span 2;
}

.supply .supply-card:nth-child(5) {
  grid-column: 5 / span 2;
}

.supply .supply-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.supply .supply-card > div {
  flex: 1;
  padding: 22px;
}

/* Tablet: 2 cards per row */
@media (max-width: 1024px) {
  .supply .supply-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .supply .supply-card,
  .supply .supply-card:nth-child(1),
  .supply .supply-card:nth-child(2),
  .supply .supply-card:nth-child(3),
  .supply .supply-card:nth-child(4),
  .supply .supply-card:nth-child(5) {
    grid-column: auto;
  }
}

/* Mobile: 1 card per row */
@media (max-width: 600px) {
  .supply .supply-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .supply .supply-card img {
    height: 220px;
  }
}
/* =========================
   Why Choose Us Section
========================= */
.why {
  max-width: none;
  text-align: center;
}
.why-grid {
  max-width: 1280px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.why-card {
  padding: 26px 18px;
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 190px;
}
.icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--gold);
}

/* =========================
   Contact Section
========================= */
.contact {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080808;
}
.contact-info {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}
.contact-buttons {
  display: flex;
  gap: 14px;
}
.outline {
  border: 1px solid var(--gold);
  padding: 10px 18px;
  color: #fff;
}
.quote-form {
  padding-left: 10px;
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 13px 4px;
  color: #fff;
  outline: none;
}
.quote-form .two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 8px;
}
.contact-section-submit-button {
  margin-top: 18px;
}

/* =========================
   Footer
========================= */
footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 28px;
  padding: 34px;
  background: #030303;
  border-top: 1px solid var(--line);
}
footer a,
footer small {
  display: block;
  color: #ccc;
  margin: 8px 0;
}
footer h4 {
  color: var(--gold);
  margin: 0 0 12px;
}

/* =========================
   Responsive CSS
========================= */
@media (max-width: 900px) {
  .topbar {
    height: auto;
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
    padding: 18px;
  }
  nav {
    flex-wrap: wrap;
    gap: 15px;
  }
  .hero,
  .about-grid,
  .contact {
    grid-template-columns: 1fr;
  }
  .hero {
    height: 520px;
    min-height: 70vh;
  }
  .hero-overlay {
    padding: 42px 20px;
  }
  .hero-slide {
    background-position: center center;
  }
  .hero-person {
    height: 300px;
  }
  h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 24px;
  }
  .stats,
  .service-grid,
  .supply-grid,
  .why-grid,
  footer {
    grid-template-columns: 1fr;
  }
  .contact-info {
    border-right: 0;
    padding-right: 0;
  }
  .quote-form .two {
    grid-template-columns: 1fr;
  }
  .section-pad {
    padding: 42px 20px;
  }
}

.hero {
  min-height: 80vh;
  background-size: cover;
  background-position: center right;
  position: relative;
  border-top: 3px solid #f5bd00;
}

.hero-overlay {
  min-height: 620px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.88) 30%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.05) 75%
  );
}

.hero-copy {
  width: 48%;
  padding-left: 90px;
  color: #fff;
}

.hero-copy h1 {
  font-size: 3.125rem;
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 25px;
}

.hero-copy h1 span,
.section-title h2 span {
  color: #f5bd00;
}

.title-line {
  width: 280px;
  height: 5px;
  margin: 12px 0 35px;
  background: linear-gradient(
    90deg,
    #f5bd00 0%,
    #f5bd00 55%,
    rgba(245, 189, 0, 0.45) 75%,
    rgba(245, 189, 0, 0) 100%
  );
}

.hero-copy p {
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 620px;
}

.about-section-slider-button {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  background: #f5bd00;
  color: #111;
  padding: 15px 38px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 35px;
  border: 0;
  cursor: pointer;
}

.hero-person {
  display: none;
}

/* About title */
.left-title {
  margin-left: 40px;
}

.section-title h2 {
  font-size: 3.125rem;
  color: #fff;
  margin: 0;
  font-weight: 900;
}

/* stats separator line */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.55);
}

.stat-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 55px;
  min-height: 95px;
  color: #fff;
}

/* .stat-item::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 55px;
  width: 160px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(245, 189, 0, 0),
    #f5bd00,
    rgba(245, 189, 0, 0)
  );
} */

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  width: 1px;
  height: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.stat-icon {
  color: #f5bd00;
  /* font-size: 42px;
  min-width: 58px; */
  text-align: center;
}

.stat-icon img {
  max-width: 50px;
  text-align: center;
}

.stat-item b {
  display: block;
  color: #f5bd00;
  font-size: 18px;
  line-height: 1.1;
}

.stat-item span {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
}

.about {
  padding-bottom: 0;
}

.about-grid {
  margin-bottom: 0;
}



/* =========================
   About Text Slider Fix
   Desktop: text left, image right
========================= */
.about-text-slider {
    grid-column: 2 / 4;
    width: 100%;
    overflow: hidden;
}

.about-text-viewport {
    width: 100%;
    overflow: hidden;
}

.about-text-track {
    display: flex;
    width: 100%;
    transition: transform 0.65s ease-in-out;
}

.about-text-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: minmax(320px, 42%) minmax(420px, 58%);
    column-gap: 42px;
    align-items: center;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.about-text-slide.active {
    opacity: 1;
}

.about-text-slide h3,
.about-text-slide p {
    grid-column: 1;
}

.about-text-slide h3 {
    margin-bottom: 16px;
}

.about-text-slide p {
    margin-bottom: 0;
}

.about-text-slide img {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.about-card img {
    width: 100%;
    height: auto;
    max-height: 330px;
    object-fit: contain;
    display: block;
}

.about-section-slider-button {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    background: #f5bd00;
    color: #111;
    padding: 8px 35px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 8px;
    margin: 15px 0;
}

@media(max-width: 1620px) {
  .stat-icon img {
    max-width: 35px;
  }
}

@media (max-width: 900px) {
    .about-text-slider {
        grid-column: auto;
    }

    .about-text-slide {
        grid-template-columns: 1fr;
        row-gap: 22px;
    }

    .about-text-slide h3,
    .about-text-slide p,
    .about-text-slide img {
        grid-column: 1;
    }

    .about-text-slide img {
        grid-row: auto;
        height: 300px;
    }
}

/* =========================
   Supply Alignment + Why Cards Update
========================= */
.supply {
  text-align: center;
}

.supply .section-intro {
  margin-bottom: 32px;
}

.supply-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.supply-card img {
  height: 250px;
  object-fit: cover;
}

.supply-card > div {
  flex: 1;
  padding: 22px;
  display: grid;
  grid-template-rows: auto minmax(46px, auto) 1fr;
  align-content: start;
}

.supply-card span {
  display: block;
  margin-bottom: 8px;
}

.supply-card h3 {
  min-height: 46px;
  margin: 0 0 8px;
  display: flex;
  align-items: flex-start;
}

.supply-card p {
  margin: 0;
}

.why-grid {
  max-width: 1280px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.why-card {
  min-height: 270px;
  padding: 26px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-card .icon {
  width: 46px;
  height: 46px;
  margin: 0 0 16px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.why-card h3 {
  min-height: 54px;
  margin: 0 0 12px;
  display: flex;
  align-items: flex-start;
}

.why-card p {
  margin: 0;
}

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .supply-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .supply-card h3,
  .why-card h3 {
    min-height: auto;
  }
}

/* =========================
   Why Choose Us Icon Images
========================= */
.why-card .icon {
  display: none;
}

.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.why-card h3 {
  min-height: 54px;
  margin: 0 0 12px;
  display: flex;
  align-items: flex-start;
}

.why-card p {
  margin: 0;
}

@media (max-width: 900px) {
  .why-icon {
    width: 64px;
    height: 64px;
  }

  .why-card h3 {
    min-height: auto;
  }
}

/* =========================
   Contact Section Sample Layout
========================= */
.contact {
  max-width: none;
  padding: 70px 34px;
  display: block;
  border: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)),
    var(--contact-bg),
    #050505;
  background-size: cover;
  background-position: center;
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 620px;
  border: 1px solid rgba(245, 189, 0, 0.82);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 1px rgba(245, 189, 0, 0.1);
}

.contact-info {
  padding: 82px 58px 58px;
  border-right: 1px solid rgba(245, 189, 0, 0.82);
  text-align: center;
}

.contact-title-wrap h2 {
  margin: 0;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: 1px;
}

.contact-title-line {
  width: 250px;
  height: 20px;
  margin: 16px auto 22px;
  position: relative;
}

.contact-title-line::before,
.contact-title-line::after {
  content: "";
  position: absolute;
  top: 9px;
  width: 100px;
  height: 3px;
  background: #f5bd00;
}

.contact-title-line::before { left: 0; }
.contact-title-line::after { right: 0; }

.contact-title-line span {
  width: 22px;
  height: 22px;
  margin: 0 auto;
  display: block;
  background: #f5bd00;
  clip-path: polygon(50% 0%, 88% 14%, 88% 50%, 50% 100%, 12% 50%, 12% 14%);
}

.contact-intro {
  max-width: 420px;
  margin: 0 auto 40px;
  color: #f3f3f3;
  font-size: 18px;
  line-height: 1.55;
}

.contact-list {
  display: grid;
  gap: 26px;
  text-align: left;
}

.contact-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  align-items: center;
}

.contact-icon {
  width: 68px;
  height: 68px;
  border: 2px solid #f5bd00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contact-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.contact-item-content {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(245, 189, 0, 0.75);
}

.contact-item-content h3 {
  margin: 0 0 6px;
  color: #f5bd00;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.contact-item-content p {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.55;
}

.contact-buttons {
  margin-top: 36px;
  display: flex;
  gap: 18px;
  justify-content: center;
}

.contact-google-map-button,
.contact-waze-map-button {
  min-width: 165px;
  height: 66px;
  padding: 10px 18px;
  border: 1px solid #f5bd00;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.28);
}

.map-icon,
.waze-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.map-icon svg {
  fill: #f5bd00;
}

.waze-icon svg {
  fill: #fff;
}

.map-icon svg,
.waze-icon svg {
  width: 36px;
  height: 36px;
}

.quote-form {
  padding: 96px 72px 60px;
  border: 0;
}

.quote-form h3 {
  margin: 0 0 42px;
  color: #f5bd00;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.quote-form .form-row.two,
.quote-form .two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  margin-bottom: 34px;
}

.quote-form label {
  display: block;
}

.quote-form label span {
  display: block;
  margin-bottom: 12px;
  color: #f4f4f4;
  font-size: 16px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0 4px 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.quote-form select {
  color: rgba(255, 255, 255, 0.65);
}

.quote-form option {
  color: #111;
}

.quote-form textarea {
  min-height: 85px;
  resize: vertical;
}

.message-field {
  margin-top: 4px;
}

.contact-submit {
  min-width: 216px;
  margin-top: 34px;
  padding: 10px 25px;
  border: 0;
  border-radius: 0;
  background: #f5bd00;
  color: #111;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-info {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 189, 0, 0.82);
  }

  .quote-form {
    padding: 58px;
  }
}

@media (max-width: 700px) {
  .contact {
    padding: 48px 18px;
  }

  .contact-info,
  .quote-form {
    padding: 42px 20px;
  }

  .contact-title-wrap h2 {
    font-size: 2.35rem;
  }

  .contact-intro,
  .contact-item-content p {
    font-size: 15px;
  }

  .contact-item {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .contact-icon {
    width: 54px;
    height: 54px;
  }

  .contact-icon svg {
    width: 28px;
    height: 28px;
  }

  .contact-buttons,
  .quote-form .form-row.two,
  .quote-form .two {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 22px;
  }

  .contact-google-map-button,
.contact-waze-map-button {
    width: 100%;
  }

  .contact-submit {
    width: 100%;
  }
}

/* =========================
   Contact Icon + Selectable Date/Time Fix
========================= */
.contact-google-map-button .map-icon,
.contact-waze-map-button .waze-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.contact-google-map-button .map-icon img,
.contact-waze-map-button .waze-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.quote-form input[type="date"],
.quote-form input[type="time"],
.quote-form select {
  cursor: pointer;
  color-scheme: dark;
  appearance: auto;
  -webkit-appearance: auto;
}

.quote-form input[type="date"]::-webkit-calendar-picker-indicator,
.quote-form input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 1;
  cursor: pointer;
  filter: invert(1);
}

.quote-form select {
  padding-right: 28px;
}

.quote-form input[type="date"]:invalid,
.quote-form input[type="time"]:invalid {
  color: rgba(255, 255, 255, 0.65);
}

.contact-submit {
  border-radius: 0;
  height: 60px;
  min-width: 240px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .contact-google-map-button .map-icon,
  .contact-waze-map-button .waze-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}



/* Contact map button icon size override */
.contact-google-map-button .map-icon,
.contact-waze-map-button .waze-icon {
  width: 50px !important;
  height: 50px !important;
  flex: 0 0 50px !important;
}

.contact-google-map-button .map-icon img,
.contact-waze-map-button .waze-icon img {
  width: 50px !important;
  height: 50px !important;
  object-fit: contain;
  display: block;
}


/* Google Maps icon only: 45px. Waze remains 50px. */
.contact-google-map-button .map-icon {
  width: 45px !important;
  height: 45px !important;
  flex: 0 0 45px !important;
}

.contact-google-map-button .map-icon img {
  width: 40px !important;
  height: 40px !important;
}

/* =========================
   Footer Sample Layout + Floating WhatsApp
========================= */
.site-footer {
  max-width: none;
  padding: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.88)),
    #050505;
  border-top: 2px solid rgba(245, 189, 0, 0.75);
  color: #fff;
}

.site-footer-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 38px 22px 34px;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1.25fr 1.35fr;
  gap: 0;
}

.footer-brand-col,
.footer-link-col,
.footer-services-col,
.footer-contact-col {
  padding: 0 36px;
  min-height: 340px;
}

.footer-brand-col {
  text-align: center;
  padding-left: 0;
}

.footer-link-col,
.footer-services-col,
.footer-contact-col {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-logo {
  width: 110px;
  height: auto;
  display: block;
  margin: 18px auto 32px;
}

.footer-brand-col h3 {
  margin: 0 0 5px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 900;
  color: #fff;
}

.footer-title-line {
  width: 200px;
  height: 20px;
  margin: 0 auto 18px;
  position: relative;
}

.footer-title-line::before,
.footer-title-line::after {
  content: "";
  position: absolute;
  top: 9px;
  width: 82px;
  height: 2px;
  background: #f5bd00;
}

.footer-title-line::before {
  left: 0;
}

.footer-title-line::after {
  right: 0;
}

.footer-title-line span {
  width: 16px;
  height: 18px;
  display: block;
  margin: 0 auto;
  background: #f5bd00;
  clip-path: polygon(50% 0%, 88% 18%, 88% 52%, 50% 100%, 12% 52%, 12% 18%);
}

.footer-brand-col p {
  margin: 0 0 14px;
  color: #d9d9d9;
  font-size: 15px;
  line-height: 1.45;
}

.footer-brand-col strong {
  display: block;
  margin-bottom: 20px;
  color: #f5bd00;
  font-size: 16px;
  line-height: 1;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid #f5bd00;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5bd00;
  transition: 0.25s ease;
}

.footer-socials a:hover,
.footer-contact-buttons a:hover {
  background: rgba(245, 189, 0, 0.14);
}

.footer-socials svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.site-footer h4 {
  margin: 6px 0 12px;
  color: #f5bd00;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.footer-heading-line {
  width: 42px;
  height: 3px;
  margin-bottom: 28px;
  background: #f5bd00;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 21px;
}

.site-footer li a {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #ddd;
  font-size: 15px;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.site-footer li a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -2px;
  color: #f5bd00;
  font-size: 28px;
  line-height: 1;
}

.site-footer a:hover {
  color: #f5bd00;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.footer-contact-item svg {
  width: 30px;
  height: 30px;
  fill: #f5bd00;
  margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item p {
  margin: 0;
  color: #ddd;
  font-size: 15px;
  line-height: 1.55;
}

.footer-contact-buttons {
  display: flex;
  gap: 14px;
  padding-top: 20px;
  margin-top: 24px;
  border-top: 1px solid rgba(245, 189, 0, 0.45);
}

.footer-contact-buttons a {
  min-width: 150px;
  height: 56px;
  padding: 8px 14px;
  border: 1px solid #f5bd00;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.footer-contact-buttons img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.footer-contact-buttons a:first-child img {
  width: 34px;
  height: 34px;
}

.site-footer-bottom {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: #cfcfcf;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.whatsapp-floating-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  width: 76px;
  height: 76px;
  display: block;
  border-radius: 50%;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
  transition: transform 0.25s ease;
}

.whatsapp-floating-btn:hover {
  transform: scale(1.08);
}

.whatsapp-floating-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 1200px) {
  .site-footer-main {
    grid-template-columns: 1fr 1fr;
    row-gap: 34px;
  }

  .footer-brand-col,
  .footer-link-col,
  .footer-services-col,
  .footer-contact-col {
    padding: 0 28px;
  }

  .footer-services-col {
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .site-footer-main {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }

  .footer-brand-col,
  .footer-link-col,
  .footer-services-col,
  .footer-contact-col {
    min-height: auto;
    padding: 28px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .footer-brand-col {
    border-top: 0;
    padding-top: 0;
  }

  .footer-contact-buttons {
    flex-direction: column;
  }

  .footer-contact-buttons a {
    width: 100%;
  }

  .whatsapp-floating-btn {
    width: 62px;
    height: 62px;
    right: 16px;
    bottom: 16px;
  }
}

/* =========================
   Footer Grid Conflict Fix
   Old footer{} CSS was making .site-footer a grid.
========================= */
footer.site-footer {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  padding: 0 !important;
}

footer.site-footer .site-footer-main {
  width: 100%;
}

footer.site-footer .site-footer-bottom {
  width: 100%;
}



/* =========================
   Footer Full Width Fix
   Remove footer inner max-width so layout covers whole screen
========================= */
footer.site-footer {
  width: 100% !important;
  max-width: none !important;
}

footer.site-footer .site-footer-main {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding-left: 34px !important;
  padding-right: 34px !important;
  box-sizing: border-box;
}

footer.site-footer .site-footer-bottom {
  max-width: none !important;
  width: 100% !important;
}

/* =========================
   Unique Section Button Classes
   Each button now has a section-specific class.
========================= */
.hero-section-learn-button {
  background: #f5bd00;
  color: #000;
  padding: 12px 30px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-weight: 800;
  border-radius: 0;
  text-decoration: none;
}

.about-section-slider-button {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  background: #f5bd00;
  color: #111;
  padding: 8px 35px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
  margin: 15px 0;
  border: 0;
  cursor: pointer;
}

.client-carousel-button {
  flex: 0 0 42px;
  width: 42px;
  height: 55px;
  border: 2px solid #f5bd00;
  background: transparent;
  color: #f5bd00;
  font-size: 48px;
  line-height: 42px;
  cursor: pointer;
}

.contact-google-map-button,
.contact-waze-map-button {
  min-width: 165px;
  height: 66px;
  padding: 10px 18px;
  border: 1px solid #f5bd00;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.28);
}

.contact-section-submit-button {
  min-width: 240px;
  height: 45px;
  margin-top: 34px;
  padding: 8px 20px;
  border: 0;
  border-radius: 0;
  background: #f5bd00;
  color: #111;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-facebook-social-button,
.footer-whatsapp-social-button,
.footer-email-social-button {
  width: 40px;
  height: 40px;
  border: 1px solid #f5bd00;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5bd00;
  transition: 0.25s ease;
}

.footer-google-map-button,
.footer-waze-map-button {
  min-width: 150px;
  height: 56px;
  padding: 8px 14px;
  border: 1px solid #f5bd00;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.footer-google-map-button:hover,
.footer-waze-map-button:hover,
.footer-facebook-social-button:hover,
.footer-whatsapp-social-button:hover,
.footer-email-social-button:hover {
  background: rgba(245, 189, 0, 0.14);
}

.whatsapp-floating-contact-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  width: 76px;
  height: 76px;
  display: block;
  border-radius: 50%;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
  transition: transform 0.25s ease;
}

.whatsapp-floating-contact-button:hover {
  transform: scale(1.08);
}

.whatsapp-floating-contact-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 700px) {
  .contact-google-map-button,
  .contact-waze-map-button,
  .contact-section-submit-button {
    width: 100%;
  }

  .footer-google-map-button,
  .footer-waze-map-button {
    width: 100%;
  }

  .whatsapp-floating-contact-button {
    width: 62px;
    height: 62px;
    right: 16px;
    bottom: 16px;
  }
}

/* =========================
   Stats + Client Carousel Responsive / Infinite Loop Fix
========================= */

/* Stats responsive layout */
.stats {
  gap: 0;
}

@media (max-width: 1100px) {
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-item {
    padding: 24px 30px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 650px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 22px 18px;
    gap: 18px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .stat-icon img {
    max-width: 42px;
  }

  .stat-item b,
  .stat-item span {
    font-size: 16px;
  }
}

/* Client carousel responsive layout */
.client-carousel {
  gap: clamp(12px, 2vw, 25px);
}

.client-viewport {
  flex: 1;
  min-width: 0;
}

.client-track {
  will-change: transform;
}

.client-card {
  flex: 0 0 calc((100% - 104px) / 5);
}

@media (max-width: 1200px) {
  .client-card {
    flex: 0 0 calc((100% - 52px) / 3);
  }
}

@media (max-width: 900px) {
  .client-card {
    flex: 0 0 calc((100% - 26px) / 2);
  }

  .client-carousel-button {
    flex: 0 0 38px;
    width: 38px;
    height: 50px;
    font-size: 42px;
    line-height: 38px;
  }
}

@media (max-width: 600px) {
  .client-section {
    padding: 22px 16px 42px;
  }

  .client-carousel {
    gap: 10px;
  }

  .client-card {
    flex: 0 0 100%;
    height: 105px;
  }

  .client-carousel-button {
    flex: 0 0 34px;
    width: 34px;
    height: 48px;
    font-size: 38px;
  }

  .client-dots {
    gap: 12px;
  }

  .client-dot {
    width: 12px;
    height: 12px;
  }
}

/* =========================
   Responsive Hero Button + Supply Card Title Fix
========================= */

/* Fix hero Learn More button being cropped/too close to section bottom on tablet/mobile */
@media (max-width: 900px) {
  .hero {
    height: auto !important;
    min-height: 680px !important;
    overflow: hidden;
  }

  .hero-overlay {
    min-height: 680px !important;
    height: auto !important;
    padding: 120px 24px 70px !important;
    align-items: center;
  }

  .hero-copy {
    width: 100% !important;
    max-width: 520px;
    padding-left: 0 !important;
  }

  .hero-copy h1,
  .hero-copy h1.main-title {
    font-size: clamp(2.4rem, 8vw, 3.4rem) !important;
    line-height: 1.05 !important;
  }

  .hero-copy p {
    font-size: clamp(1rem, 4vw, 1.25rem) !important;
    line-height: 1.5;
  }

  .hero-section-learn-button {
    margin-top: 22px;
    margin-bottom: 10px;
    padding: 15px 34px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 620px !important;
  }

  .hero-overlay {
    min-height: 620px !important;
    padding: 90px 20px 58px !important;
  }

  .hero-section-learn-button {
    width: auto;
    max-width: 100%;
    padding: 8px 23px;
    font-size: 14px;
    min-height: 48px;
  }
}

/* Supply responsive: keep number and title in the same line */
@media (max-width: 900px) {
  .supply-card > div {
    display: grid !important;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    row-gap: 10px;
    align-items: start;
  }

  .supply-card span {
    grid-column: 1;
    grid-row: 1;
    margin: 0 !important;
    line-height: 1.25;
    display: inline-flex;
    align-items: flex-start;
  }

  .supply-card h3 {
    grid-column: 2;
    grid-row: 1;
    min-height: auto !important;
    margin: 0 !important;
    line-height: 1.25;
    display: block;
  }

  .supply-card p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0 !important;
  }
}

/* =========================
   Header Responsive Burger Menu
   Below 1200px switches to mobile menu
========================= */
.header-menu-toggle-button {
  display: none;
}

@media (max-width: 1200px) {
  .topbar {
    width: 100%;
    padding: 10px 18px;
  }

  .topbar .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  /* Keep the logo and company name in the first row */
  .brand {
    order: 1;
    flex: 1 1 auto;
    width: auto;
    max-width: calc(100% - 64px);
    min-width: 0;
    padding-right: 12px;
    gap: 12px;
    overflow: hidden;
  }

  .brand img {
    flex: 0 0 auto;
    max-height: 70px;
    width: auto;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text strong,
  .brand-text small {
    white-space: nowrap;
  }

  .brand-text strong {
    font-size: clamp(1.45rem, 4vw, 2.3rem);
    line-height: 0.95;
  }

  .brand-text small {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
  }

  /* Burger stays in the first row, at the right */
  .header-menu-toggle-button {
    order: 2;
    position: relative;
    top: auto;
    right: auto;

    flex: 0 0 48px;
    width: 48px;
    height: 44px;
    margin: 0 0 0 12px;
    padding: 9px;

    border: 1px solid rgba(245, 189, 0, 0.85);
    border-radius: 4px;
    background: transparent;

    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 6px;

    cursor: pointer;
    z-index: 1001;
  }

  .header-menu-toggle-button span {
    width: 100%;
    height: 3px;
    display: block;
    border-radius: 99px;
    background: #f5bd00;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .topbar.menu-open .header-menu-toggle-button span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .topbar.menu-open .header-menu-toggle-button span:nth-child(2) {
    opacity: 0;
  }

  .topbar.menu-open .header-menu-toggle-button span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Navigation always occupies a separate second row */
  .topbar .main-nav {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;

    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;

    display: grid;
    grid-template-columns: 1fr;
    gap: 0;

    opacity: 0;
    visibility: hidden;
    border-top: 1px solid transparent;

    transition:
      max-height 0.35s ease,
      padding 0.35s ease,
      margin 0.35s ease,
      opacity 0.2s ease,
      border-color 0.35s ease;
  }

  .topbar.menu-open .main-nav {
    max-height: 500px;
    margin-top: 10px;
    padding: 8px 0 6px;
    opacity: 1;
    visibility: visible;
    border-top-color: rgba(245, 189, 0, 0.35);
  }

  .topbar .main-nav a {
    width: 100%;
    margin: 0;
    padding: 13px 4px;
    text-align: left;
    font-size: 1rem;
    line-height: 1.2;
  }

  .topbar .main-nav a::after {
    bottom: 6px;
  }
}

@media (max-width: 600px) {
  .topbar {
    padding: 8px 12px;
  }

  .brand {
    max-width: calc(100% - 56px);
    gap: 9px;
    padding-right: 6px;
  }

  .brand img {
    max-height: 52px;
  }

  .brand-text strong {
    font-size: clamp(1rem, 5.2vw, 1.4rem);
    letter-spacing: 0.7px;
  }

  .brand-text small {
    font-size: clamp(0.72rem, 3.4vw, 0.95rem);
    letter-spacing: 1px;
  }

  .header-menu-toggle-button {
    flex-basis: 42px;
    width: 42px;
    height: 40px;
    margin-left: 8px;
    padding: 8px;
  }

  .topbar .main-nav a {
    padding: 12px 2px;
    font-size: 0.95rem;
  }
}


/* =========================
   About Title / Content Gap Fix
========================= */
.about-text-slide {
  grid-template-rows: auto !important;
  align-items: center;
}

.about-text-slide h3 {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin: 0 0 14px !important;
}

.about-text-slide p {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin: 34px 0 0 !important;
}

.about-text-slide img {
  grid-column: 2;
  grid-row: 1;
}

@media (max-width: 900px) {
  .about-text-slide {
    grid-template-rows: auto auto auto !important;
  }

  .about-text-slide h3 {
    grid-row: auto;
    margin-bottom: 12px !important;
  }

  .about-text-slide p {
    grid-row: auto;
    margin-top: 0 !important;
  }

  .about-text-slide img {
    grid-row: auto;
  }
}

/* =========================
   Section Title Bottom Line
   Match About Us title underline style
========================= */
.services > h2,
.supply > h2,
.why > h2 {
  margin-bottom: 0 !important;
}

.services > h2::after,
.supply > h2::after,
.why > h2::after {
  content: "";
  display: block;
  width: 280px;
  height: 5px;
  margin-top: 12px;
  margin-bottom: 28px;
  background: linear-gradient(
    90deg,
    #f5bd00 0%,
    #f5bd00 55%,
    rgba(245, 189, 0, 0.45) 75%,
    rgba(245, 189, 0, 0) 100%
  );
}

.supply > h2::after {
  margin-left: auto;
  margin-right: auto;
}

.services > .section-intro,
.supply > .section-intro,
.why > .section-intro {
  margin-top: 0;
}


@media (max-width: 700px) {
  .services > h2::after,
  .supply > h2::after,
  .why > h2::after {
    width: 220px;
    height: 4px;
    margin-bottom: 22px;
  }
}

/* =========================
   SERVICES TITLE (reuse contact line style)
========================= */

.services-container{
    width:100%;
}

.services-title-wrap{
    text-align:left;
    width: fit-content;
}

.services-title-line{
    display:flex;
    align-items:center;
    margin:16px auto 28px;
    width:320px;
}

.services-title-line::before,
.services-title-line::after{
    content:"";
    flex:1;
    height:3px;
    background:#f5bd00;
}
.services-title-line span{
    width:18px;
    height:18px;
    margin:0 16px;
    background:#f5bd00;
    clip-path:polygon(
        50% 0%,
        88% 18%,
        88% 58%,
        50% 100%,
        12% 58%,
        12% 18%
    );
    flex-shrink:0;
}

@media(max-width: 576px) {
  .services-title-line{
      width:200px;
  }
}

.services-title-wrap h2{
    margin-bottom: 1rem;
}

.services-title-wrap .contact-title-line{
    justify-content:flex-start; /* IMPORTANT: align under title */
    margin: 12px 0 18px;
}

/* =========================
   Fix Section Title Lines + Footer Layout
========================= */

/* Remove the broken pseudo-line that appeared at the far left */
.services > h2::after,
.supply > h2::after,
.why > h2::after {
  content: none !important;
  display: none !important;
}

/* Apply About-style underline correctly under each section title */
.supply > h2,
.why > h2 {
  position: relative;
  display: inline-block;
  width: auto;
  margin-bottom: 30px !important;
}

.services-container > h2::after
{
  content: none !important;
  display: none !important;
}

.services-container > h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.services-container > h2::before,
.supply > h2::before,
.why > h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 280px;
  height: 5px;
  background: linear-gradient(
    90deg,
    #f5bd00 0%,
    #f5bd00 55%,
    rgba(245, 189, 0, 0.45) 75%,
    rgba(245, 189, 0, 0) 100%
  );
}

/* Centered sections need centered underline */
.supply,
.why {
  text-align: center;
}

.supply > h2,
.why > h2 {
  margin-left: auto;
  margin-right: auto;
}

.supply > h2::before,
.why > h2::before {
  left: 50%;
  transform: translateX(-50%);
}

/* Services title stays aligned with its content */
.services > h2 {
  display: block;
  width: fit-content;
  max-width: 1280px;
}

/* Fix spacing after title line */
.services > .section-intro,
.supply > .section-intro,
.why > .section-intro {
  margin-top: 0 !important;
}

/* Footer desktop layout restored, full-width and balanced */
footer.site-footer {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  overflow: hidden;
}

footer.site-footer .site-footer-main {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 42px 56px 36px !important;
  display: grid !important;
  grid-template-columns: 1.05fr 0.7fr 1.25fr 1.45fr !important;
  column-gap: 0 !important;
  align-items: start;
  box-sizing: border-box;
}

.footer-brand-col,
.footer-link-col,
.footer-services-col,
.footer-contact-col {
  min-height: 340px;
  padding-left: 36px !important;
  padding-right: 36px !important;
  box-sizing: border-box;
}

.footer-brand-col {
  display: block !important;
  text-align: center;
  padding-left: 0 !important;
}

.footer-link-col,
.footer-services-col,
.footer-contact-col {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-logo {
  width: 105px;
  max-width: 100%;
  margin: 10px auto 28px;
}

.footer-contact-buttons {
  flex-wrap: nowrap;
}

.footer-contact-buttons a {
  min-width: 150px;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  footer.site-footer .site-footer-main {
    grid-template-columns: 1fr 1fr !important;
    row-gap: 34px;
    padding: 38px 34px !important;
  }

  .footer-services-col {
    border-left: 0;
  }

  .footer-brand-col,
  .footer-link-col,
  .footer-services-col,
  .footer-contact-col {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  footer.site-footer .site-footer-main {
    grid-template-columns: 1fr !important;
    padding: 34px 22px !important;
  }

  .footer-brand-col,
  .footer-link-col,
  .footer-services-col,
  .footer-contact-col {
    padding: 28px 0 !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .footer-brand-col {
    border-top: 0 !important;
    padding-top: 0 !important;
  }

  .footer-contact-buttons {
    flex-direction: column;
  }

  .footer-contact-buttons a {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .services > h2::before,
  .supply > h2::before,
  .why > h2::before {
    width: 220px;
    height: 4px;
    bottom: -12px;
  }

  .services > h2,
  .supply > h2,
  .why > h2 {
    margin-bottom: 26px !important;
  }
}

/* =========================
   Supply Card Number + Title Same Row (Desktop + Responsive)
========================= */
.supply-card > div {
  flex: 1;
  padding: 22px;
  display: grid !important;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 12px;
  align-items: start;
  align-content: start;
}

.supply-card span {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: flex-start;
  margin: 0 !important;
  line-height: 1.2;
}

.supply-card h3 {
  grid-column: 2;
  grid-row: 1;
  min-height: auto !important;
  margin: 0 !important;
  line-height: 1.2;
  display: block !important;
}

.supply-card p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0 !important;
}

/* =========================
   About Section Responsive Fix
   Force mobile/tablet layout to stack instead of keeping text + image in columns
========================= */
@media (max-width: 900px) {
  .about {
    width: 100%;
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }

  .about .left-title {
    margin-left: 0 !important;
  }

  .about .section-title h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .about .title-line {
    width: min(280px, 100%);
    margin-bottom: 28px;
  }

  .about-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    align-items: start !important;
    width: 100%;
  }

  .about-card {
    width: 100%;
    text-align: center;
  }

  .about-card img {
    width: min(230px, 70vw) !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    margin: 0 auto !important;
  }

  .about-text-slider {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .about-text-viewport {
    width: 100% !important;
    overflow: hidden !important;
  }

  .about-text-track {
    width: 100% !important;
    display: flex !important;
  }

  .about-text-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    row-gap: 18px !important;
    column-gap: 0 !important;
    align-items: start !important;
  }

  .about-text-slide h3,
  .about-text-slide p,
  .about-text-slide img {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .about-text-slide h3 {
    margin: 0 !important;
    line-height: 1.35;
    font-size: 1rem;
  }

  .about-text-slide p {
    margin: 0 !important;
    font-size: 0.95rem;
    line-height: 1.6;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .about-text-slide img {
    height: auto !important;
    max-height: 360px !important;
    object-fit: cover !important;
    display: block !important;
  }

  .about-section-slider-button {
    margin-top: 20px !important;
  }
}

@media (max-width: 520px) {
  .about {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about .section-title h2 {
    font-size: clamp(2rem, 11vw, 2.6rem);
    letter-spacing: 2px;
  }

  .about-text-slide p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .about-text-slide img {
    max-height: 280px !important;
  }

  .about-section-slider-button {
    width: 100%;
    justify-content: center;
  }

  .contact-intro, .contact-item-content p {
      font-size: 12px;
  }
}

