:root {
  --bg: #f4fbff;
  --bg-soft: #dff2ff;
  --surface: rgba(255, 255, 255, 0.92);
  --text: #083b63;
  --muted: #4c7aa0;
  --accent: #38bdf8;
  --accent-2: #0ea5e9;
  --line: rgba(56, 189, 248, 0.3);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% -10%, #c9eeff, transparent 35%),
              radial-gradient(circle at 90% 15%, #b9e6ff, transparent 30%),
              linear-gradient(140deg, #ffffff 0%, #edf8ff 55%, #ffffff 100%);
  min-height: 100vh;
}

a { color: inherit; }

#particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.container { width: min(1100px, 92%); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}
.glass {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.78);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  text-decoration: none;
  color: var(--text);
  font-family: 'Quicksand', sans-serif;
  font-size: .98rem;
  font-weight: 700;
}
.brand img {
  width: auto;
  height: auto;
  max-width: min(320px, 42vw);
  max-height: 96px;
  object-fit: contain;
  display: block;
}
.brand-tagline {
  font-size: .72rem;
  letter-spacing: .02em;
  color: #0e4f79;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
nav { display: flex; gap: .2rem; flex-wrap: wrap; }
nav a {
  color: var(--text);
  text-decoration: none;
  padding: .55rem .8rem;
  border-radius: 999px;
  transition: .25s ease;
}
nav a:hover, nav a.active { background: linear-gradient(90deg, rgba(56,189,248,.18), rgba(14,165,233,.2)); }
.menu-toggle { display: none; background: transparent; color: var(--text); border: 1px solid var(--line); border-radius: 8px; padding: .35rem .6rem; }

.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 2rem;
  padding: 5rem 0 3rem;
  transform: translate3d(0, var(--parallax-shift, 0), 0);
  transition: transform 240ms linear;
}
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; }
h1, h2, h3 { font-family: 'Quicksand', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); margin: .2rem 0 1rem; }
.subheading { color: var(--muted); max-width: 58ch; }
.cta-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.btn {
  display: inline-block;
  padding: .78rem 1.05rem;
  border-radius: .8rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
}
.btn-primary { background: linear-gradient(90deg, var(--accent), var(--accent-2)); color: #031025; }
.btn-outline { border-color: var(--line); color: var(--text); }

.hero-tiles, .grid {
  display: grid;
  gap: .9rem;
}
.hero-tiles { grid-template-columns: 1fr 1fr; }
.tile, .card, .section {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.3rem;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.tile::after, .card::after, .section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%), rgba(56, 189, 248, 0.2), transparent 55%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.tile:hover::after, .card:hover::after, .section:hover::after { opacity: 1; }
.tile:hover, .card:hover, .section:hover { border-color: rgba(56, 189, 248, 0.6); }
.glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 190deg, transparent, rgba(79,212,255,.4), transparent 35%);
  opacity: 0;
  transition: .4s ease;
}
.glow:hover::before { opacity: 1; }
.glow > * { position: relative; z-index: 1; }

.section {
  padding: 1.5rem;
  margin-bottom: 1rem;
  transform: translate3d(0, var(--parallax-shift, 0), 0);
  transition: transform 280ms linear, box-shadow .3s ease, border-color .3s ease;
}
.section h2 { margin-bottom: .8rem; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.offering-section {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(227, 244, 255, 0.92));
}
.offering-headline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(14, 79, 121, 0.14);
  padding-bottom: .8rem;
}
.offering-headline h2 {
  margin: 0;
}
.offering-headline p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
}
.offering-card {
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.97), rgba(236, 248, 255, 0.92));
  min-height: 160px;
}
.offering-card h3 {
  margin: 0 0 .55rem;
  font-size: 1.02rem;
}
.offering-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.domain-grid .offering-card:last-child {
  grid-column: span 2;
}

.why-choose {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(226, 244, 255, 0.92));
}
.why-choose-header {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 1.1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(14, 79, 121, 0.15);
}
.why-choose-header h2 {
  margin: 0;
}
.why-choose-header h3 {
  margin: .45rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  max-width: 18ch;
}
.why-choose-header p {
  margin-top: 0;
  color: var(--muted);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.why-card {
  padding: .35rem .3rem;
}
.why-icon {
  width: 34px;
  height: 34px;
  color: #0e4f79;
  margin-bottom: .7rem;
}
.why-icon svg {
  width: 100%;
  height: 100%;
}
.why-card h4 {
  margin: 0 0 .4rem;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
  max-width: 30ch;
}

.list { padding-left: 1rem; color: var(--text); }
.neon-list li { margin: .55rem 0; }
.neon-list li::marker { color: var(--accent); }
.simple-domain-list {
  columns: 2;
  column-gap: 1.5rem;
}

.page-content { padding: 3.7rem 0 2rem; }
.page-banner {
  margin-bottom: 1.2rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.page-banner img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block;
}
.page-banner .banner-copy {
  padding: 1rem 1.2rem;
}
.vision-grid, .contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.contact-form label { display: grid; gap: .35rem; margin-bottom: .8rem; font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .95);
  color: var(--text);
  border-radius: .6rem;
  padding: .7rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(79,212,255,.35); }
.closing { color: var(--muted); margin-top: 1rem; }

.slider {
  position: relative;
  overflow: hidden;
}
.slide-track {
  display: flex;
  transition: transform .55s ease;
}
.slide {
  min-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.slide img {
  width: 100%;
  height: clamp(240px, 44vw, 420px);
  object-fit: contain;
  background: #fff;
  border-radius: .8rem;
  display: block;
  border: 1px solid var(--line);
}

.equipment-slider .slide {
  min-height: 360px;
  display: grid;
  align-items: center;
}
.equipment-slider .slide img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: #ffffff;
  border-radius: .8rem;
  padding: .35rem;
}

.slide-caption {
  background: rgba(14, 79, 121, 0.09);
  color: var(--text);
  padding: .55rem .75rem;
  border-radius: .55rem;
  font-size: .92rem;
}
.slider-dots {
  margin-top: .8rem;
  display: flex;
  justify-content: center;
  gap: .45rem;
}
.slider-dots button {
  border: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(11, 78, 119, 0.3);
  cursor: pointer;
}
.slider-dots button.active { background: var(--accent-2); }

.logo-slide {
  min-width: 180px;
  height: 90px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: .8rem;
  display: grid;
  place-items: center;
  padding: .5rem;
}
.logo-slide img {
  max-width: 130px;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(.2);
}

.social-sticky {
  position: fixed;
  right: 12px;
  top: 52%;
  transform: translateY(-50%);
  z-index: 90;
  display: grid;
  gap: .5rem;
}
.social-sticky a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 18px rgba(6, 68, 110, 0.2), 0 2px 0 rgba(2, 29, 50, 0.3);
  transform: perspective(450px) rotateX(14deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.social-sticky a:hover {
  transform: perspective(450px) rotateX(0deg) translateY(-3px) scale(1.05);
  box-shadow: 0 14px 24px rgba(6, 68, 110, 0.3), 0 3px 0 rgba(2, 29, 50, 0.26);
  filter: saturate(1.12);
}
.social-sticky .fb { background: #1877f2; }
.social-sticky .li { background: #0a66c2; }
.social-sticky .ig { background: linear-gradient(45deg, #fd1d1d, #fcb045, #833ab4); }
.social-sticky .tw { background: #1d9bf0; }
.social-sticky .call { background: #16a34a; font-size: 1rem; }

.contact-form.no-animate,
.contact-form.no-animate:hover {
  transform: none !important;
  box-shadow: none !important;
}

.contact-form.no-animate::after {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 1.2rem;
  color: var(--muted);
  background: rgba(255,255,255,.72);
  margin-top: 1.5rem;
  perspective: 900px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 1rem;
}
.footer-logo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 95px;
  object-fit: contain;
}

.footer-grid > section {
  border: 1px solid rgba(56, 189, 248, 0.25);
  background: rgba(255, 255, 255, 0.82);
  border-radius: .9rem;
  padding: .95rem;
  box-shadow: 0 10px 22px rgba(7, 79, 123, 0.1), 0 3px 0 rgba(11, 78, 119, 0.2);
  transform: rotateX(5deg) translateZ(0);
  transform-origin: center top;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.footer-grid > section:hover {
  transform: rotateX(0deg) translateY(-4px);
  box-shadow: 0 16px 30px rgba(7, 79, 123, 0.16), 0 4px 0 rgba(11, 78, 119, 0.18);
  border-color: rgba(56, 189, 248, 0.5);
}
.footer-links a {
  display: block;
  text-decoration: none;
  margin: .35rem 0;
  transition: transform .2s ease, color .2s ease;
  transform: translateZ(8px);
}
.footer-links a:hover {
  color: var(--accent-2);
  transform: translateX(4px) translateZ(14px);
}
.footer-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .4rem;
}
.footer-photos img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  border-radius: .45rem;
}
.footer-note {
  margin-top: 1rem;
  text-align: center;
  font-size: .92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 700ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 4.4rem; }
  .why-choose-header { grid-template-columns: 1fr; gap: 1rem; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offering-headline {
    flex-direction: column;
    align-items: flex-start;
  }
  .domain-grid .offering-card:last-child {
    grid-column: auto;
  }
  .grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .simple-domain-list { columns: 1; }
  .menu-toggle { display: block; }
  #main-nav {
    position: absolute;
    top: 118px;
    right: 4%;
    width: min(300px, 92vw);
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--line);
    border-radius: .7rem;
    padding: .5rem;
    display: none;
  }
  #main-nav.open { display: grid; }
  nav a { width: 100%; }
  .hero-tiles, .grid.two, .grid.three, .grid.four, .vision-grid, .contact-grid, .footer-grid, .why-grid { grid-template-columns: 1fr; }
  .social-sticky { top: auto; bottom: 20px; right: 10px; transform: none; }
  .brand img {
    max-width: min(260px, 60vw);
    max-height: 80px;
  }
  .brand-tagline {
    font-size: .65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body, .hero, .section, .tile, .card, .reveal, .slide-track, .social-sticky a, .footer-grid > section, .footer-links a {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
}

#enquiry-status {
  margin-top: 0.75rem;
  color: #0f3c5f;
  font-weight: 700;
}
.map-container {
  width: 100%;            /* Allows it to shrink on small screens */
  max-width: 800px;       /* Prevents it from getting too wide on large screens (change this number as needed) */
  margin: 0 auto;         /* Centers the map horizontally on the page */
  aspect-ratio: 16 / 9;   /* Keeps a nice rectangular shape without complex math */
  overflow: hidden;       /* Hides any accidental overflow */
  border-radius: 12px;    /* Optional: Gives the map smooth, rounded corners */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional: Adds a subtle shadow */
}
.map-container iframe {
  width: 100%;            /* Forces the iframe to strictly obey the container's width */
  height: 100%;           /* Forces the iframe to strictly obey the container's height */
  border: none;           /* Removes default iframe borders */
  display: block;         /* Removes weird spacing issues under the iframe */
}
