/* ═══════════════════════════════════════════
   PGCO INTERNATIONAL — PREMIUM DESIGN SYSTEM
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&family=DM+Mono:wght@400;500&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── TOKENS ── */
:root {
  --teal:        #3dc3aa;
  --teal-dark:   #2ea899;
  --teal-light:  #e8f9f6;
  --teal-mid:    #c2ede6;
  --teal-heading: #2b8977;
  --blue:        #346cb6;
  --blue-dark:   #2558a0;
  --blue-light:  #e8f1fb;
  --navy:        #192c54;
  --navy-mid:    #1e3564;
  --navy-dark:    #0d162a;
  --navy-light:  #263d6e;
  --navy-border: #a7b6c7;
  --off-white:   #f7f6f2;
  --warm-gray:   #ede9e0;
  --border:      rgba(25,44,84,0.09);
  --border-mid:  rgba(25,44,84,0.15);
  --text-dark:   #0f1a2e;
  --text-mid:    #4a5568;
  --text-light:  #8a95a5;
  --white:       #ffffff;
  --shadow-sm:   0 2px 12px rgba(25,44,84,0.06);
  --shadow-md:   0 8px 32px rgba(25,44,84,0.10);
  --shadow-lg:   0 20px 60px rgba(25,44,84,0.14);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --max-w:       1200px;
  --nav-h:       110px;
  --trans:       0.25s ease;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5vw;
}

/* ═══════════════════════════════
   TOPBAR
═══════════════════════════════ */
.topbar {
  background: var(--navy);
  padding: 0;
  height: 36px;
  display: flex;
  align-items: center;
}
.topbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}
.topbar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--trans);
}
.topbar__item:hover { color: var(--teal); }
.topbar__item svg {
  width: 12px; height: 12px;
  stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
/* ================================
   NAVBAR
   ================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 1);
  height: 110px;                              /* slightly taller to breathe with bigger logo */
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans), background var(--trans);
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

/* ── Inner layout ── */
.navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5vw;
  height: 110px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  /* subtle scale-up on hover */
  transition: opacity 0.2s ease;
}
.nav-logo:hover {
  opacity: 0.85;
}
.nav-logo img {
  height: 100px;           /* larger — fills the nav without touching the border */
  width: auto;
  max-width: 220px;        /* prevents very wide logos from overflowing */
  object-fit: contain;
  display: block;
}

/* ── Nav links list ── */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;       /* pushes links + CTA to the right */
}

/* ── Individual link ── */
.navbar__link {
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--navy-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: var(--radius-sm);
  transition: color var(--trans), background var(--trans);
  white-space: nowrap;
}
.navbar__link:hover,
.navbar__link.active {
  color: var(--navy);
  background: var(--off-white);
}

/* ── CTA button ── */
.navbar__cta {
  background: var(--teal) !important;
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 13.5px;
  padding: 9px 20px !important;
  letter-spacing: 0.04em;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans) !important;
  white-space: nowrap;
  flex-shrink: 0;
}
.navbar__cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(61, 195, 170, 0.3) !important;
}

/* ── Hamburger toggle ── */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--trans);
}
.navbar__toggle:hover {
  background: var(--off-white);
}
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

/* Animated X state when open */
.navbar__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Mobile drawer ── */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 5vw 24px;
  gap: 4px;
}
.navbar__mobile.open {
  display: flex;
}
.navbar__mobile .navbar__link {
  padding: 10px 14px;
  font-size: 14px;
}
.navbar__mobile .navbar__cta {
  margin-top: 8px;
  padding: 13px 14px !important;
  text-align: center;
  display: block;
  border-radius: var(--radius-sm);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 820px) {
  .navbar,
  .navbar__inner {
    height: 80px;
  }

  .nav-logo img {
    height: 70px;           /* scales down proportionally on mobile */
    max-width: 180px;
  }

  .navbar__links,
  .navbar__cta {
    display: none;          /* hidden — replaced by mobile drawer */
  }

  .navbar__toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .navbar,
  .navbar__inner {
    height: 70px;
  }

  .nav-logo img {
    height: 60px;
    max-width: 150px;
  }
}

/* ═══════════════════════════════
   BUTTONS
═══════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; letter-spacing: 0.05em;
  text-decoration: none; border: none;
  transition: all var(--trans); white-space: nowrap; cursor: pointer;
}
.btn-primary {
  background: var(--teal); color: #fff;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,195,170,0.3);
}
.btn-navy {
  background: var(--navy); color: #fff;
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline:hover {
  border-color: var(--navy); color: var(--white);
  background: var(--teal);
}
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
}
.btn svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ═══════════════════════════════
   SECTION LABELS / HEADINGS
═══════════════════════════════ */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy-mid); font-weight: 700; margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 22px; height: 1px; background: var(--navy-mid); flex-shrink: 0;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.8vw, 35px);
  font-weight: 800; 
  /* line-height: 1.1; */
  color: var(--teal-heading); letter-spacing: -0.01em;
}
.section-heading em { font-style: italic; color: var(--teal); }
.section-heading--white { color: #fff; }
.section-heading--white em { color: var(--teal); }
.section-divider {
  width: 48px; height: 2px;
  background: linear-gradient(to right, var(--teal), var(--blue));
  border-radius: 2px; margin: 10px 0 18px;
}
.section-sub {
  font-size: 15px; color: var(--text-dark);
  line-height: 1.8; max-width: 600px; font-weight: 400;
}

/* ═══════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════ */
.page-hero {
  /* Your gradient as the base, replacing var(--navy) */
  background: linear-gradient(
    to bottom,
    #19c97a,
    #0d9e84,
    #0b7d9d
  ), url('../images/about-us-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle dark vignette + teal glow on top of the gradient */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 70%),
    linear-gradient(135deg, rgba(0,0,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Grid lines — lightened slightly to show on the new coloured bg */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);     /* slightly brighter — easier to read on green */
  letter-spacing: 0.04em;
}

.breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--trans);
}

.breadcrumb a:hover {
  color: #fff;                        /* white on hover — more contrast than teal on green */
}

.breadcrumb__sep {
  color: rgba(255,255,255,0.30);
}

/* our-story.css */

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

/* body { */
  /* font-family: 'Segoe UI', Arial, sans-serif; */
/* } */

/* ================================
   OUR STORY SECTION
   ================================ */

.our-story {
  position: relative;
  width: 100%;
  /* min-height: 300px; */

  /* Gradient background: teal top → blue bottom */
  /* background: linear-gradient( */
    /* to bottom, */
    /* #19c87b 0%, */
    /* #19af85 30%, */
    /* #0a809b 70%, */
    /* #0459b7 100% */
  /* ),url('../images/bg-image.png');  */
  background: 
  linear-gradient(
    to bottom,
    rgba(25, 200, 123, 0.9) 0%,
    rgba(25, 175, 133, 0.9) 30%,
    rgba(10, 128, 155, 0.9) 70%,
    rgba(4, 89, 183, 0.9) 100%
  ),
  url('../images/bg-image.png') center/cover no-repeat;

  /* Background image blended over the gradient */

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  padding: 40px 0;
}

/* Content container — left-aligned, full width with padding */
.our-story__container {
  width: 100%;
  padding: 0 60px;
}

/* Heading — bold, white, left-aligned */
.our-story__heading {
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  text-align: left;
}

/* Paragraph — white, justified, readable line-height */
.our-story__text {
  font-size: 16px;
  line-height: 1.85;
  font-weight: 400;
  color: #ffffff;
  text-align: justify;
  max-width: 100%;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 768px) {
  .our-story {
    padding: 50px 0;
  }

  .our-story__container {
    padding: 0 24px;
  }

  .our-story__heading {
    font-size: 26px;
  }

  .our-story__text {
    font-size: 14px;
    line-height: 1.75;
  }
}
/* ═══════════════════════════════
   CTA BANNER
═══════════════════════════════ */
.cta-banner {
  /* background: var(--navy); */
  /* background: linear-gradient( */
    /* to bottom, */
	/* rgba(11, 125, 157, 0.8) 0%, */
	/* rgba(25, 201, 122, 0.8) 50%, */
	/* rgba(11, 125, 157, 0.8) 100% */
  /* ), */
  /* url('../images/contact-us.jpg') center/cover no-repeat; */
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 100% at 60% 50%, rgba(61,195,170,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400; color: var(--navy); line-height: 1.2;
}
.cta-banner__title span { color: var(--teal); }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
/* .footer { */
  /* background: linear-gradient( */
    /* to bottom, */
	/* rgba(25, 201, 122, 0.9) 0%, */
	/* rgba(13, 158, 132, 0.9) 40%, */
	/* rgba(11, 125, 157, 0.9) 100% */
  /* ), */
  /* url('../images/contact-us.jpg') center/cover no-repeat; */
  /* padding-top: 60px; */
  /* color: rgba(255,255,255,1); */
/* } */

.footer {
  background:
    /* LIGHT REFLECTION (metal shine) */
    linear-gradient(
      120deg,
      rgba(255,255,255,0.15) 0%,
      rgba(255,255,255,0.05) 20%,
      rgba(255,255,255,0.15) 40%,
      rgba(255,255,255,0.03) 60%,
      rgba(255,255,255,0.12) 80%
    ),
    /* MAIN METALLIC GRADIENT */
    linear-gradient(
      to bottom,
      rgba(25, 201, 122, 0.85),
      rgba(13, 158, 132, 0.9),
      rgba(11, 125, 157, 0.95)
    ),
    /* IMAGE */
    url('../images/contact-us.jpg') center/cover no-repeat;

  padding-top: 50px;
  color: #fff;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 25px;
  /* border-bottom: 1px solid rgba(255,255,255,0.1); */
  margin-bottom: 32px;
}
/* .footer__logo { */
  /* display: inline-flex; align-items: center; gap: 10px; */
  /* text-decoration: none; margin-bottom: 16px; */
  /* font-size: 15px; font-weight: 500; color: var(--white); */
  /* letter-spacing: 0.03em; */
/* } */
/* .footer__logo span { color: var(--teal); } */
.footer-logo img { height: 80px; width: auto; object-fit: contain; }
.footer__tagline {
  font-size: 14px; line-height: 1.8; font-weight: 500; margin-top: 10px;
  color: var(--navy-dark); max-width: 280px; margin-bottom: 10px; 
}
.footer__col-title {
  font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy-dark); font-weight: 600; margin-bottom: 20px;
}
.footer__links {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.footer__links a {
  font-size: 14px; color: var(--navy-dark); text-decoration: none;
  transition: color var(--trans); font-weight: 500;
}
.footer__links a:hover { color: var(--teal); }
.footer__address {
  font-size: 14px; line-height: 1.8; font-weight: 500;
  color: var(--navy-dark);
}
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px;
}
.footer__contact-item svg {
  width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px;
  stroke: var(--navy-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.footer__contact-item a {
  font-size: 14px; color: var(--navy-dark); text-decoration: none;
  transition: color var(--trans); font-weight: 500;
}
.footer__contact-item a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--navy-dark);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 14px;
  color: var(--navy-dark);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}


/* ═══════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ═══════════════════════════════════════
   HOME — HERO CAROUSEL
═══════════════════════════════════════ */
.carousel {
  position: relative; overflow: hidden;
  height: calc(100vh - var(--nav-h));
  min-height: 520px; max-height: 860px;
  background: var(--navy);
}
.carousel__track { position: absolute; inset: 0; }
.carousel__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.9s ease;
}
.carousel__slide.active { opacity: 1; }
.carousel__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* filter: brightness(0.84) saturate(0.85); */
}
.carousel__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(25,44,84,0.7) 0%, rgba(25,44,84,0.3) 60%);
  display: flex; align-items: center;
}
.carousel__content {
  max-width: var(--max-w); margin: 0 auto; padding: 0 7vw;
  width: 100%;
}
.carousel__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 20px;
}
.carousel__label::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--teal);
}
.carousel__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 500; color: #fff;
  line-height: 1.05; letter-spacing: -0.01em;
  max-width: 680px; margin-bottom: 20px;
}
.carousel__sub {
  font-size: 16px; line-height: 1.8; color: rgba(255,255,255,1);
  max-width: 480px; margin-bottom: 36px; font-weight: 500;
}
.carousel__btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); color: #fff;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; letter-spacing: 0.05em;
  text-decoration: none;
  transition: all var(--trans);
}
.carousel__btn:hover {
  background: var(--teal-dark); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(61,195,170,0.35);
}
.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background var(--trans);
  z-index: 10;
}
.carousel__arrow:hover { background: rgba(61,195,170,0.25); border-color: var(--teal); }
.carousel__arrow svg {
  width: 18px; height: 18px; stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.carousel__arrow--prev { left: 24px; }
.carousel__arrow--next { right: 24px; }
.carousel__dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.carousel__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none;
  transition: all var(--trans); padding: 0;
}
.carousel__dot.active {
  width: 24px; border-radius: 3px; background: var(--teal);
}

/* ═══════════════════════════════════════
   HOME — FEATURES STRIP
═══════════════════════════════════════ */
.features-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.features-strip__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 5vw;
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide-y: none;
}
.features-strip__item {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  transition: background var(--trans);
}
.features-strip__item:last-child { border-right: none; }
.features-strip__item:hover { background: var(--teal-light); }
.features-strip__icon {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.features-strip__icon svg {
  width: 18px; height: 18px; stroke: var(--teal); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.features-strip__title {
  font-size: 16.5px; font-weight: 500; color: var(--navy);
  margin-bottom: 6px;
}
.features-strip__desc {
  font-size: 15px; color: var(--text-dark); line-height: 1.65; font-weight: 400;
}

/* ═══════════════════════════════════════
   HOME — ABOUT SECTION
═══════════════════════════════════════ */
.home-about { padding: 40px 0; background: #fff; }
.home-about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.home-about__image-wrap {
  position: relative;
}
.home-about__image-wrap img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-lg);
}
.home-about__badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--teal); color: #fff;
  padding: 24px 28px; border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(61,195,170,0.28);
}
.home-about__badge-text {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 6px;
}
.home-about__badge-val {
  font-family: 'Cormorant Garamond', serif; color: var(--white);
  font-size: 24px; font-weight: 800; line-height: 1.2;
}
.home-about__text {
  font-size: 15px; line-height: 1.9; color: var(--text-dark);
  font-weight: 400; margin-bottom: 18px;
}
.home-about__features { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.home-about__feature {
  display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-dark);
}
.home-about__feature-icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-mid); display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.home-about__feature-icon svg {
  width: 12px; height: 12px; stroke: var(--teal); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* ═══════════════════════════════════════
   HOME — PRODUCTS GRID
═══════════════════════════════════════ */
.home-products {
  padding: 20px 0;
  background: var(--off-white);
}
.home-products__header {
  text-align: center; margin-bottom: 36px;
}
.home-products__header .section-label {
  justify-content: center;
}
.home-products__header .section-label::before { display: none; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.32s ease;
  text-decoration: none; display: block;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card__image {
  height: 200px; overflow: hidden; position: relative;
}
.product-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.07); }
.product-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(25,44,84,0.55) 100%);
  opacity: 0; transition: opacity var(--trans);
}
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card__body {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; gap: 12px;
}
.product-card__title {
  font-size: 14px; font-weight: 500; color: var(--navy);
}
.product-card__arrow {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--off-white); display: flex; align-items: center; justify-content: center;
  transition: background var(--trans), transform var(--trans);
}
.product-card__arrow svg {
  width: 14px; height: 14px; stroke: var(--navy); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.product-card:hover .product-card__arrow {
  background: var(--teal); transform: translateX(2px);
}
.product-card:hover .product-card__arrow svg { stroke: #fff; }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-section {
  padding: 30px 0 30px;
}
.about-section.section--grey { background: var(--off-white); }
.about-section__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-section__grid--reverse { }
.about-section__image {
  width: 100%; aspect-ratio: 5/4;
  object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-section__text {
  font-size: 15px; line-height: 1.9; color: var(--text-dark);
  font-weight: 400; margin-bottom: 18px;
}
/* Accordion services */
.services-list { margin-top: 18px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.service-item { border-bottom: 1px solid var(--border); }
.service-item:last-child { border-bottom: none; }
.service-item__header {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; cursor: pointer;
  transition: background var(--trans);
  user-select: none;
}
.service-item__header:hover { background: var(--off-white); }
.service-item.open .service-item__header { background: var(--teal-light); }
.service-item__num {
  font-family: 'DM Mono', monospace; font-size: 13px;
  color: var(--teal-dark); flex-shrink: 0; letter-spacing: 0.08em; font-weight: 500;
}
.service-item__title { font-size: 14px; font-weight: 500; color: var(--navy); flex: 1; }
.service-item__icon {
  width: 18px; height: 18px; flex-shrink: 0;
  stroke: var(--text-light); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform var(--trans), stroke var(--trans);
}
.service-item.open .service-item__icon {
  transform: rotate(180deg); stroke: var(--teal);
}
.service-item__body {
  display: none; padding: 0 22px 20px 52px;
  font-size: 14px; line-height: 1.8; color: var(--text); font-weight: 400;
}
.service-item.open .service-item__body { display: block; }

/* ═══════════════════════════════════════
   PRODUCTS PAGE
═══════════════════════════════════════ */
.products-page { padding: 40px 0; }
.prod-category {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.prod-category:last-child { border-bottom: none; }
.prod-category__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.2vw, 40px); font-weight: 500;
  color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 16px;
}
.prod-category__heading::before {
  content: ''; display: block; width: 4px; height: 36px;
  background: var(--teal); border-radius: 2px; flex-shrink: 0;
}
.prod-category__sub {
  font-size: 15px; color: var(--navy-dark); line-height: 1.8; font-weight: 400;
  max-width: 700px; margin-bottom: 40px; padding-left: 20px;
}
.prod-item {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 36px; align-items: start; margin-bottom: 40px;
  padding: 32px; background: var(--off-white); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow var(--trans), border-color var(--trans);
}
.prod-item:hover {
  box-shadow: var(--shadow-md); border-color: var(--teal-mid);
}
.prod-item:last-child { margin-bottom: 0; }
.prod-item__image {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: var(--radius-md);
}
.prod-item__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 500; color: var(--navy-dark);
  margin-bottom: 4px; letter-spacing: -0.01em;
}
.prod-item__tagline {
  font-size: 14px; color: var(--teal); letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 500; margin-bottom: 14px;
}
.prod-item__text {
  font-size: 15px; line-height: 1.85; color: var(--text-dark); font-weight: 400;
}
.prod-category--full {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
  padding: 32px; background: var(--off-white); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.prod-category--full-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: var(--radius-md);
}

/* Products page — sticky sidebar nav */
.products-layout {
  display: grid; grid-template-columns: 220px 1fr; gap: 60px; align-items: start;
}
.products-sidebar {
  position: sticky; top: calc(var(--nav-h) + 24px);
  background: var(--off-white); border-radius: var(--radius-lg);
  border: 1px solid var(--navy-border); padding: 24px; overflow: hidden;
}
.products-sidebar__title {
  font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); font-weight: 500; margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--navy-light);
}
.products-sidebar__link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: 14px; color: var(--navy-mid); text-decoration: none;
  transition: all var(--trans); font-weight: 400; margin-bottom: 2px;
}
.products-sidebar__link:hover, .products-sidebar__link.active {
  background: var(--teal-light); color: var(--teal-dark);
}
.products-sidebar__link::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--navy-light); flex-shrink: 0; transition: background var(--trans);
}
.products-sidebar__link:hover::before,
.products-sidebar__link.active::before { background: var(--teal); }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-page { padding: 80px 0 100px; }
.contact-page__grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start;
}
.contact-form-box {
  background: #fff; border-radius: var(--radius-xl);
  border: 1px solid var(--navy-border); padding: 52px;
  box-shadow: var(--shadow-sm);
}
.contact-form-box__intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 35px; font-weight: 500; color: var(--navy-dark);
  margin-bottom: 36px; line-height: 1.25;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid); font-weight: 500;
}
.form-group input, .form-group textarea, .form-group select {
  background: var(--off-white);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-dark);
  outline: none; transition: border-color var(--trans), background var(--trans);
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--teal); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { font-size: 11.5px; color: #d93025; display: none; margin-top: 2px; }
.form-group.error input, .form-group.error textarea, .form-group.error select {
  border-color: #d93025;
}
.form-group.error .form-error { display: block; }
.form-success-msg {
  display: none; margin-top: 16px; padding: 16px 20px;
  background: var(--teal-light); color: var(--teal-dark);
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  border: 1px solid var(--teal-mid);
}
.form-success-msg.show { display: block; }

.contact-info-box { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.contact-info-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px; font-weight: 500; color: var(--navy-dark); margin-bottom: 24px;
}
.contact-detail-row {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px;
}
.contact-detail-row:last-child { margin-bottom: 0; }
.contact-detail-row__icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
}
.contact-detail-row__icon svg {
  width: 16px; height: 16px; stroke: var(--teal); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.contact-detail-row__label {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); font-weight: 500; margin-bottom: 4px;
}
.contact-detail-row__value {
  font-size: 15px; color: var(--navy); line-height: 1.6; font-weight: 400;
}
.contact-detail-row__value a {
  color: var(--navy); text-decoration: none; transition: color var(--trans);
}
.contact-detail-row__value a:hover { color: var(--teal); }

/* Tag pills */
.tag-pill {
  font-size: 13px; padding: 4px 12px;
  background: rgba(61,195,170,0.08); color: var(--teal-dark);
  border: 1px solid rgba(61,195,170,0.25); border-radius: 3px; font-weight: 500;
}



.section-privacy {
      padding-top: 2rem;
      padding-bottom: 3rem;
}
    .privacy-container {
      width: 100%;
      max-width: 1200px;
      margin-right: auto;
      margin-left: auto;
      padding-right: 0.75rem;
      padding-left: 0.75rem;
    }
	.privacy-row {
      display: flex;
      flex-wrap: wrap;
      margin-right: -0.75rem;
      margin-left: -0.75rem;
    }
    .privacy-col {
      width: 100%;
      padding-right: 0.75rem;
      padding-left: 0.75rem;
      margin-right: auto;
      margin-left: auto;
    }
    @media (min-width: 992px) {
      .privacy-col {
        flex: 0 0 83.3333%;
        max-width: 83.3333%;
      }
    }
	
	.privacy-lead {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 1.5rem;
	  margin-top: 10px;
    }
	
	.privacy-lead strong { font-size: 15px; color: #234f7b; font-weight: 800; }
	
	.privacy-section-block {
      margin-bottom: 3rem;
    }
	
	.privacy-section-block strong {
       color: #234f7b;
    }
	
	.privacy-section-block a { color: #234f7b; }

    .privacy-section-block h3 {
      margin-bottom: 1rem;
      font-size: 1.4rem;
      color: #234f7b;
      border-bottom: 2px solid #e8e8e8;
      padding-bottom: 0.5rem;
    }
	.icon-primary {
      color: #234f7b;
    }
	.icon-mr {
      margin-right: 0.5rem;
    }
	.privacy-list {
      list-style: none;
      padding-left: 0;
      margin-top: 0.5rem;
      margin-bottom: 1rem;
    }
    .privacy-list li {
      position: relative;
      padding: 0.55rem 0 0.55rem 1.4rem;
      border-bottom: 1px solid #e8e8e8;
      color: #404040;
      line-height: 1.75;
    }
    .privacy-list li:last-child { border-bottom: none; }
    .privacy-list li::before {
      content: '›';
      position: absolute;
      left: 0;
      top: 0.55rem;
      color: #234f7b;
      font-weight: 700;
      font-size: 1.1rem;
      line-height: 1.75;
    }
    .privacy-list strong { color: #234f7b; }
	.text-subdued { color: #5B6063; margin-top: 15px; }
	
	.contact-box {
      padding: 1.5rem;
      background-color: #f8f9fa;
      border-radius: 0.375rem;
      border: 1px solid #e8e8e8;
    }

    .contact-box .contact-row {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-bottom: 0.5rem;
      color: #404040;
      font-size: 0.975rem;
      line-height: 1.6;
    }
	
	.contact-row span strong {
		color: var(--navy);	
	}
	
	.contact-box .contact-row-last {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0;
      color: #404040;
      font-size: 0.975rem;
      line-height: 1.6;
    }
	
	.contact-row-last span strong {
		color: var(--navy);	
	}

    .contact-box a { color: #234f7b; text-decoration: none; }
    .contact-box a:hover { color: #d4af37; text-decoration: underline; }

.policy-content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--dark);
}

.policy-section h3 {
    font-size: 1.4rem;
    color: var(--primary);
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0.75rem;
}

.policy-section p {
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0.6rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.75;
}

.policy-list strong {
    color: var(--primary);
}

.policy-content a {
    color: var(--primary);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--accent);
}

.policy-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }

.policy-meta-tag {
    background: var(--teal-light);
	color: var(--text-dark);
    font-size: 0.85rem;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.policy-meta-tag.highlight {
    background: var(--teal-light);
    color: var(--primary-color);
}

.section-terms {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.terms-container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}
.terms-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}
.terms-col {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 992px) {
    .terms-col {
      flex: 0 0 83.3333%;
      max-width: 83.3333%;
    }
}
.terms-lead {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
	margin-top: 10px;
}
.terms-section-block {
    margin-bottom: 3rem;
}
.terms-section-block strong {
	color: #234f7b;	
}
.terms-section-block h3 {  
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #234f7b;
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 0.5rem;
}
.icon-primary {
    color: #234f7b;
}
.icon-mr {
      margin-right: 0.5rem;
}
.terms-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}
.terms-list li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.4rem;
    border-bottom: 1px solid #e8e8e8;
    color: #404040;
    line-height: 1.75;
}
.terms-list li:last-child { border-bottom: none; }
.terms-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0.55rem;
    color: #234f7b;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.75;
}
.terms-list strong { color: #234f7b; }
.contact-box {
      padding: 1rem 1.5rem;
      background-color: #f8f9fa;
      border-radius: 0.375rem;
      border: 1px solid #e8e8e8;
    }
.contact-box-mb {
      margin-bottom: 1rem;
	  margin-top: 1rem;
    }
.contact-row {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0.5rem;
      color: #404040;
      font-size: 0.975rem;
      line-height: 1.6;
    }
.contact-row-last {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0;
      color: #404040;
      font-size: 0.975rem;
      line-height: 1.6;
    }
.contact-row-only {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0;
      color: #404040;
      font-size: 0.975rem;
      line-height: 1.6;
    }

    .contact-box a { color: #234f7b; text-decoration: none; }
    .contact-box a:hover { color: #d4af37; text-decoration: underline; }
.policy-content {
      font-size: 1rem;
      line-height: 1.75;
      color: #1a1a1a;
    }
    .policy-content p { color: #404040; }


/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 860px) {
  :root { --nav-h: 80px; }
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }
  .features-strip__inner { grid-template-columns: 1fr 1fr; }
  .features-strip__item:nth-child(2) { border-right: none; }
  .home-about__grid { grid-template-columns: 1fr; gap: 48px; }
  .home-about__badge { display: none; }
  .about-section__grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-item { grid-template-columns: 1fr; }
  .prod-category--full { grid-template-columns: 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .products-sidebar { position: static; }
  .contact-page__grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 32px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; }
}
@media (max-width: 600px) {
  .features-strip__inner { grid-template-columns: 1fr; }
  .features-strip__item { border-right: none; border-bottom: 1px solid var(--border); }
  .products-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .carousel__title { font-size: 36px; }
}
