@charset "utf-8";
/* CSS Document */

/* <style>  */

/* =========================================================
   CHEMIVILA — EASY EDIT SETTINGS
   Change the values below to modify the whole page quickly.
   ========================================================= */
:root {
  /* FONT — DO NOT CHANGE: POPPINS IS REQUIRED */
  --font-main: 'Poppins', sans-serif;

  /* Main text sizes */
  --heading-size: 14px;
  --body-size: 12px;
  --small-size: 12px;
  --label-size: 14px;
  --button-size: 12px;

  /* Brand colours */
  --navy: #14243b;
  --orange: #f5a000;
  --green: #19843a;
  --blue: #0b67b2;
  --text: #17253a;
  --muted: #555d68;
  --light-line: #e4e4e4;
  --card-line: #ececec;

  /* Layout spacing — easy to adjust */
  --page-top-space: 28px;
  --logo-width: 190px;
  --hero-gap: 18px;
  --columns-top-space: 32px;
  --column-gap: 0px;
  --column-padding-x: 54px;
  --column-padding-top: 4px;
  --column-padding-bottom: 30px;
  --card-gap: 20px;
  --footer-top-space: 18px;

  /* Icon + label alignment — easy to modify */
  --benefit-icon-size: 36px;
  --benefit-icon-label-gap: 3px;
  --benefit-label-line-height: 1.35;
  --benefit-row-gap: 12px;

  /* Animation */
  --animation-speed: 1.35s;
  --animation-gap: .65s;
}

/* =========================================================
   GLOBAL
   ========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: #fff;
  color: var(--text);
  font-size: var(--body-size);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--page-top-space);
}

/* =========================================================
   HEADER / MAIN LOGO
   ========================================================= */
.header {
  text-align: center;
}

.main-logo {
  width: 300px;
  height: 75px;
  max-width: none;
  max-height: none;
  display: block;
  margin: 0 auto;
}

.hero {
  text-align: center;
  padding: var(--hero-gap) 20px var(--columns-top-space);
}

.hero-title {
  font-size: var(--heading-size);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--navy);
}

.hero-line {
  width: 70px;
  height: 2px;
  background: var(--orange);
  margin: 10px auto 12px;
}

.hero-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: var(--body-size);
  color: #394554;
}

/* =========================================================
   TWO VERTICALS
   ========================================================= */
.verticals {
  width: min(1120px, calc(100% - 60px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.vertical {
  min-width: 0;
  padding:
    var(--column-padding-top)
    var(--column-padding-x)
    var(--column-padding-bottom);
}

.vertical + .vertical {
  border-left: 1px solid var(--light-line);
}

.vertical-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.chemi .vertical-title-row { justify-content: flex-end; }
.vila .vertical-title-row { justify-content: flex-start; }

.title-line {
  height: 1px;
  background: #f2bb52;
  flex: 1;
}

.vertical-brand {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.vertical-heading {
  font-size: var(--heading-size);
  line-height: 1.55;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.vila .vertical-heading,
.chemi .vertical-heading { text-align: center; }

.heading-line {
  width: 48px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 10px;
}

.vila .heading-line,
.chemi .heading-line { margin-left: auto; margin-right: auto; }

.vertical-description {
  font-size: var(--body-size);
  color: #394554;
  margin-bottom: var(--card-gap);
}

.vila .vertical-description,
.chemi .vertical-description { text-align: center; }

/* =========================================================
   PRODUCT / SERVICE CARDS
   ========================================================= */
.card {
  background: #fff;
  border: 1px solid var(--card-line);
  border-radius: 9px;
  box-shadow: 0 7px 20px rgba(20,36,59,.06);
}

.product-card {
  min-height: 124px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  margin-bottom: var(--card-gap);
}

.product {
  text-align: center;
  padding: 12px 18px;
}

.product-divider {
  width: 1px;
  height: 76px;
  background: #dddddd;
}

.product-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 6px;
}

.product-name {
  font-size: var(--label-size);
  line-height: 1.35;
  font-weight: 600;
}

.conkre-name {
  color: var(--green);
}

.met-name {
  color: var(--blue);
}

.product-description {
  font-size: var(--body-size);
  line-height: 1.45;
  color: #283341;
}

/* VILA SERVICES */
.service-card {
  min-height: 124px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 12px 7px;
  margin-bottom: var(--card-gap);
}

.service {
  text-align: center;
  padding: 4px 6px;
}

.service-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 7px;
  stroke: var(--orange);
}

.service-name {
  font-size: var(--body-size);
  line-height: 1.45;
  color: #283341;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.button-row {
  display: flex;
  margin-bottom: 22px;
}

.chemi .button-row,
.vila .button-row { justify-content: center; }

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 40px;
  padding: 8px 22px;
  border-radius: 4px;
  border: 1px solid var(--orange);
  font-family: var(--font-main);
  font-size: var(--button-size);
  font-weight: 500;
  text-decoration: none;
  color: var(--orange);
  background: #fff;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.chemi .cta {
  color: #fff;
  background: var(--orange);
}

.cta:hover {
  transform: translateY(-2px);
}

.cta-arrow {
  font-size: 17px;
  line-height: 1;
}

/* =========================================================
   THREE CHEMI BENEFITS
   ========================================================= */

/* CHEMI BENEFITS */
.chem-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--benefit-row-gap, 12px);
  align-items: start;
}

.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  font-size: var(--body-size);
  line-height: var(--benefit-label-line-height, 1.35);
  color: #283341;
}

.benefit-icon {
  width: var(--benefit-icon-size, 36px);
  height: var(--benefit-icon-size, 36px);
  display: block;
  flex: 0 0 var(--benefit-icon-size, 36px);
  margin: 0 auto var(--benefit-icon-label-gap, 3px);
  stroke: var(--orange);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  width: min(1120px, calc(100% - 60px));
  margin: 0 auto;
  border-top: 1px solid var(--light-line);
  text-align: center;
  padding: var(--footer-top-space) 20px 18px;
}

.values {
  font-size: var(--label-size);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--navy);
}

.values span {
  color: var(--orange);
  padding: 0 9px;
}

.footer-text {
  font-size: var(--body-size);
  color: #646b75;
  margin-top: 3px;
}


/* =========================================================
   CREATIVE CTA HOVER EFFECT
   Both Explore buttons use the same subtle interaction.
   ========================================================= */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(245,160,0,0);
  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    box-shadow .28s ease,
    background-color .28s ease,
    color .28s ease,
    border-color .28s ease;
}

/* Moving light sweep */
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,.08) 35%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,.08) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left .55s ease;
  z-index: -1;
}

/* Make button content stay above the sweep */
.cta > * {
  position: relative;
  z-index: 2;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 9px 22px rgba(245,160,0,.20);
  outline: none;
}

.cta:hover::before,
.cta:focus-visible::before {
  left: 135%;
}

/* Arrow glides to the right */
.cta-arrow {
  display: inline-block;
  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    letter-spacing .28s ease;
}

.cta:hover .cta-arrow,
.cta:focus-visible .cta-arrow {
  transform: translateX(6px);
}

/* CHEMI: orange filled button becomes slightly deeper */
.chemi .cta:hover,
.chemi .cta:focus-visible {
  background: #e89400;
  border-color: #e89400;
}

/* VILA: outline button fills softly on hover */
.vila .cta:hover,
.vila .cta:focus-visible {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* Keyboard users get a clear focus state */
.cta:focus-visible {
  box-shadow:
    0 0 0 3px rgba(245,160,0,.16),
    0 9px 22px rgba(245,160,0,.20);
}

/* Respect reduced-motion accessibility preference */
@media (prefers-reduced-motion: reduce) {
  .cta,
  .cta::before,
  .cta-arrow {
    transition: none;
  }

  .cta:hover,
  .cta:focus-visible {
    transform: none;
  }

  .cta::before {
    display: none;
  }
}

/* =========================================================
   FADE-IN ANIMATION
   ========================================================= */
@keyframes cvFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade {
  opacity: 0;
  animation: cvFade var(--animation-speed) ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    opacity: 1;
    animation: none;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

/* =========================================================
   COLUMN ALIGNMENT — MIRRORED BRAND LAYOUT
   CHEMI = LEFT / RIGHT-ALIGNED TEXT
   VILA  = RIGHT / LEFT-ALIGNED TEXT
   ========================================================= */
@media (min-width: 761px) {
  .chemi .vertical-title-row {
    justify-content: flex-end;
  }

  .vila .vertical-title-row {
    justify-content: flex-start;
  }

  .chemi .vertical-heading,
  .chemi .vertical-description {
    text-align: right;
  }

  .vila .vertical-heading,
  .vila .vertical-description {
    text-align: left;
  }

  .chemi .heading-line {
    margin-left: auto;
    margin-right: 0;
  }

  .vila .heading-line {
    margin-left: 0;
    margin-right: auto;
  }

  .chemi .button-row,
  .vila .button-row {
    justify-content: center;
  }
}

/* Mobile: both sections use a clean centred presentation. */
@media (max-width: 760px) {
  .chemi .vertical-title-row,
  .vila .vertical-title-row {
    justify-content: center;
  }

  .chemi .vertical-heading,
  .vila .vertical-heading,
  .chemi .vertical-description,
  .vila .vertical-description {
    text-align: center;
  }

  .chemi .heading-line,
  .vila .heading-line {
    margin-left: auto;
    margin-right: auto;
  }

  .chemi .button-row,
  .vila .button-row {
    justify-content: stretch;
  }
}

@media (max-width: 760px) {
  :root {
    --logo-width: 150px;
    --columns-top-space: 22px;
    --column-padding-x: 20px;
    --column-padding-top: 25px;
    --column-padding-bottom: 32px;
  }

  .page {
    justify-content: flex-start;
  }

  .verticals {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .vertical + .vertical {
    border-left: 0;
    border-top: 1px solid var(--light-line);
  }

  .vertical-title-row,
  .chemi .vertical-title-row,
  .vila .vertical-title-row {
    justify-content: flex-start;
  }

  .chemi .vertical-heading,
  .vila .vertical-heading,
  .chemi .vertical-description,
  .vila .vertical-description {
    text-align: center;
  }

  .chemi .heading-line,
  .vila .heading-line {
    margin-left: auto;
    margin-right: auto;
  }

  .product-card {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .product-divider {
    width: 70%;
    height: 1px;
    margin: 4px auto;
  }

  .service-card {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .button-row,
  .chemi .button-row,
  .vila .button-row {
    justify-content: stretch;
  }

  .cta {
    width: 100%;
  }

  .chem-benefits {
    gap: 5px;
  }

  .footer {
    width: calc(100% - 28px);
  }
}

@media (max-width: 380px) {
  :root {
    --logo-width: 135px;
  }
}

/* =========================================================
   FINAL STRUCTURE FIX — CHEMI 3 / VILA 3
   ========================================================= */

/* Equal-width main verticals */
.verticals {
  width: min(1120px, calc(100% - 60px));
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Equal 3-column cards on desktop */
.product-card,
.service-card {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
}

.product,
.service {
  min-width: 0;
  width: 100%;
}

/* Product logo sizing: prevents a broken/oversized image from changing column width */
.conke-met {
  width: auto;
  max-width: 100px;
  height: 28px;
  object-fit: contain;
  margin: 0 auto 6px;
}

/* If the MetGuard image cannot be found, the fallback text remains visible. */
.metguard-fallback {
  display: none;
  font-size: var(--label-size);
  line-height: 1.35;
  font-weight: 600;
  color: var(--blue);
}

/* Desktop mirrored heading alignment */
@media (min-width: 761px) {
  .chemi .vertical-title-row { justify-content: flex-end; }
  .vila .vertical-title-row { justify-content: flex-start; }

  .chemi .vertical-heading,
  .chemi .vertical-description { text-align: right; }

  .vila .vertical-heading,
  .vila .vertical-description { text-align: left; }

  .chemi .heading-line {
    margin-left: auto;
    margin-right: 0;
  }

  .vila .heading-line {
    margin-left: 0;
    margin-right: auto;
  }

  .chemi .button-row,
  .vila .button-row {
    justify-content: center;
  }
}

/* Mobile: both verticals centered; cards stack cleanly */
@media (max-width: 760px) {
  .verticals {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .vertical + .vertical {
    border-left: 0;
    border-top: 1px solid var(--light-line);
  }

  .vertical-title-row,
  .chemi .vertical-title-row,
  .vila .vertical-title-row {
    justify-content: center;
  }

  .chemi .vertical-heading,
  .vila .vertical-heading,
  .chemi .vertical-description,
  .vila .vertical-description {
    text-align: center;
  }

  .chemi .heading-line,
  .vila .heading-line {
    margin-left: auto;
    margin-right: auto;
  }

  .product-card,
  .service-card {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .product,
  .service {
    padding: 12px 10px;
  }

  .button-row,
  .chemi .button-row,
  .vila .button-row {
    justify-content: stretch;
  }

  .cta {
    width: 100%;
  }
}


/* Slow, sequential fade-in animation */
.delay-1 { animation-delay: 0.40s; }
.delay-2 { animation-delay: 1.05s; }
.delay-3 { animation-delay: 1.70s; }
.delay-4 { animation-delay: 2.35s; }
.delay-5 { animation-delay: 3.00s; }
.delay-6 { animation-delay: 3.65s; }
.delay-7 { animation-delay: 4.30s; }
.delay-8 { animation-delay: 4.95s; }


/* MOBILE ONLY: centered responsive presentation.
   Desktop alignment above remains unchanged. */
@media (max-width: 768px) {
  .verticals {
    grid-template-columns: 1fr;
  }

  .vertical {
    text-align: center;
  }

  .vertical-header,
  .vertical-title,
  .vertical-description,
  .vertical-header-left,
  .vertical-header-right {
    text-align: center;
  }

  .vertical-header-left,
  .vertical-header-right {
    justify-content: center;
  }

  .vertical-header-left .line,
  .vertical-header-right .line,
  .section-line,
  .orange-line {
    margin-left: auto;
    margin-right: auto;
  }

  .product-card,
  .service-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .product,
  .service,
  .product-name,
  .product-description,
  .service-name,
  .benefits,
  .benefit,
  .button-row,
  .contact-details {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .product-description {
    line-height: 1.55;
  }

  .contact-details {
    width: 100%;
  }

  .contact-details > div {
    text-align: center;
  }
}


.nowrap-second-line { white-space: nowrap; }


/* ===== FINAL CHEMI / VILA BALANCED LAYOUT ===== */
.verticals {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card,
.service-card {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product,
.service {
  min-width: 0;
  width: 100%;
}

.conke-met {
  width: auto;
  max-width: 100px;
  height: 28px;
  object-fit: contain;
  margin: 0 auto 6px;
}

.coating-services-logo {
  max-width: 72px;
  height: 36px;
  object-fit: contain;
}

.contact-details {
  width: 100%;
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-main);
  font-size: var(--body-size);
  line-height: 1.8;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

@media (min-width: 761px) {
  .chemi .vertical-title-row {
    justify-content: flex-end;
  }

  .vila .vertical-title-row {
    justify-content: flex-start;
  }

  .chemi .vertical-heading,
  .chemi .vertical-description {
    text-align: right;
  }

  .vila .vertical-heading,
  .vila .vertical-description {
    text-align: left;
  }

  .chemi .heading-line {
    margin-left: auto;
    margin-right: 0;
  }

  .vila .heading-line {
    margin-left: 0;
    margin-right: auto;
  }

  .chemi .button-row,
  .vila .button-row {
    justify-content: center;
  }

  .chemi .product-description {
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .verticals {
    grid-template-columns: 1fr;
  }

  .chemi .vertical-title-row,
  .vila .vertical-title-row {
    justify-content: center;
  }

  .chemi .vertical-heading,
  .vila .vertical-heading,
  .chemi .vertical-description,
  .vila .vertical-description {
    text-align: center;
  }

  .chemi .heading-line,
  .vila .heading-line {
    margin-left: auto;
    margin-right: auto;
  }

  .product-card,
  .service-card {
    grid-template-columns: 1fr;
  }

  .chemi .product-description {
    white-space: normal;
  }

  .contact-details {
    text-align: center;
  }
}