/* ═══════════════════════════════════════════════════════════════
   FumiPro Theme — main.css
   Color palette: Sky blue + White + Black (Tailwind Sky / Lime)
═══════════════════════════════════════════════════════════════ */

/* ── Google Font: Inter ───────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/* ── CSS Custom Properties ────────────────────────────────────── */
:root {
  /* Sky palette */
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-300: #7dd3fc;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --sky-800: #075985;
  --sky-900: #0c4a6e;

  /* Lime accent */
  --lime-400: #a3e635;
  --lime-500: #84cc16;
  --lime-600: #65a30d;

  /* Neutrals */
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --black: #020617;

  /* Typography */
  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --section-pad: 72px 5%;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.22s;

  /* Header heights */
  --ql-height: 36px;
  --nav-height: 66px;
  --header-total: calc(var(--ql-height) + var(--nav-height));
}

/* ── Reset ────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--slate-900);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
}

/* ══════════════════════════════════════════════════════════════
   QUICK LINKS BAR
══════════════════════════════════════════════════════════════ */
.quick-links-bar {
  background: var(--sky-700);
  height: var(--ql-height);
  position: sticky;
  top: 0;
  z-index: 1001;
  border-bottom: 1px solid var(--sky-800);
}
.ql-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ql-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ql-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ql-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color var(--duration) var(--ease);
  white-space: nowrap;
}
.ql-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.75;
}
.ql-item:hover {
  color: var(--white);
}
.ql-divider {
  cursor: default;
}
.ql-social {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease);
}
.ql-social svg {
  width: 13px;
  height: 13px;
}
.ql-social:hover {
  background: rgba(255, 255, 255, 0.25);
}
.ql-cta {
  background: var(--lime-500);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  line-height: inherit;
  transition:
    background var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}
.ql-cta:hover {
  background: var(--lime-600);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════
   SITE HEADER / NAVBAR
══════════════════════════════════════════════════════════════ */
.site-header {
  background: var(--white);
  height: var(--nav-height);
  position: sticky;
  top: var(--ql-height);
  z-index: 1000;
  box-shadow:
    0 1px 0 var(--slate-200),
    0 4px 24px rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--duration) var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.09);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  position: relative;
}

/* Brand: logo + mobile hamburger */
.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-brand .hamburger {
  display: none;
}

/* Logo — far left */
.site-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  text-decoration: none;
  z-index: 2;
}
.site-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity var(--duration) var(--ease);
}
.site-logo:hover .site-logo-img {
  opacity: 0.85;
}
.logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.35);
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}
.logo-icon svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}
.site-logo:hover .logo-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.45);
}
.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.03em;
}

/* Desktop Nav — centered absolutely in the header */
.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.desktop-nav .nav-list,
.desktop-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}
.desktop-nav .nav-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-700);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease);
  position: relative;
  white-space: nowrap;
}
.desktop-nav .nav-list > li > a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--sky-500);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}
.desktop-nav .nav-list > li > a:hover {
  background: var(--sky-50);
  color: var(--sky-600);
}
.desktop-nav .nav-list > li > a:hover::after {
  transform: scaleX(1);
}
.desktop-nav .nav-list > li.current-menu-item > a {
  color: var(--sky-600);
  background: var(--sky-50);
}
.desktop-nav .nav-list > li.current-menu-item > a::after {
  transform: scaleX(1);
}

/* Force left-alignment for all links inside dropdowns/submenus */
.desktop-nav .dropdown a,
.desktop-nav .submenu a {
  justify-content: flex-start !important;
  text-align: left !important;
}

/* ── Dropdown menus ─────────────────────────────────────── */

/* Override the global nav-list flex-row so dropdowns stack vertically */
.desktop-nav li > .dropdown,
.desktop-nav li > .submenu {
  display: block;
  flex-direction: unset;
}
.desktop-nav li > .dropdown > li,
.desktop-nav li > .submenu > li {
  display: block;
  width: 100%;
}

.nav-arrow {
  font-size: 8px;
  margin-left: 4px;
  opacity: 0.55;
  pointer-events: none;
}
.nav-arrow--right {
  margin-left: auto;
  padding-left: 8px;
}

.has-dropdown {
  position: relative;
}
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  transform: translateY(8px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.11);
  padding: 6px;
  list-style: none;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0.18s;
  z-index: 500;
}
.dropdown > li {
  display: block;
  width: 100%;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0s;
}
.desktop-nav .dropdown > li > a {
  justify-content: flex-start;
}
.dropdown > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 12px;
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  text-decoration: none;
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease);
}
.dropdown > li > a:hover {
  background: var(--sky-50);
  color: var(--sky-600);
}
.dropdown > li > a::after {
  display: none;
}

/* 3rd-level — flies out to the right side of the parent dropdown item */
.has-submenu {
  position: relative;
}
.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  transform: translateX(8px);
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.11);
  padding: 6px;
  list-style: none;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0.18s;
  z-index: 501;
}
.submenu > li {
  display: block;
  width: 100%;
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0s;
}
.nav-arrow--right {
  margin-left: auto;
  padding-left: 8px;
}
.submenu li a {
  display: block;
  padding: 7px 12px;
  color: var(--slate-700);
  font-size: 13px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  text-decoration: none;
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease);
}
.submenu li a:hover {
  background: var(--sky-50);
  color: var(--sky-600);
}
.submenu li a::after {
  display: none;
}

/* Two-column submenu for long lists (e.g. Chemicals & Products) */
.submenu--two-col {
  column-count: 2;
  column-gap: 0;
  min-width: 340px;
}
.submenu--two-col li {
  break-inside: avoid;
}
.submenu--two-col li a {
  white-space: normal;
  text-align: left;
}

/* Submenu overflow — flips to left side when right edge would clip */
.submenu--flip-left {
  left: auto !important;
  right: 100% !important;
  transform: translateX(-8px);
}
.has-submenu:hover > .submenu--flip-left,
.has-submenu:focus-within > .submenu--flip-left {
  transform: translateX(0) !important;
}

/* ── Mobile accordion nav ────────────────────────────────── */
.mob-section {
  width: 100%;
}
.mob-header {
  display: flex;
  align-items: center;
}
.mob-header a {
  flex: 1;
}
.mob-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--slate-500);
  border-radius: var(--radius-sm);
  line-height: 1;
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease);
  flex-shrink: 0;
}
.mob-toggle:hover {
  background: var(--sky-50);
  color: var(--sky-600);
}
.mob-toggle.open {
  color: var(--sky-600);
}
.mob-dropdown {
  display: none;
  flex-direction: column;
  gap: 1px;
  padding-left: 14px;
  border-left: 2px solid var(--sky-100);
  margin: 2px 0 6px 12px;
}
.mob-dropdown.open {
  display: flex;
}
.mob-dropdown > a {
  font-size: 13.5px !important;
  padding: 7px 10px !important;
  color: var(--slate-600) !important;
}
.mob-dropdown .mob-dropdown > a {
  font-size: 13px !important;
  padding: 6px 8px !important;
  color: var(--slate-500) !important;
}

/* Header Search — far right */
.header-search {
  margin-left: auto;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}
.search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  color: var(--slate-700);
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease);
  flex-shrink: 0;
}
.search-toggle:hover,
.search-toggle.active {
  background: var(--sky-50);
  color: var(--sky-600);
}
.search-drawer {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 300px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 8px;
  display: none;
  z-index: 600;
}
.search-drawer.open {
  display: block;
}
.search-form {
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-input {
  flex: 1;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13.5px;
  font-family: var(--font-sans);
  color: var(--slate-900);
  outline: none;
  transition: border-color var(--duration) var(--ease);
}
.search-input:focus {
  border-color: var(--sky-400);
}
.search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--sky-500);
  border-radius: var(--radius-sm);
  color: var(--white);
  flex-shrink: 0;
  transition: background var(--duration) var(--ease);
}
.search-submit:hover {
  background: var(--sky-600);
}

/* Mobile search form */
.mob-search-form {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 12px;
  background: var(--sky-50);
  border-radius: var(--radius-sm);
}
.mob-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--slate-900);
  outline: none;
}
.mob-search-input::placeholder {
  color: var(--slate-500);
}
.mob-search-btn {
  display: flex;
  align-items: center;
  color: var(--sky-600);
  flex-shrink: 0;
}

/* Hamburger (mobile only — lives inside .header-brand) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger span:nth-child(1) {
  width: 22px;
}
.hamburger span:nth-child(2) {
  width: 16px;
}
.hamburger span:nth-child(3) {
  width: 22px;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 22px;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 22px;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--white);
  padding: 12px 24px 20px;
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease);
  pointer-events: none;
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-nav a {
  color: var(--slate-700);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease);
}
.mobile-nav a:hover {
  background: var(--sky-50);
  color: var(--sky-600);
}
.mobile-cta {
  background: var(--sky-500) !important;
  color: var(--white) !important;
  text-align: center;
  margin-top: 8px;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
}
.mobile-cta:hover {
  background: var(--sky-600) !important;
}

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════ */
.hero {
  padding: 80px 5% 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
  /* Fallback colour when no image is uploaded */
  background: var(--sky-900);
}

/* ── Background image slides ──────────────────────────────────── */
.hero-slides-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}
.hero-slide.active {
  opacity: 1;
}

/* ── Gradient overlay (always on top of the image) ───────────── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 60, 100, 0.95) 0%,
    rgba(12, 74, 110, 0.88) 30%,
    rgba(3, 105, 161, 0.55) 58%,
    rgba(2, 132, 199, 0.18) 78%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── Dot navigation ──────────────────────────────────────────── */
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
  background: var(--white);
  transform: scale(1.35);
  border-color: var(--white);
}

.hero-content {
  max-width: 560px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--sky-200);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}
.hero-title {
  color: var(--white);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}
.trust-item strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.trust-item span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Hero visual / floating badges */
.hero-visual {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.hero-card-stack {
  position: relative;
  width: 260px;
  height: 260px;
}
.hero-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 3s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 0.7;
  }
}
/* ── Fumigation mist particles ───────────────────────────── */
@keyframes fumiUp {
  0%   { opacity: 0;    transform: translateY(0)    translateX(0)    scale(0.3); }
  18%  { opacity: 0.58; }
  80%  { opacity: 0.18; }
  100% { opacity: 0;    transform: translateY(-145px) translateX(0px)   scale(1.55); }
}
@keyframes fumiUpL {
  0%   { opacity: 0;    transform: translateY(0)    translateX(0)    scale(0.3); }
  18%  { opacity: 0.52; }
  80%  { opacity: 0.15; }
  100% { opacity: 0;    transform: translateY(-135px) translateX(-28px)  scale(1.45); }
}
@keyframes fumiUpR {
  0%   { opacity: 0;    transform: translateY(0)    translateX(0)    scale(0.3); }
  18%  { opacity: 0.52; }
  80%  { opacity: 0.15; }
  100% { opacity: 0;    transform: translateY(-135px) translateX(28px)   scale(1.45); }
}
@keyframes fumiUpLL {
  0%   { opacity: 0;    transform: translateY(0)    translateX(0)    scale(0.3); }
  18%  { opacity: 0.42; }
  80%  { opacity: 0.12; }
  100% { opacity: 0;    transform: translateY(-115px) translateX(-52px)  scale(1.3);  }
}
@keyframes fumiUpRR {
  0%   { opacity: 0;    transform: translateY(0)    translateX(0)    scale(0.3); }
  18%  { opacity: 0.42; }
  80%  { opacity: 0.12; }
  100% { opacity: 0;    transform: translateY(-115px) translateX(52px)   scale(1.3);  }
}

.fumi-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(186,230,253,0.2) 65%, transparent 100%);
  pointer-events: none;
  filter: blur(2.5px);
  will-change: transform, opacity;
}
.fumi-p-1  { width:16px; height:16px; bottom:42%; left:47%; animation: fumiUp   4.0s ease-in 0.0s  infinite; }
.fumi-p-2  { width:11px; height:11px; bottom:40%; left:53%; animation: fumiUpR  3.8s ease-in 0.6s  infinite; }
.fumi-p-3  { width:19px; height:19px; bottom:44%; left:44%; animation: fumiUpL  4.5s ease-in 1.1s  infinite; }
.fumi-p-4  { width: 9px; height: 9px; bottom:39%; left:56%; animation: fumiUpRR 3.6s ease-in 1.7s  infinite; }
.fumi-p-5  { width:13px; height:13px; bottom:41%; left:50%; animation: fumiUpL  4.2s ease-in 2.3s  infinite; }
.fumi-p-6  { width:22px; height:22px; bottom:45%; left:46%; animation: fumiUp   5.0s ease-in 0.4s  infinite; }
.fumi-p-7  { width:10px; height:10px; bottom:38%; left:55%; animation: fumiUpLL 4.8s ease-in 1.9s  infinite; }
.fumi-p-8  { width:15px; height:15px; bottom:42%; left:51%; animation: fumiUpR  4.3s ease-in 2.8s  infinite; }
.fumi-p-9  { width: 8px; height: 8px; bottom:40%; left:45%; animation: fumiUpLL 3.9s ease-in 0.9s  infinite; }
.fumi-p-10 { width:17px; height:17px; bottom:43%; left:54%; animation: fumiUpRR 4.7s ease-in 3.2s  infinite; }
.fumi-p-11 { width:12px; height:12px; bottom:39%; left:49%; animation: fumiUpL  4.1s ease-in 1.5s  infinite; }
.fumi-p-12 { width:20px; height:20px; bottom:46%; left:43%; animation: fumiUpR  5.2s ease-in 2.0s  infinite; }

.hero-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  animation: float-badge 4s ease-in-out infinite;
}
.hero-badge-float svg {
  width: 16px;
  height: 16px;
  color: var(--sky-300);
  flex-shrink: 0;
}
.hero-badge-float--1 {
  top: 10px;
  left: -20px;
  animation-delay: 0s;
}
.hero-badge-float--2 {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  animation-delay: 1.3s;
}
.hero-badge-float--3 {
  bottom: 10px;
  left: 0;
  animation-delay: 0.7s;
}
@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.hero-badge-float--2 {
  animation-name: float-badge-mid;
}
@keyframes float-badge-mid {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(calc(-50% - 6px)) translateX(0);
  }
}

/* ══════════════════════════════════════════════════════════════
   WHO WE SERVE — SECTORS GRID
══════════════════════════════════════════════════════════════ */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.sector-card {
  background: var(--white);
  border: 1.5px solid var(--sky-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.sector-card:hover {
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.12);
  transform: translateY(-3px);
  border-color: var(--sky-300);
}
.sector-card--featured {
  border-color: var(--sky-400);
  background: linear-gradient(135deg, var(--sky-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.sector-card--featured::before {
  content: 'Featured';
  position: absolute;
  top: 14px;
  right: -22px;
  background: var(--sky-500);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 28px;
  transform: rotate(45deg);
}
.sector-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.sector-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--sky-900);
  margin: 0 0 10px;
}
.sector-card p {
  font-size: 13.5px;
  color: var(--slate-500);
  line-height: 1.65;
  margin: 0 0 14px;
}
.sector-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--sky-600);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
.sector-link:hover {
  color: var(--sky-800);
}

/* ══════════════════════════════════════════════════════════════
   AGRICULTURAL FUMIGATION CALLOUT
══════════════════════════════════════════════════════════════ */
.agri-fumi-section {
  background: linear-gradient(135deg, var(--sky-900) 0%, var(--sky-700) 60%, var(--sky-600) 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.agri-fumi-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.agri-fumi-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.agri-fumi-title {
  color: var(--white) !important;
  text-align: left !important;
  margin-bottom: 20px;
}
.agri-fumi-intro {
  color: rgba(255,255,255,0.80);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.agri-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.agri-checklist li {
  color: rgba(255,255,255,0.90);
  font-size: 14px;
  line-height: 1.55;
  padding-left: 26px;
  position: relative;
}
.agri-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sky-300);
  font-weight: 700;
  font-size: 15px;
}
.agri-fumi-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-white {
  background: var(--white);
  color: var(--sky-800);
  border: 2px solid var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}
.btn-white:hover {
  background: var(--sky-50);
  color: var(--sky-900);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Agri visual badges */
.agri-fumi-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.agri-fumi-badge-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.agri-badge {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(6px);
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.agri-badge:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}
.agri-badge-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}
.agri-badge strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}
.agri-badge span {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 11.5px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .agri-fumi-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .agri-fumi-badge-wrap {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .agri-fumi-badge-wrap {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   EMERGENCY BANNER
══════════════════════════════════════════════════════════════ */
.emergency-banner {
  background: linear-gradient(90deg, var(--sky-600), var(--sky-500));
  padding: 12px 5%;
}
.emergency-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}
.emerg-pulse {
  width: 9px;
  height: 9px;
  background: var(--lime-400);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(163, 230, 53, 0);
  }
}
.emerg-link {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  transition: background var(--duration) var(--ease);
}
.emerg-link:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ══════════════════════════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════════════════════════ */
.section {
  padding: var(--section-pad);
}
.section--white {
  background: var(--white);
}
.section--sky-light {
  background: var(--sky-50);
}
.section--blue {
  background: linear-gradient(135deg, var(--sky-900), var(--sky-700));
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-500);
  margin-bottom: 8px;
}
.section-label--light {
  color: var(--sky-300);
}
.section-title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-title--white {
  color: var(--white);
}
.section-sub {
  font-size: 14px;
  color: var(--slate-500);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-sub--light {
  color: rgba(255, 255, 255, 0.65);
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sky-500);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: var(--radius-full);
  transition:
    background var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
  box-shadow: 0 2px 14px rgba(14, 165, 233, 0.35);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--sky-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(14, 165, 233, 0.45);
  color: var(--white);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 26px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition:
    background var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
  cursor: pointer;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--sky-700);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  color: var(--sky-700);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background var(--duration) var(--ease);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition:
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    transform var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-400), var(--sky-600));
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--sky-200);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.12);
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.service-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.65;
  margin-bottom: 16px;
}
.card-link {
  font-size: 13px;
  color: var(--sky-500);
  font-weight: 600;
  transition:
    color var(--duration) var(--ease),
    gap var(--duration) var(--ease);
}
.card-link:hover {
  color: var(--sky-700);
}

/* ══════════════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════════════ */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-img-box {
  background: linear-gradient(135deg, var(--sky-700), var(--sky-500));
  border-radius: var(--radius-xl);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(14, 165, 233, 0.25);
}
.why-img-box--photo {
  background: none;
}
.why-img-content {
  text-align: center;
}
.why-img-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.why-badge-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--slate-100);
}
.why-badge-box strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--sky-600);
  letter-spacing: -0.04em;
  line-height: 1;
}
.why-badge-box span {
  font-size: 11px;
  color: var(--slate-500);
  font-weight: 500;
  margin-top: 3px;
  display: block;
}
.why-text .section-title {
  text-align: left;
}
.why-h2 {
  font-size: clamp(18px, 2vw, 26px);
  margin-bottom: 8px;
}
.why-sub {
  text-align: left;
  margin: 0 0 6px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0 28px;
}
.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.why-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--sky-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.why-check svg {
  width: 12px;
  height: 12px;
  color: var(--sky-600);
}
.why-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 2px;
}
.why-item p {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition:
    background var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}
.process-step:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.step-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--sky-300);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  line-height: 1;
}
.process-step h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--sky-400);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition:
    box-shadow var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}
.testi-card:hover {
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.1);
  transform: translateY(-3px);
}
.testi-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-card p {
  font-size: 13px;
  color: var(--slate-500);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}
.testi-card strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-900);
}
.testi-card span {
  font-size: 12px;
  color: var(--slate-500);
}

/* ══════════════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--sky-800), var(--sky-600));
  padding: 72px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--slate-900);
  color: var(--white);
  padding: 56px 5% 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  margin-bottom: 14px;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity var(--duration) var(--ease);
}
.footer-logo:hover .footer-logo-img {
  opacity: 0.85;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.social-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}
.social-icon svg {
  width: 15px;
  height: 15px;
  fill: rgba(255, 255, 255, 0.7);
}
.social-icon:hover {
  background: var(--sky-500);
  transform: translateY(-2px);
}
.social-icon:hover svg {
  fill: var(--white);
}

.footer-heading {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--duration) var(--ease);
}
.footer-links li a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--duration) var(--ease);
}
.footer-links li a:hover,
.footer-links li:hover {
  color: var(--sky-300);
}
.footer-links li a:hover {
  color: var(--sky-300);
}

/* Contact column with icons */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact li svg {
  width: 14px;
  height: 14px;
  fill: var(--sky-400);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Footer bottom bar */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
}
.footer-bottom-right {
  color: rgba(255, 255, 255, 0.22) !important;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-img-box {
    height: 220px;
    max-width: 400px;
    margin: 0 auto;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 52px 5%;
  }

  /* Quick links — hide middle items on mobile */
  .ql-left .ql-item:not(:first-child) {
    display: none;
  }

  /* Desktop nav hidden on mobile */
  .desktop-nav {
    display: none;
  }
  .header-search {
    display: none;
  }
  .header-brand {
    width: 100%;
    justify-content: space-between;
  }
  .header-brand .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }

  .hero {
    flex-direction: column;
    padding: 60px 5% 52px;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .hero-sub {
    margin: 0 auto 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .ql-right .ql-social {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   HOMEPAGE FEATURED PRODUCTS GRID  (4 col × 2 row desktop)
══════════════════════════════════════════════════════════════ */
.hp-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.hp-product-card .product-img-wrap {
  aspect-ratio: 1 / 1;
}
.hp-product-card .product-body {
  padding: 14px 14px 8px;
}
.hp-product-card .product-footer {
  padding: 8px 14px 14px;
}
.hp-product-card .product-title {
  font-size: 14px;
}
.hp-product-card .product-price {
  font-size: 15px;
}
.hp-product-card .product-wa-btn {
  font-size: 12px;
  padding: 8px 10px;
  gap: 5px;
}
.hp-product-card .product-wa-btn svg {
  width: 14px;
  height: 14px;
}
.hp-product-card .product-details-btn {
  font-size: 12px;
  padding: 8px 10px;
}

@media (max-width: 900px) {
  .hp-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .hp-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hp-product-card .product-title {
    font-size: 13px;
  }
}

/* ══════════════════════════════════════════════════════════════
   ARCHIVE HERO
══════════════════════════════════════════════════════════════ */
.archive-hero {
  background: linear-gradient(135deg, var(--sky-700) 0%, var(--sky-500) 100%);
  padding: 72px 24px 64px;
  text-align: center;
  color: var(--white);
}
.archive-hero--green {
  background: linear-gradient(135deg, #166534 0%, #16a34a 100%);
}
.archive-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}
.archive-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 10px 0 14px;
  letter-spacing: -0.03em;
}
.archive-hero p {
  font-size: 1.05rem;
  opacity: 0.88;
  line-height: 1.65;
}

.archive-pagination {
  margin-top: 48px;
  text-align: center;
}
.archive-pagination .nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1.5px solid var(--slate-200);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-700);
  text-decoration: none;
  transition: all 0.18s ease;
}
.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  background: var(--sky-500);
  border-color: var(--sky-500);
  color: var(--white);
}

.archive-empty {
  text-align: center;
  padding: 64px 24px;
}
.archive-empty-icon {
  font-size: 56px;
  margin-bottom: 16px;
}
.archive-empty h2 {
  font-size: 1.5rem;
  color: var(--slate-800);
  margin-bottom: 8px;
}
.archive-empty p {
  color: var(--slate-500);
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.product-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--slate-200);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}
.product-badge--inline {
  position: static;
  display: inline-block;
  margin-bottom: 10px;
}

.product-img-wrap {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sky-50);
  text-decoration: none;
}
.product-img-wrap .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-50);
}
.product-img-placeholder svg {
  width: 80px;
  height: 80px;
}

.product-body {
  padding: 18px 18px 10px;
  flex: 1;
}

.product-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--sky-600);
  margin-bottom: 6px;
  text-decoration: none;
}
.product-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0 0 8px;
  line-height: 1.35;
}
.product-title a {
  color: inherit;
  text-decoration: none;
}
.product-title a:hover {
  color: var(--sky-600);
}

.product-desc {
  font-size: 13.5px;
  color: var(--slate-500);
  line-height: 1.55;
  margin: 0 0 12px;
}
.product-price {
  font-size: 18px;
  color: var(--sky-700);
  letter-spacing: -0.02em;
}
.product-price strong {
  font-weight: 800;
}

.product-footer {
  padding: 12px 18px 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--slate-100);
  margin-top: 10px;
}
.product-details-btn {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border: 1.5px solid var(--slate-300);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}
.product-details-btn:hover {
  background: var(--slate-50);
  border-color: var(--sky-400);
  color: var(--sky-600);
}
.product-wa-btn {
  flex: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 14px;
  background: #25d366;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}
.product-wa-btn:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.product-wa-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.product-wa-btn--large {
  flex: none;
  width: 100%;
  padding: 15px 24px;
  font-size: 16px;
  border-radius: 12px;
  gap: 10px;
}
.product-wa-btn--large svg {
  width: 22px;
  height: 22px;
}

/* ── Single product page ─────────────────────────────────── */
.single-product-page {
  padding: 48px 0 64px;
}
.single-product-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.single-product-gallery {
  position: sticky;
  top: 100px;
}
.single-product-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}
.single-product-img-placeholder {
  aspect-ratio: 1;
  background: var(--sky-50);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-product-img-placeholder svg {
  width: 120px;
  height: 120px;
}

.single-product-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky-600);
  margin-bottom: 10px;
  text-decoration: none;
}
.single-product-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.03em;
  margin: 8px 0 16px;
  line-height: 1.25;
}
.single-product-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sky-600);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.single-product-price strong {
  font-weight: 900;
}
.single-product-desc {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 28px;
}
.single-product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.product-back-btn {
  display: inline-block;
  text-align: center;
  padding: 12px;
  border: 1.5px solid var(--slate-300);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-600);
  text-decoration: none;
  transition: all 0.18s ease;
}
.product-back-btn:hover {
  background: var(--slate-50);
  color: var(--slate-900);
}

.single-product-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: var(--sky-50);
  border-radius: 12px;
  border: 1px solid var(--sky-100);
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--slate-700);
}
.meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--sky-600);
  flex-shrink: 0;
}

.related-products {
  padding-top: 48px;
}
.related-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════════════════════════
   SERVICE CPT CARDS
══════════════════════════════════════════════════════════════ */

/* ── Anchor offset for sticky header ────────────────────────── */
.service-cpt-card,
.svc-cat-section,
.service-card {
  scroll-margin-top: calc(var(--header-total) + 24px);
}

/* ── Service category section grouping ──────────────────────── */
.svc-cat-section {
  margin-bottom: 56px;
}
.svc-cat-section:last-child {
  margin-bottom: 0;
}
.svc-cat-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--sky-100);
}
.svc-cat-title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--sky-800);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-cat-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: var(--sky-500);
  border-radius: 2px;
}
.svc-cat-desc {
  color: var(--slate-500);
  font-size: 14px;
  margin: 0;
}

/* ── Sub-services bullet list inside a card ─────────────────── */
.service-sub-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-sub-list li {
  font-size: 13px;
  color: var(--slate-600);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.service-sub-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky-400);
}

.service-cpt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.service-cpt-card {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--slate-200);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 28px 26px 22px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.service-cpt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.11);
}
.service-cpt-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.service-cpt-icon {
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
}
.service-cpt-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}
.service-cpt-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.service-meta-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--sky-50);
  color: var(--sky-700);
  border: 1px solid var(--sky-100);
  white-space: nowrap;
}
.service-meta-tag--price {
  background: #f0fdf4;
  color: #166534;
  border-color: #bbf7d0;
}
.service-cpt-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0 0 10px;
  line-height: 1.3;
}
.service-cpt-title a {
  color: inherit;
  text-decoration: none;
}
.service-cpt-title a:hover {
  color: var(--sky-600);
}
.service-cpt-desc {
  font-size: 13.5px;
  color: var(--slate-500);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.service-cpt-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}
.service-learn-btn {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border: 1.5px solid var(--slate-300);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  transition: all 0.18s ease;
}
.service-learn-btn:hover {
  background: var(--sky-50);
  border-color: var(--sky-400);
  color: var(--sky-600);
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }
  .service-cpt-grid {
    grid-template-columns: 1fr;
  }
  .single-product-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .single-product-gallery {
    position: static;
  }
}

/* ══════════════════════════════════════════════════════════════
   BOOK NOW MODAL
══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modal-fade-in 0.22s var(--ease);
}
.modal-overlay[hidden] {
  display: none;
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.modal-dialog {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px 32px;
  position: relative;
  animation: modal-slide-in 0.24s var(--ease);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}
@keyframes modal-slide-in {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease);
}
.modal-close:hover {
  background: var(--sky-100);
  color: var(--sky-700);
}
.modal-header {
  margin-bottom: 24px;
}
.modal-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}
.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}
.modal-subtitle {
  font-size: 13px;
  color: var(--slate-500);
}

/* Booking form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
}
.form-group .req {
  color: var(--sky-500);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--slate-900);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  outline: none;
  transition: border-color var(--duration) var(--ease);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky-400);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 72px;
}
.booking-submit {
  width: 100%;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 15px;
  margin-top: 4px;
}

/* Product archive category filter */
.prod-cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.prod-cat-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--slate-200);
  color: var(--slate-700);
  background: var(--white);
  text-decoration: none;
  transition:
    background var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    color var(--duration) var(--ease);
}
.prod-cat-btn:hover,
.prod-cat-btn.active {
  background: var(--sky-500);
  border-color: var(--sky-500);
  color: var(--white);
}
.prod-cat-children {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  padding-left: 12px;
  margin-top: -4px;
}
.prod-cat-btn--sub {
  font-size: 12px;
  padding: 5px 13px;
  background: var(--sky-50);
  border-color: var(--sky-100);
  color: var(--sky-700);
}
.prod-cat-btn--sub:hover,
.prod-cat-btn--sub.active {
  background: var(--sky-600);
  border-color: var(--sky-600);
  color: var(--white);
}

@media (max-width: 600px) {
  .modal-dialog {
    padding: 28px 20px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT US TEASER
══════════════════════════════════════════════════════════════ */
.about-teaser-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
.about-teaser-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-teaser-img-box {
  background: linear-gradient(135deg, var(--sky-700), var(--sky-500));
  border-radius: var(--radius-xl);
  height: 240px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(14, 165, 233, 0.25);
}
.about-teaser-img-box--photo {
  background: none;
}
.card-img-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.about-teaser-img-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-teaser-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.about-stat {
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
}
.about-stat strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--sky-700);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 3px;
}
.about-stat span {
  font-size: 11px;
  color: var(--slate-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.about-teaser-body {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.75;
  margin-bottom: 12px;
}
.about-teaser-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  color: var(--sky-700);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

/* ══════════════════════════════════════════════════════════════
   CONTACT / ENQUIRY SECTION
══════════════════════════════════════════════════════════════ */
.contact-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--sky-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--sky-600);
}
.contact-detail-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 2px;
}
.contact-detail-item a,
.contact-detail-item span {
  font-size: 13.5px;
  color: var(--slate-600);
  line-height: 1.5;
}
.contact-detail-item a:hover {
  color: var(--sky-600);
}
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: 0 4px 32px rgba(14, 165, 233, 0.08);
  border: 1px solid var(--sky-100);
}
.enquiry-submit {
  width: 100%;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 15px;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .about-teaser-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-teaser-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-section-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .about-teaser-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .contact-form-box {
    padding: 22px 16px;
  }
}
