/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0f1f3d;
  --navy-mid:   #1a3260;
  --navy-light: #243c72;
  --steel:      #4a5e7a;
  --steel-light:#8898aa;
  --silver:     #e8ecf0;
  --white:      #ffffff;
  --accent:     #2e7dce;
  --accent-hov: #1d64ab;
  --gold:       #c8922a;
  --text:       #1a2433;
  --text-mid:   #3d4f63;
  --text-light: #6b7a8d;

  --radius:     8px;
  --radius-lg:  14px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.16);

  --transition: 0.2s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  /* Hard guarantee: no horizontal overflow anywhere on the page. */
  overflow-x: clip;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Fallback for browsers that don't support overflow-x: clip on html. */
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  letter-spacing: -.025em;
}
strong, b { font-weight: 500; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .03em;
  border-radius: var(--radius);
  padding: 14px 30px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hov);
  border-color: var(--accent-hov);
  box-shadow: 0 4px 16px rgba(46,125,206,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-full { width: 100%; }

/* ── Section base ── */
.section { padding: 88px 0; }
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-contact {
  background: var(--silver);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header.light h2,
.section-header.light p { color: var(--white); }
.section-header.light .section-tag { color: var(--accent); opacity: 1; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 200;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -.03em;
}
.section-header p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
  letter-spacing: -.005em;
}

/* ── Nav ── */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 31, 61, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow var(--transition);
}
.nav-wrapper.scrolled { box-shadow: var(--shadow-lg); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--white);
  line-height: 0;
  /* Pull the logo a touch to the left so it visually anchors flush
     with the page edge rather than feeling crammed. */
  margin-left: -4px;
}
.logo-img {
  height: 80px;
  width: auto;
  display: block;
  /* New logo (logo-v2.png) is already designed white-on-navy — no
     CSS inversion needed. */
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(.2,.7,.2,1), filter 0.25s ease;
  /* mix-blend-mode: screen erases the logo's navy canvas against the
     navbar's navy backdrop — pure navy becomes transparent, the white
     mark and wordmark stay crisp. */
  mix-blend-mode: screen;
  /* Subtle glow gives the white mark depth on the navy navbar — modern
     premium-brand treatment without being heavy-handed. */
  filter: drop-shadow(0 2px 12px rgba(46, 125, 206, 0.15));
}
.logo:hover .logo-img {
  opacity: 1;
  transform: scale(1.04);
  filter: drop-shadow(0 4px 18px rgba(46, 125, 206, 0.35));
}
.logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
  border-radius: 4px;
}

/* Navbar logo (logo-new.png) has its background already pre-baked as
   transparent at the PNG level, so the screen blend isn't needed and
   would actually push the light-blue elements toward white. Switch
   the navbar logo back to normal compositing — the footer logo
   (logo-v2.png) keeps the screen blend it was authored for. */
.nav-wrapper .logo-img {
  mix-blend-mode: normal;
}

/* Footer logo: same treatment + larger so it commands the brand column
   and centers the footer composition. */
.footer-brand .logo-img {
  height: 132px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 3px 16px rgba(46, 125, 206, 0.12));
  margin-left: -8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .01em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--accent-hov); color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Language Toggle ── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 16px;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.lang-toggle:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.4);
}
.lang-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.lang-flag { font-size: 15px; line-height: 1; }
.lang-code { font-size: 12px; letter-spacing: .04em; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  /* Quadruple-belt: overflow:hidden + overflow:clip + contain:paint +
     clip-path. Some browsers/zoom combinations leak transformed
     descendants past overflow:clip — clip-path is the hardest guarantee
     that nothing painted by .hero can ever exit its rectangle. */
  overflow: hidden;
  overflow: clip;
  contain: paint;
  clip-path: inset(0);
  isolation: isolate;
  width: 100%;
  max-width: 100vw;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Solid dark navy under the slides. Two of the slides (hero2 + hero3)
     render at scale < 1 to give a wide-cinematic letterbox feel, so
     the area around those scaled-down slides falls back to this color
     (darkened further by .hero-overlay). Plain navy is intentional —
     a fallback photo here would compete with the slideshow during the
     letterbox windows. */
  background-color: var(--navy);
  overflow: hidden;
}

/* ── Hero slideshow ──
   Four full-bleed slides crossfading every 7 seconds with a 2-second
   fade and a subtle Ken Burns zoom. Pure CSS — each slide runs the
   same 28s animation cycle, staggered by 7s via animation-delay so
   that exactly one slide is at full opacity at any given moment and
   transitions overlap by the 2s fade window. */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  will-change: opacity, transform;
  transform: scale(1);
  /* Slides alternate Ken Burns direction (in/out) for visual variety. */
  animation: heroSlideIn 28s linear infinite;
}

/* Per-slide framing — each background-position anchors the crop so the
   water (ocean or pool) dominates the composition rather than the
   buildings. transform-origin directs the Ken Burns zoom toward that
   same water area, so the motion leans into the water instead of
   pivoting around a neutral center. */
/* All four source images are now cropped to 2:1 (1536x768) with the
   water-rich composition centered — so `background-position: center`
   shows the intended view at any typical hero viewport, with minimal
   `cover` cropping. No letterbox, no extreme positioning hacks. */
.hero-slide-1 {
  background-image: url('images/hero1.jpg');
  background-position: center center;
  transform-origin: center center;
  animation-delay:  0s;
  animation-name: heroSlideIn;
}
.hero-slide-2 {
  background-image: url('images/hero2.jpg');
  background-position: center center;
  transform-origin: center center;
  animation-delay:  7s;
  animation-name: heroSlideOut;
}
.hero-slide-3 {
  background-image: url('images/hero3.jpg');
  background-position: center center;
  transform-origin: center center;
  animation-delay: 14s;
  animation-name: heroSlideOut;
}
.hero-slide-4 {
  background-image: url('images/hero4.jpg');
  background-position: center center;
  transform-origin: center center;
  animation-delay: 21s;
  animation-name: heroSlideIn;
}

/* Ken Burns slow zoom-in: scale 1.00 → 1.08 across the slide's active window.
   Timeline (0–28s cycle, 0% = animation-delay anchor):
     0s   (0%)     opacity 0, scale 1.00   — start of fade-in
     2s   (7.14%)  opacity 1, scale 1.012  — fully visible
     7s   (25%)    opacity 1, scale 1.06   — still visible, start fade-out
     9s   (32.14%) opacity 0, scale 1.08   — fully faded
     28s  (100%)   opacity 0, scale 1.08   — hidden until next iteration */
@keyframes heroSlideIn {
  0%      { opacity: 0; transform: scale(1.00); }
  7.14%   { opacity: 1; transform: scale(1.012); }
  25%     { opacity: 1; transform: scale(1.06); }
  32.14%  { opacity: 0; transform: scale(1.08); }
  100%    { opacity: 0; transform: scale(1.08); }
}

/* Ken Burns slow zoom-out: scale 1.08 → 1.00 across the slide's active window. */
@keyframes heroSlideOut {
  0%      { opacity: 0; transform: scale(1.08); }
  7.14%   { opacity: 1; transform: scale(1.068); }
  25%     { opacity: 1; transform: scale(1.02); }
  32.14%  { opacity: 0; transform: scale(1.00); }
  100%    { opacity: 0; transform: scale(1.00); }
}

/* Deeper Ken Burns zoom-in: scale 1.00 → 1.12. Used on slides where
   we want a stronger push toward the water than the standard 1.08. */
@keyframes heroSlideInDeep {
  0%      { opacity: 0; transform: scale(1.00); }
  7.14%   { opacity: 1; transform: scale(1.027); }
  25%     { opacity: 1; transform: scale(1.093); }
  32.14%  { opacity: 0; transform: scale(1.12); }
  100%    { opacity: 0; transform: scale(1.12); }
}

/* Wide-cinematic Ken Burns: slide stays at scale < 1 throughout so the
   image always sits inside a letterboxed frame, with a subtle 0.85 →
   0.92 growth across the visible window. The surrounding dark border
   (from .hero-bg + .hero-overlay) gives the shot a widescreen feel
   and lets buildings + water + sky breathe inside one frame. */
@keyframes heroSlideZoomOut {
  0%      { opacity: 0; transform: scale(0.85); }
  7.14%   { opacity: 1; transform: scale(0.86); }
  25%     { opacity: 1; transform: scale(0.91); }
  32.14%  { opacity: 0; transform: scale(0.92); }
  100%    { opacity: 0; transform: scale(0.92); }
}

/* Dark overlay sits above all slides to keep hero text legible. */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: min(920px, 100%);
  width: 100%;
  /* Never let any descendant push the column wider than the viewport. */
  min-width: 0;
}

/* ── Hero entrance animations (staggered, subtle) ── */
@keyframes heroEnter {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to   { opacity: 1; transform: none; }
}

.hero-badge    { animation: heroEnter 0.7s cubic-bezier(.2,.7,.2,1) 0.05s both; }
.hero h1       { animation: heroEnter 0.8s cubic-bezier(.2,.7,.2,1) 0.20s both; }
.hero-sub      { animation: heroEnter 0.7s cubic-bezier(.2,.7,.2,1) 0.45s both; }
.hero-products { animation: heroEnter 0.7s cubic-bezier(.2,.7,.2,1) 0.60s both; }
.hero-actions  { animation: heroEnter 0.7s cubic-bezier(.2,.7,.2,1) 0.78s both; }
.hero-stats    { animation: heroEnter 0.8s cubic-bezier(.2,.7,.2,1) 0.96s both; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  /* Halt slideshow motion; show the first slide statically. */
  .hero-slide { animation: none; opacity: 0; transform: none; }
  .hero-slide-1 { opacity: 1; }
  .hero-badge, .hero h1, .hero-sub, .hero-products, .hero-actions, .hero-stats { animation: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 200;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -.015em;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
  /* Wrap aggressively so long words can never push past the column. */
  overflow-wrap: anywhere;
  word-wrap: break-word;
  text-wrap: balance;
  max-width: 100%;
  /* Visual breathing room — italic glyphs can lean past their box edge. */
  padding-right: 0.25em;
}
.hero h1 .accent {
  /* Solid light-blue accent — no gradient text-fill. Guarantees every
     glyph (including the tiny dot of an italic "i" in "Miami") renders
     at full opacity instead of fading to near-invisible at the gradient
     end. */
  color: #b9d8f5;
  font-weight: 400;
  font-style: italic;
  /* Inline-block so the italic line can't visually push past the column. */
  display: inline-block;
  max-width: 100%;
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 300;
  color: rgba(255,255,255,.86);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 44px;
  letter-spacing: -.005em;
}

/* Product chips — all materials we supply, visible at a glance */
.hero-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -16px 0 36px;
  padding: 0;
  list-style: none;
}
.hero-products li {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .01em;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 7px 14px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}
.hero-products li.hero-products-more {
  background: rgba(46,125,206,.18);
  border-color: rgba(46,125,206,.45);
  color: #cfe4f8;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 26px 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
  flex: 1;
  min-width: 110px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }

.stat-num {
  font-size: 38px;
  font-weight: 200;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.03em;
}
.plus { color: var(--accent); font-weight: 300; }
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .01em;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Products ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.product-card.featured {
  border-top: 3px solid var(--accent);
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}
.product-icon {
  width: 52px;
  height: 52px;
  background: rgba(46,125,206,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.product-icon svg { width: 28px; height: 28px; }

.product-card h3 {
  font-size: 26px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.product-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--steel-light);
  text-transform: uppercase;
  letter-spacing: .16em;
}

.product-card > p {
  color: var(--text-mid);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.spec-list {
  margin-bottom: 28px;
}
.spec-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--silver);
  position: relative;
}
.spec-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}
.spec-list li:last-child { border-bottom: none; }

/* ── Certifications ── */
.cert-row {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  color: var(--white);
}
.cert-row .cert-heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cert-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cert-item strong {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -.01em;
}
.cert-item span {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
}

/* ── Why Grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.08); }

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(46,125,206,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.why-icon svg { width: 26px; height: 26px; }

.why-card h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.015em;
}
.why-card p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* ── Who We Serve ── */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.serve-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.serve-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.serve-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}

.serve-number {
  font-size: 56px;
  font-weight: 200;
  color: var(--silver);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.05em;
}
.serve-card h3 {
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.serve-card > p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
}
.serve-card ul { display: flex; flex-direction: column; gap: 8px; }
.serve-card li {
  font-size: 13px;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
}
.serve-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 12px; }
.contact-info h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 200;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.contact-info > p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail strong {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--steel);
  margin-bottom: 6px;
}
.contact-detail a,
.contact-detail span {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.contact-detail a:hover { color: var(--accent); }

/* ── Form ── */
.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid #d0d8e4;
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a8d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46,125,206,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0bccc; }
.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 15px;
  color: #2e7d32;
}
.form-success.visible { display: flex; }

/* Form validation error states */
.quote-form input.error,
.quote-form select.error {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229,57,53,.1);
}

/* Scroll-in animation (applied via JS IntersectionObserver) */
.js-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-animate.in-view {
  opacity: 1;
  transform: none;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  max-width: 260px;
}
.footer-brand .footer-phone {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -.01em;
}
.footer-brand .footer-phone a { color: var(--white); transition: color var(--transition); }
.footer-brand .footer-phone a:hover { color: var(--accent); }

.footer-links .footer-heading {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(255,255,255,.5);
  margin-bottom: 22px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links li {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a { color: inherit; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ── Full Product Line ── */
.section-alt { background: #f4f7fb; }

.full-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.full-products-text .section-tag { margin-bottom: 12px; }
.full-products-text h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 200;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.03em;
}
.full-products-text p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 32px;
}
.full-products-list {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}
.full-products-list .products-list-heading {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--steel-light);
  margin-bottom: 22px;
}
.other-products-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 20px;
}
.other-products-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid var(--silver);
  position: relative;
}
.other-products-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
}
.other-products-list li:nth-last-child(-n+2) { border-bottom: none; }
.other-products-note {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  border-top: 1px solid var(--silver);
  padding-top: 16px;
}

/* ── Caribbean Gallery ── */
.section-gallery {
  background: var(--navy);
  padding: 88px 0;
}
.section-gallery .section-header { margin-bottom: 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 14px;
  margin-bottom: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-mid);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--large {
  grid-column: span 2;
}
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-note {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-align: center;
  font-style: italic;
}

/* ── Projects ── */
.section-projects-bg { background: #f4f7fb; }

.proj-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}
.proj-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid #d0d8e4;
  border-radius: 100px;
  padding: 9px 20px;
  cursor: pointer;
  transition: all var(--transition);
}
.proj-filter:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.proj-filter.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.proj-filter-count {
  background: rgba(255,255,255,.2);
  font-size: 11px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 100px;
  min-width: 22px;
  text-align: center;
}
.proj-filter:not(.active) .proj-filter-count {
  background: var(--silver);
  color: var(--steel);
}
.proj-filter:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.proj-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e0e8f0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
  cursor: default;
}
.proj-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.proj-card.hidden {
  display: none;
}
.proj-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-mid);
}
.proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transition: transform 0.5s ease;
  display: block;
}
.proj-card:hover .proj-img img { transform: scale(1.07); }
.proj-meta {
  padding: 14px 16px 16px;
}
.proj-location {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.proj-meta h3 {
  font-size: 15px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -.01em;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,.09); }
.testimonial-stars {
  color: #f5c842;
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  font-style: italic;
  letter-spacing: -.005em;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.testimonial-author span {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
}

/* ── Hero responsive tuning ── */
@media (max-width: 1200px) {
  .hero h1 { font-size: clamp(26px, 3.4vw, 40px); }
  .hero-content { max-width: 100%; }
}
@media (max-width: 900px) {
  .hero h1 { font-size: clamp(24px, 4.4vw, 34px); line-height: 1.18; }
  .hero-sub { font-size: 16px; }
}
@media (max-width: 600px) {
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero h1 { font-size: clamp(22px, 6.4vw, 28px); line-height: 1.2; letter-spacing: -.01em; }
  .hero-badge { font-size: 11px; padding: 7px 14px; letter-spacing: .14em; }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .full-products-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item--large, .gallery-item--wide { grid-column: span 2; }
  .proj-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .section { padding: 64px 0; }
  /* Tighter navbar on mobile so the squarer logo doesn't dominate. */
  .nav { height: 76px; }
  .logo-img { height: 60px; }
  .footer-brand .logo-img { height: 104px; }
  .nav-toggle { display: flex; order: 3; }
  .lang-toggle { order: 2; margin-left: auto; margin-right: 8px; padding: 6px 10px; font-size: 12px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.08);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 16px;
  }
  .nav-links li:last-child a {
    border-bottom: none;
    margin-top: 8px;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius);
  }

  .hero h1 { font-size: 32px; }
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 14px; }

  .form-row { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .cert-row { padding: 28px 24px; }
  .quote-form { padding: 28px 20px; }
  .full-products-grid { grid-template-columns: 1fr; }
  .other-products-list { grid-template-columns: 1fr; }
  .other-products-list li:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 220px; }
  .gallery-item--large, .gallery-item--wide { grid-column: span 1; height: 220px; }
  .proj-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .proj-filters { gap: 6px; }
  .proj-filter { font-size: 12px; padding: 7px 14px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-bottom .container { flex-direction: column; text-align: center; }
}
