/* =========================================
   VA Plastopack — Global Styles
   ========================================= */

:root {
  --red: #cc0000;
  --red-dark: #a80000;
  --black: #1a1a1a;
  --dark: #111111;
  --gray-900: #222222;
  --gray-700: #444444;
  --gray-500: #777777;
  --gray-300: #cccccc;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --font-main: "Roboto", sans-serif;
  --font-display: "Roboto", sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --radius: 6px;
  --transition: all 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 28px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.25),
    0 0 6px rgba(220, 0, 0, 0.25);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(204, 0, 0, 0.3);
}

.btn-outline {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(0, 0, 0, 0.04);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--gray-100);
}

/* ---- Section headings ---- */
.section-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--gray-500);
  margin-top: 6px;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-logo img {
  height: 35px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
}
.navbar-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}
.navbar-links a:hover {
  color: var(--red);
}
.navbar-links a:hover::after {
  width: 100%;
}

.navbar-links .navbar-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.navbar-links .navbar-cta:hover {
  background: var(--red-dark);
}
.navbar-links .navbar-cta svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 75px);
  background: linear-gradient(135deg, #f8f8f8 0%, #ececec 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  background-position: left top;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* background-image: url("../images/hero-bg.png"); */
  background-size: cover;
  background-position: center right;
  opacity: 0.7;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 64px 0;
  width: 100%;
}
.hero-content {
  max-width: 520px;
}
.hero-tag {
  display: inline-block;
  background: rgba(204, 0, 0, 0.08);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  border: 1px solid rgba(204, 0, 0, 0.2);
}
.hero-title {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--black);
  border-bottom: 1px solid #222;
  padding-bottom: 20px;
}
.hero-title span {
  color: var(--red);
  display: block;
}
.hero-desc {
  margin-top: 14px;
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.7;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-image img {
  max-height: 360px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* =========================================
   FEATURE STRIP
   ========================================= */
.features-strip {
  background: var(--white);
  /* border-bottom: 1px solid var(--gray-100); */
  padding: 0;
}
.features-strip-inner {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  /* border-top: 3px solid var(--red); */
  /* box-shadow: var(--shadow-md); */
  margin-top: 10px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 32px;
  transition: var(--transition);
  background-color: var(--gray-100);
  border-radius: 10px;
}
.feature-item:last-child {
  border-right: none;
}
.feature-item:hover {
  background: var(--gray-100);
}
.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* =========================================
   PRODUCTS
   ========================================= */
.products-section {
  padding: 80px 0;
  background: var(--white);
}
.section-header {
  margin-bottom: 48px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.06);
}
.product-card-body {
  padding: 20px 20px 24px;
}
.product-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.product-card-body p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 16px;
}
.product-card-body .btn {
  font-size: 13px;
  padding: 9px 18px;
}

/* =========================================
   BRANDS
   ========================================= */
.brands-section {
  padding: 60px 20px;
  background: var(--gray-100);
  border-radius: 10px;
  margin-bottom: 60px;
}
.brands-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.brands-content h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
}
.brands-content p {
  color: var(--gray-700);
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.6;
}
.brands-content strong {
  color: var(--black);
  font-weight: 700;
}
.brands-logo {
  flex-shrink: 0;
}
.brands-logo img {
  height: 80px;
  width: auto;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--red);
  padding: 36px 20px;
  margin-bottom: 40px;
  border-radius: 6px;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo img {
  height: 90px;
  /* transform: scale(1.5);
  transform-origin: left top; */
}
.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
}
.footer-brand-desc {
  font-size: 13px;
  color: var(--white);
  line-height: 1.6;
}
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--white);
}
.footer-contact-row svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  flex-shrink: 0;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--white);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item span {
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--white);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-links,
  .navbar-cta {
    display: none;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
  }
  .navbar-links.open a {
    padding: 12px 24px;
    border-bottom: 1px solid var(--gray-100);
  }
  .navbar-links.open a::after {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image {
    display: none;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-desc {
    margin: 12px auto 0;
  }
  .hero-actions {
    justify-content: center;
  }

  .features-strip-inner {
    grid-template-columns: 1fr 1fr;
  }
  .feature-item:nth-child(2) {
    border-right: none;
  }
  .feature-item:nth-child(3) {
    border-right: none;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .brands-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-text {
    font-size: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .features-strip-inner {
    grid-template-columns: 1fr;
  }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
  }
  .hero-title {
    font-size: 34px;
  }
}

/* =========================================
         PRODUCTS PAGE — Additional Styles
         ========================================= */

/* Page Hero / Header */
.page-hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%);
  padding: 60px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--gray-300);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg_.png");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.page-hero p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--gray-700);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
  justify-content: center;
}
.breadcrumb a {
  color: var(--gray-500);
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--red);
}
.breadcrumb svg {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

/* Products Section */
.products-page-section {
  padding: 60px 0 80px;
  background: #f9f9f9;
}

/* Products Grid — 3 columns */
.products-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Product Card */
.prod-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--gray-300);
}

/* Card logo strip */
.prod-card-logo {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-card-logo img {
  height: 35px;
  width: auto;
}

/* Card image */
.prod-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
}
.prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.prod-card:hover .prod-card-img img {
  transform: scale(1.05);
}

/* Card body */
.prod-card-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-card-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.2;
}

/* Specs list */
.prod-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.prod-specs li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gray-700);
  line-height: 1.5;
}
.prod-specs li::before {
  content: "";
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 6px;
}
.prod-specs li strong {
  color: var(--black);
  font-weight: 700;
}

.prod-card-body .btn {
  font-size: 14px;
  padding: 10px 20px;
  align-self: flex-start;
  width: 100%;
  justify-content: center;
}

/* =========================================
         BULK CTA BANNER
         ========================================= */
.bulk-cta {
  background: var(--black);
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-top: 0;
}
.bulk-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg_.png");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.bulk-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
}
.bulk-cta-content h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.bulk-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}
.bulk-cta-actions {
  display: grid;
  /* flex-direction: column; */
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: flex-start;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  border: 2px solid var(--red);
  min-width: 220px;
  justify-content: center;
}
.btn-call:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}
.btn-call svg {
  width: 16px;
  height: 16px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  border: 2px solid #25d366;
  min-width: 220px;
  justify-content: center;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-1px);
}
.btn-whatsapp svg {
  width: 18px;
  height: 18px;
}
.btn-request {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.4);
  min-width: 220px;
  justify-content: center;
}
.btn-request:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.btn-request svg {
  width: 16px;
  height: 16px;
}
.bulk-cta-image {
  border-radius: 8px;
  overflow: hidden;
  height: 280px;
}
.bulk-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  border-radius: 8px;
}

/* =========================================
         RESPONSIVE
         ========================================= */
@media (max-width: 1024px) {
  .products-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 32px;
  }
  .products-page-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .bulk-cta-inner {
    grid-template-columns: 1fr;
  }
  .bulk-cta-image {
    display: none;
  }
  .bulk-cta-content h2 {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .products-page-grid {
    grid-template-columns: 1fr;
  }
  .bulk-cta-actions {
    width: 100%;
  }
  .btn-call,
  .btn-whatsapp,
  .btn-request {
    min-width: unset;
    width: 100%;
  }
}

/* =========================================
         SERVICES PAGE — Specific Styles
         ========================================= */

/* ---- Services Intro Section ---- */
.services-intro {
  padding: 60px 0 48px;
  background: var(--white);
}
.services-intro-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.services-intro-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 14px;
}
.services-intro-header p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.7;
}
.services-intro-header p strong {
  color: var(--black);
}

/* ---- Service Cards ---- */
.services-cards {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 32px 32px 32px 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.11);
  border-color: var(--gray-300);
}
.service-card-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-card-content > p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-card-content > p strong {
  font-weight: 700;
  color: var(--black);
}
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-700);
}
.service-bullets li::before {
  content: "";
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: var(--red);
}
.service-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.service-card-actions .phone-note {
  font-size: 13.5px;
  color: var(--gray-500);
  margin-top: 8px;
  width: 100%;
}
.service-card-image {
  width: 260px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  align-self: flex-start;
}
.service-card-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* WhatsApp button for service cards */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  border: 2px solid #25d366;
}
.btn-wa:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-1px);
}
.btn-wa svg {
  width: 17px;
  height: 17px;
}

/* ---- Industries Section ---- */
.industries-section {
  background: var(--gray-100);
  padding: 64px 0;
}
.industries-header {
  text-align: center;
  margin-bottom: 48px;
}
.industries-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}
.industries-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 120px;
}
.industry-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}
.industry-item:hover .industry-icon {
  box-shadow: 0 6px 24px rgba(204, 0, 0, 0.15);
  transform: translateY(-3px);
}
.industry-icon svg {
  width: 36px;
  height: 36px;
  color: var(--red);
}
.industry-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
}

/* ---- Bottom CTA ---- */
.services-bottom-cta {
  background: var(--white);
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid var(--gray-100);
}
.services-bottom-cta h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 28px;
  line-height: 1.25;
}
.services-bottom-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  border: 2px solid var(--red);
}
.btn-cta-call:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.3);
}
.btn-cta-call svg {
  width: 18px;
  height: 18px;
}
.btn-cta-request {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  border: 2px solid var(--black);
}
.btn-cta-request:hover {
  background: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.btn-cta-request svg {
  width: 18px;
  height: 18px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .service-card {
    grid-template-columns: 1fr;
  }
  .service-card-image {
    width: 100%;
  }
  .service-card-image img {
    height: 180px;
  }
}
@media (max-width: 600px) {
  .services-intro-header h2 {
    font-size: 26px;
  }
  .service-card {
    padding: 24px 20px;
  }
  .service-card-content h3 {
    font-size: 19px;
  }
  .industries-grid {
    gap: 16px;
  }
  .industry-item {
    width: 90px;
  }
  .industry-icon {
    width: 64px;
    height: 64px;
  }
  .industry-icon svg {
    width: 28px;
    height: 28px;
  }
  .services-bottom-cta h2 {
    font-size: 22px;
  }
  .btn-cta-call,
  .btn-cta-request {
    width: 100%;
    justify-content: center;
  }
  .services-bottom-cta-actions {
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    margin: 0 auto;
  }
}

.services-cards.services-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* =========================================
         ABOUT PAGE — Additional Styles
         ========================================= */

/* Hero with bg image */
.about-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gray-100);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-bg.png");
  background-size: cover;
  background-position: center right;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.92) 35%,
    rgba(255, 255, 255, 0.55) 60%,
    rgba(255, 255, 255, 0.15) 100%
  );
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 620px;
}
.about-hero-inner h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-300);
}
.about-hero-inner h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 16px;
}
.about-hero-inner p {
  font-size: 15.5px;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 14px;
}
.about-hero-inner p strong {
  color: var(--black);
  font-weight: 700;
}

/* Generic content section */
.about-section {
  padding: 48px 0;
}
.about-section.alt {
  background: var(--gray-100);
}
.about-section-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.about-section-title h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--black);
  white-space: nowrap;
}
.about-section-title h2.accent {
  color: var(--red);
}
.about-section-title .rule {
  flex: 1;
  height: 1px;
  background: var(--gray-300);
}
.about-section p.lead {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.7;
  max-width: 820px;
}
.about-section p.lead strong {
  color: var(--black);
  font-weight: 700;
}

/* Two-column section: list + image */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.about-split.reverse .about-split-image {
  order: -1;
}
.about-check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--gray-700);
}
.about-check-list svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
}
.about-split-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Strength + gallery */
.strength-section {
  padding: 48px 0 0;
}
.strength-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 32px;
}
.strength-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* =========================================
         RESPONSIVE
         ========================================= */
@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-split.reverse .about-split-image {
    order: 0;
  }
  .about-split-image img {
    height: 280px;
  }
}
@media (max-width: 768px) {
  .about-hero {
    min-height: auto;
  }
  .about-hero-bg {
    opacity: 0.25;
  }
  .about-hero-overlay {
    background: rgba(255, 255, 255, 0.85);
  }
  .about-hero-inner {
    max-width: 100%;
  }
  .about-hero-inner h1 {
    font-size: 30px;
  }
  .about-section-title h2 {
    font-size: 24px;
  }
  .strength-gallery {
    grid-template-columns: 1fr;
  }
  .strength-gallery img {
    height: 200px;
  }
}

.w-full {
  width: 100%;
}

/* =========================================
         CONTACT PAGE — Additional Styles
         ========================================= */

.page-hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #ececec 100%);
  padding: 60px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--gray-300);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
}
.page-hero p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--gray-700);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.page-hero p strong {
  color: var(--black);
}

/* Contact main section */
.contact-section {
  padding: 60px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Info card */
.contact-info-card {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 32px;
}
.contact-info-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 24px;
}
.contact-info-title svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex-shrink: 0;
}
.contact-address {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}
.contact-address svg {
  width: 18px;
  height: 18px;
  color: var(--gray-700);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-address p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-300);
  margin-bottom: 0;
}
.contact-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
}
.contact-list-item svg {
  width: 18px;
  height: 18px;
  color: var(--gray-700);
  flex-shrink: 0;
}
.contact-list-item strong {
  color: var(--black);
  font-weight: 700;
}
.contact-list-item a {
  color: var(--gray-700);
  font-weight: 700;
  transition: var(--transition);
}
.contact-list-item a:hover {
  color: var(--red);
}

/* Form */
.contact-form-card {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.contact-form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 24px;
}
.contact-form .form-group {
  margin-bottom: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-500);
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23777777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  cursor: pointer;
  color: var(--gray-700);
}
.contact-form select:invalid {
  color: var(--gray-500);
}
.contact-form .btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}
.contact-form .btn-submit:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}
.contact-form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 16px;
}

/* =========================================
         WHY + MAP SECTION
         ========================================= */
.why-map-section {
  padding: 0 0 60px;
  background: var(--white);
}
.why-map-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
}

/* Why Contact Us card */
.why-card {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.why-card h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  flex: 1;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
}
.why-list svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}
.why-card-footer {
  border-top: 1px solid var(--gray-300);
  padding-top: 20px;
}
.why-card-footer p {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
}
.why-card-actions {
  display: flex;
  gap: 10px;
}

.btn-call-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #16234e;
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  border: 2px solid #16234e;
  flex: 1;
}
.btn-call-dark:hover {
  background: #0e1733;
  border-color: #0e1733;
}
.btn-call-dark svg {
  width: 15px;
  height: 15px;
}
.btn-whatsapp-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #2e7d52;
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  border: 2px solid #2e7d52;
  flex: 1.4;
}
.btn-whatsapp-green:hover {
  background: #246342;
  border-color: #246342;
}
.btn-whatsapp-green svg {
  width: 16px;
  height: 16px;
}

/* Map card */
.map-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  flex: 1;
  border: 0;
  min-height: 340px;
}
.map-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}
.map-card-footer svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

/* =========================================
         BOTTOM CTA STRIP
         ========================================= */
.bottom-cta-section {
  padding: 0 0 60px;
  background: var(--white);
}
.bottom-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
}
.bottom-cta-grid .why-card {
  margin: 0;
}
.need-supplier-card {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.need-supplier-card h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}
.need-supplier-card p {
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 24px;
}
.need-supplier-actions {
  display: flex;
  gap: 12px;
}
.need-supplier-actions .btn-call-dark,
.need-supplier-actions .btn-whatsapp-green {
  flex: 0 0 auto;
  padding: 12px 28px;
}

/* =========================================
         RESPONSIVE
         ========================================= */
@media (max-width: 1024px) {
  .contact-grid,
  .why-map-grid,
  .bottom-cta-grid {
    grid-template-columns: 1fr;
  }
  .map-card {
    min-height: 320px;
  }
}
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 32px;
  }
  .contact-info-card,
  .contact-form-card,
  .why-card,
  .need-supplier-card {
    padding: 24px;
  }
  .need-supplier-actions,
  .why-card-actions {
    flex-direction: column;
  }
}
