:root {
  --font-display: "Manrope", "Inter", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --text-xs: clamp(0.75rem, 0.72rem + 0.2vw, 0.875rem);
  --text-sm: clamp(0.9rem, 0.84rem + 0.2vw, 1rem);
  --text-base: clamp(1rem, 0.96rem + 0.18vw, 1.08rem);
  --text-lg: clamp(1.125rem, 1rem + 0.4vw, 1.35rem);
  --text-xl: clamp(1.85rem, 1.35rem + 1.3vw, 2.8rem);
  --text-2xl: clamp(2.5rem, 1.8rem + 2.7vw, 4.7rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 999px;

  --container: 1180px;
  --shadow-sm: 0 12px 30px rgba(10, 28, 30, 0.08);
  --shadow-md: 0 24px 60px rgba(10, 28, 30, 0.12);
  --transition: 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

:root,
[data-theme="light"] {
  --bg: #f6fbfa;
  --surface: #ffffff;
  --surface-2: #edf8f5;
  --surface-3: #e4f5f0;
  --border: rgba(12, 41, 43, 0.10);

  --text: #163135;
  --muted: #61797d;
  --faint: #90a7aa;
  --inverse: #ffffff;

  --primary: #60b834;
  --primary-deep: #458f25;
  --teal: #159f9b;
  --teal-deep: #117f7c;
  --accent: linear-gradient(135deg, #61ba35 0%, #15a5a0 100%);
}

[data-theme="dark"] {
  --bg: #0d1416;
  --surface: #121d20;
  --surface-2: #18292c;
  --surface-3: #1d3437;
  --border: rgba(255, 255, 255, 0.08);

  --text: #e9f4f2;
  --muted: #bbcecd;
  --faint: #8ba2a1;
  --inverse: #091112;

  --primary: #72d042;
  --primary-deep: #5fb734;
  --teal: #23b8b0;
  --teal-deep: #14988f;
  --accent: linear-gradient(135deg, #72d042 0%, #23b8b0 100%);

  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.34);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(21,165,160,0.10), transparent 25%),
    radial-gradient(circle at right top, rgba(97,186,53,0.12), transparent 25%),
    var(--bg);
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

input,
textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(21,165,160,0.12);
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-full);
  background: var(--teal);
  color: white;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-shell {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand-copy span {
  display: block;
  margin-top: 0.18rem;
  font-size: var(--text-xs);
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle,
.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: var(--surface);
}

.theme-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
}

.menu-toggle {
  display: none;
  gap: 0.25rem;
  padding: 0.75rem;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
}

.btn {
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-secondary,
.btn-outline {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero-orb-1 {
  right: 6%;
  top: 4%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(21,165,160,0.20), transparent 70%);
}

.hero-orb-2 {
  left: 8%;
  bottom: 8%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(97,186,53,0.16), transparent 70%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(21,165,160,0.10);
  color: var(--teal);
  border: 1px solid rgba(21,165,160,0.14);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero-copy h1,
.section-copy h2,
.section-head h2,
.brochure-box h2 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-copy h1 {
  font-size: var(--text-2xl);
  max-width: 12ch;
}

.hero-copy p,
.section-copy p,
.section-head p,
.brochure-box p,
.slide-copy p,
.contact-card p,
.trust-card p,
.glass-card p {
  color: var(--muted);
}

.hero-copy p {
  margin-top: 1rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-highlights article,
.trust-card,
.glass-card,
.contact-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow-sm);
}

.hero-highlights strong {
  display: block;
  color: var(--primary-deep);
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
}

.hero-media {
  min-width: 0;
}

.hero-image-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 520px;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.hero-overlay-card {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.45);
}

[data-theme="dark"] .hero-overlay-card {
  background: rgba(18,29,32,0.84);
  border-color: rgba(255,255,255,0.08);
}

.hero-pill {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(97,186,53,0.14);
  color: var(--primary-deep);
  font-size: var(--text-xs);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero-overlay-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.trust-strip {
  padding: 0 0 2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(21,165,160,0.05), transparent);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.25rem;
  align-items: center;
}

.section-head {
  max-width: 56rem;
  margin-bottom: 2rem;
}

.section-head h2,
.section-copy h2,
.brochure-box h2 {
  font-size: var(--text-xl);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.cards-grid {
  display: grid;
  gap: 1rem;
}

.cards-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.glass-card {
  padding: 1.35rem;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 88%, transparent), color-mix(in srgb, var(--surface-2) 74%, transparent));
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: var(--accent);
  margin-bottom: 1rem;
}

.slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.slider-track-wrap {
  overflow: hidden;
  /* Add cursor styles to indicate it's swipeable */
  cursor: grab;
}
.slider-track-wrap:active {
  cursor: grabbing;
}

.slider-track {
  display: grid;
  grid-template-columns: repeat(3, 100%);
  transition: transform 400ms ease;
  will-change: transform;
}

.slide-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  /* Prevent images from being dragged by default browser behavior */
  user-select: none;
}

.slide-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  pointer-events: none;
}

.slide-copy {
  padding: 1.5rem;
}

.slide-copy h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 1.5rem;
  line-height: 1;
}

.brochure-section {
  padding-top: 1rem;
}

.brochure-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border-radius: 30px;
  background: linear-gradient(135deg, #163338, #1f7b72 55%, #68be39);
  color: white;
  box-shadow: var(--shadow-md);
}

.brochure-box p {
  color: rgba(255,255,255,0.88);
}

.brochure-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 260px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  padding: 1.3rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  margin-bottom: 0.55rem;
}

.enquiry-form {
  margin-top: 2rem;
  padding: 1.4rem;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.enquiry-form label span {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  min-height: 52px;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #37c86b, #149f73);
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-row p,
.footer-row a {
  color: var(--muted);
  font-size: var(--text-sm);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .brochure-box,
  .slide-card {
    grid-template-columns: 1fr;
  }

  .cards-grid-4,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-image-card,
  .hero-image-card img {
    min-height: 420px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
  }
}

@media (max-width: 720px) {
  /* Shrink Header & Header Button on Mobile to Avoid Cramping */
  .nav-shell {
    min-height: 70px;
    gap: 0.5rem;
  }
  .brand-logo {
    width: 44px;
    height: 44px;
  }
  .brand-copy strong {
    font-size: 1rem;
  }
  .nav-actions {
    gap: 0.5rem;
  }
  .nav-actions .btn-primary {
    min-height: 38px;
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }
  .theme-toggle,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .hero-highlights,
  .trust-grid,
  .cards-grid-4,
  .gallery-grid,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

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

  .hero-image-card,
  .hero-image-card img {
    min-height: 320px;
  }

  .brand-copy span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}