:root {
  --bg: #f2f6fb;
  --surface: #ffffff;
  --surface-soft: #e6eef8;
  --text: #1d2b3a;
  --muted: #2f4359;
  --heading: #12365f;
  --line: rgba(18, 54, 95, 0.12);
  --accent: #1f4f8d;
  --accent-deep: #163b69;
  --accent-alt: #2c7f88;
  --gold: #c89c3d;
  --shadow: 0 14px 34px rgba(15, 35, 60, 0.1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1120px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ecf3fb 0%, #f8fbff 22%, #f2f6fb 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

iframe {
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, #1f4f8d 0%, #275fa6 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.brand small {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(145deg, #123967 0%, #0d2a49 100%);
}

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

.nav-links a {
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 600;
}

.hero {
  padding: 58px 0 42px;
  background:
    radial-gradient(circle at top right, rgba(44, 127, 136, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(31, 79, 141, 0.08) 0%, rgba(31, 79, 141, 0.02) 62%, transparent 100%);
}

.hero-copy {
  max-width: 860px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(31, 79, 141, 0.04) 0%, rgba(255, 255, 255, 0.98) 82%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #2e5783;
}

.hero h1,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--heading);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.hero-text,
.section-heading p,
.product-copy p,
.benefit-grid p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(31, 79, 141, 0.2);
}

.button-secondary {
  border: 1px solid #1f4f8d;
  background: #ffffff;
  color: #1f4f8d;
  box-shadow: 0 8px 18px rgba(31, 79, 141, 0.18);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li {
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-deep);
  background: rgba(31, 79, 141, 0.08);
  border: 1px solid rgba(31, 79, 141, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  content: "\2713";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #ffffff;
  background: linear-gradient(135deg, #26b766 0%, #169550 100%);
  box-shadow: 0 2px 4px rgba(22, 149, 80, 0.32);
  flex: 0 0 18px;
}

.section {
  padding: 68px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2.05rem, 4vw, 3.3rem);
  margin-bottom: 10px;
}

.brands-section {
  padding-top: 12px;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.brand-strip-logo {
  width: 100%;
  height: 116px;
  object-fit: contain;
  object-position: center;
  padding: 6px 8px;
  background: #ffffff;
  border: 1px solid rgba(31, 79, 141, 0.14);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.brand-strip-logo-main {
  height: 132px;
}

.brand-strip-logo-focus {
  height: 144px;
}

.product-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.contact-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(31, 79, 141, 0.08);
  box-shadow: var(--shadow);
}

.product-card.featured::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-alt) 62%, var(--gold) 100%);
}

.product-image {
  min-height: 230px;
  background: linear-gradient(135deg, rgba(31, 79, 141, 0.08) 0%, rgba(44, 127, 136, 0.06) 100%);
}

.product-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-copy {
  padding: 22px;
}

.pill {
  display: inline-block;
  margin-bottom: 12px;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  color: #8a6a23;
  background: rgba(200, 156, 61, 0.16);
}

.product-copy h3,
.benefit-grid h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--heading);
  letter-spacing: -0.02em;
  font-size: 1.3rem;
}

.product-copy ul,
.contact-details ul {
  margin: 14px 0 0;
  padding-left: 18px;
  line-height: 1.75;
  color: #3f5368;
}

.product-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.product-brands img {
  width: auto;
  max-width: 210px;
  height: 60px;
  object-fit: contain;
}

.product-brands img.product-logo-focus {
  max-width: 232px;
  height: 68px;
}

.about-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.04rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
}

.why-us .benefit-grid article {
  padding: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(31, 79, 141, 0.07) 0%, #ffffff 100%);
  border: 1px solid rgba(31, 79, 141, 0.08);
}

.contact-section {
  padding-bottom: 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 20px;
}

.contact-card {
  padding: 24px;
}

.contact-card .eyebrow,
.contact-card p {
  color: var(--muted);
}

.enquiry-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid #cfd8e2;
  border-radius: 11px;
  padding: 13px 14px;
  font: inherit;
  background: #ffffff;
}

.info-column {
  display: grid;
  gap: 20px;
}

.map-frame {
  margin-top: 14px;
  overflow: hidden;
  border-radius: 14px;
  min-height: 320px;
}

.map-frame iframe {
  width: 100%;
  min-height: 320px;
}

.map-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  padding: 28px 0 32px;
  border-top: 1px solid rgba(31, 79, 141, 0.16);
  background: linear-gradient(180deg, #12365f 0%, #0e2b4a 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  align-items: start;
  gap: 18px;
}

.site-footer strong,
.site-footer p,
.site-footer a {
  color: #e9f2ff;
}

.site-footer strong {
  font-size: 1.1rem;
}

.site-footer p {
  margin: 6px 0;
  line-height: 1.5;
  color: rgba(233, 242, 255, 0.92);
}

.site-footer a {
  display: inline-block;
  margin: 4px 0;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366 0%, #129d4f 100%);
  box-shadow: 0 14px 24px rgba(18, 157, 79, 0.35);
}

.floating-whatsapp img {
  width: 34px;
  height: 34px;
}

@media (max-width: 980px) {
  .brand-strip,
  .product-grid,
  .benefit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 54px 0;
  }

  .hero-copy,
  .product-copy,
  .contact-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .brand-strip-logo {
    height: 126px;
  }

  .brand-strip-logo-main {
    height: 142px;
  }

  .brand-strip-logo-focus {
    height: 152px;
  }

  .product-brands {
    gap: 12px;
  }

  .product-brands img {
    max-width: 186px;
    height: 56px;
  }

  .product-brands img.product-logo-focus {
    max-width: 202px;
    height: 62px;
  }

  .button {
    width: 100%;
  }

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

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    right: 12px;
    bottom: 12px;
  }
}
