@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --teal: #00b090;
  /* Brand Mint Green */
  --teal-dark: #008d74;
  /* Brand Dark Mint Green */
  --steel-blue: #1e7378;
  /* Brand Ocean Teal */
  --steel-blue-dark: #143c46;
  /* Brand Deep Pine Teal */
  --brand-mint: #00b090;
  --brand-mint-dark: #008d74;
  --brand-ocean: #1e7378;
  --brand-pine: #143c46;
  --brand-pine-dark: #0c262c;
  --white: #ffffff;
  --off-white: #f5f8f8;
  /* Soft clean light teal-gray */
  --light-gray: #eef2f2;
  --mid-gray: #d5dedf;
  --text-dark: #162a2d;
  --text-mid: #475a5d;
  --text-light: #7b8e91;
  --shadow-sm: 0 2px 8px rgba(20, 60, 70, 0.08);
  --shadow-md: 0 4px 20px rgba(20, 60, 70, 0.12);
  --shadow-lg: 0 8px 40px rgba(20, 60, 70, 0.15);
  --transition: all 0.3s ease;

  /* Aliases for compatibility */
  --brand-teal-dark: var(--teal-dark);
  --brand-teal-pale: rgba(0, 176, 144, 0.08);
  --brand-teal-light: var(--teal);
  --brand-navy: var(--brand-pine-dark);
  --border-light: var(--light-gray);
  --bg-body: #ffffff;
  --bg-alt: var(--off-white);
  --text-muted: var(--text-light);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  height: 110px;
  width: auto;
  animation: logoPulse 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: var(--light-gray);
  border-radius: 2px;
  margin-top: 24px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--steel-blue));
  border-radius: 2px;
  animation: barFill 1.8s ease forwards;
}

.loader-text {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.06)
  }
}

@keyframes barFill {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mid-gray);
  transition: var(--transition);
}

#navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 58px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  object-position: center;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text span:first-child {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-pine);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.nav-logo-text span:last-child {
  font-size: 9px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

/* Navbar Dropdown styling */
.nav-links li {
  position: relative;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  min-width: 285px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1001;
}

.nav-links .dropdown-menu li {
  border-bottom: none;
}

.nav-links .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  white-space: nowrap;
}

.nav-links .dropdown-menu a::after {
  display: none;
}

.nav-links .dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--brand-pine);
  padding-left: 24px;
}

.nav-links li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--brand-pine);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--teal);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 176, 144, 0.2);
}

.nav-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 176, 144, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  padding-top: 75px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f7fafb 0%, #e5eeee 50%, #d8e6e7 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(0, 176, 144, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30, 115, 120, 0.1) 0%, transparent 50%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 176, 144, 0.12);
  color: var(--teal-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--brand-pine);
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--brand-ocean);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 176, 144, 0.25);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 176, 144, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-ocean);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid var(--brand-ocean);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--brand-ocean);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 115, 120, 0.2);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 44px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--brand-ocean);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
  font-weight: 500;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  animation: floatUp 0.8s ease forwards;
  opacity: 0;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-img-card {
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--mid-gray);
}

.hero-img-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--mid-gray);
}

.hero-badge-icon {
  font-size: 24px;
}

.hero-badge-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-pine);
}

.hero-badge-text span {
  font-size: 11px;
  color: var(--text-light);
}

/* ── SECTIONS ── */
section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(0, 176, 144, 0.1);
  color: var(--teal-dark);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--brand-pine);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--steel-blue));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ── ABOUT ── */
#about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-pine);
  margin-bottom: 8px;
}

.about-text .tagline {
  color: var(--brand-ocean);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.badge {
  background: #fff;
  border: 1px solid var(--mid-gray);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.badge:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.about-info {
  margin-top: 8px;
}

.info-row {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--mid-gray);
  font-size: 14px;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: var(--brand-pine);
  min-width: 120px;
}

.info-val {
  color: var(--text-mid);
}

.about-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mid-gray);
}

.about-map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
}

.about-address-card {
  background: #fff;
  border: 1px solid var(--mid-gray);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.about-address-card .icon {
  font-size: 20px;
  margin-top: 2px;
}

.about-address-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

.about-address-card strong {
  display: block;
  font-size: 14px;
  color: var(--brand-pine);
  margin-bottom: 4px;
}

/* ── SERVICES ── */
#services {
  background: #white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--mid-gray);
  border-radius: 16px;
  padding: 32px 24px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--steel-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 176, 144, 0.15), rgba(30, 115, 120, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-pine);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-highlights {
  list-style: none;
}

.service-highlights li {
  font-size: 12px;
  color: var(--text-mid);
  padding: 4px 0;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.service-highlights li::before {
  content: '✓';
  color: var(--teal-dark);
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── PRODUCTS ── */
#products {
  background: var(--off-white);
}

.product-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1.5px solid var(--mid-gray);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-mid);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 176, 144, 0.2);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-img {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: #fff;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.04);
}

.product-badge-rent {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--teal);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-info {
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--brand-ocean);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-pine);
  margin-bottom: 8px;
  line-height: 1.35;
  height: 38px;
  overflow: hidden;
}

.product-info p {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 14px;
  height: 58px;
  overflow: hidden;
}

.product-enquire {
  width: 100%;
  padding: 8px;
  border: 1.5px solid var(--steel-blue);
  border-radius: 6px;
  background: transparent;
  color: var(--steel-blue);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.product-enquire:hover {
  background: var(--steel-blue);
  color: #fff;
}

.product-hidden {
  display: none;
}

/* ── WHY US ── */
#whyus {
  background: linear-gradient(135deg, var(--brand-pine-dark) 0%, var(--brand-pine) 100%);
}

#whyus .section-title {
  color: #fff;
}

#whyus .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

#whyus .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 38px;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ── CONTACT ── */
#contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-pine);
  margin-bottom: 6px;
}

.contact-info>p {
  color: var(--text-mid);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0, 176, 144, 0.15), rgba(30, 115, 120, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-item h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-pine);
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  display: block;
  line-height: 1.5;
}

.contact-item a:hover {
  color: var(--teal);
}

.contact-form {
  background: var(--off-white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--mid-gray);
}

.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-pine);
  margin-bottom: 6px;
}

.contact-form>p {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-pine);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--mid-gray);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--teal);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 176, 144, 0.25);
}

.form-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 176, 144, 0.35);
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--teal-dark);
  font-weight: 600;
}

/* ── MAP FOOTER ── */
#footer-map {
  padding: 0;
}

#footer-map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
}

/* ── FOOTER ── */
footer {
  background: var(--brand-pine-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 55px;
  width: auto;
  max-width: 120px;
  margin-bottom: 14px;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--teal);
}

.footer-col p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-gst {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-delay-1 {
  transition-delay: 0.1s;
}

.fade-delay-2 {
  transition-delay: 0.2s;
}

.fade-delay-3 {
  transition-delay: 0.3s;
}

.fade-delay-4 {
  transition-delay: 0.4s;
}

/* ── MOBILE NAV ── */
@media(max-width:900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px;
    gap: 0;
    border-bottom: 1px solid var(--mid-gray);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--light-gray);
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
  }

  .nav-links .dropdown-menu {
    display: block;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--teal);
    margin: 4px 0 8px 12px;
    padding: 0 0 0 12px;
    background: transparent;
    min-width: auto;
  }

  .nav-links .dropdown-menu li {
    border-bottom: none;
  }

  .nav-links .dropdown-menu a {
    padding: 6px 0;
    font-size: 13px;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-wrap {
    order: -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {
  section {
    padding: 60px 16px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── GALLERY SECTION ── */
#gallery {
  background: var(--white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 8px 22px;
  border-radius: 20px;
  border: 1.5px solid var(--mid-gray);
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-mid);
  transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--brand-ocean);
  border-color: var(--brand-ocean);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(30, 115, 120, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid var(--mid-gray);
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 60, 70, 0.9);
  /* Deep Pine Teal overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
  padding: 16px;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: 26px;
  margin-bottom: 8px;
  transform: translateY(10px);
  transition: transform 0.3s ease 0.1s;
}

.gallery-overlay p {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transform: translateY(10px);
  transition: transform 0.3s ease 0.15s;
}

.gallery-item:hover .gallery-overlay span,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* ── LIGHTBOX MODAL ── */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 32, 36, 0.97);
  /* Deep Pine Black overlay */
  z-index: 10000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.open {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  background: #fff;
  padding: 24px;
}

.lightbox-modal.open .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 44px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--teal);
  transform: rotate(90deg);
}

.lightbox-caption {
  margin-top: 20px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ── PRODUCT VIEW DETAILS BUTTON ── */
.product-view-details-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  background: var(--steel-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 8px;
}

.product-view-details-btn:hover {
  background: var(--steel-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(30, 115, 120, 0.25);
}

/* ── PRODUCT DETAIL PAGE SPECIFIC STYLES ── */
.product-detail-page {
  background: var(--off-white);
}

.product-main-container {
  padding-top: 115px;
  /* offset fixed navbar */
  padding-bottom: 80px;
}

.breadcrumbs {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.breadcrumbs a {
  color: var(--steel-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--steel-blue-dark);
}

.breadcrumbs span.active {
  color: var(--text-dark);
  font-weight: 600;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-sm);
  align-items: start;
}

.product-media-column {
  position: sticky;
  top: 95px;
}

.product-main-img-card {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  position: relative;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-main-img-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-detail-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.product-category-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--steel-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.product-title-h1 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.product-status-indicators {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.indicator-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

.available-badge {
  background: rgba(0, 176, 144, 0.12);
  color: var(--teal-dark);
}

.unavailable-badge {
  background: rgba(239, 83, 80, 0.12);
  color: #d32f2f;
}

.rent-badge {
  background: rgba(30, 115, 120, 0.12);
  color: var(--steel-blue-dark);
}

.product-description-full {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.product-specs-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-pine);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 8px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.specs-table tr {
  border-bottom: 1px solid var(--light-gray);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.spec-label {
  padding: 12px 16px 12px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-pine);
  width: 35%;
}

.spec-value {
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-mid);
}

/* ── DETAIL ENQUIRY CARD ── */
.detail-enquiry-card {
  background: linear-gradient(135deg, #f5f8f8 0%, #e8eeee 100%);
  border-radius: 14px;
  border: 1px solid var(--mid-gray);
  padding: 24px;
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
}

.enquiry-card-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-pine);
  margin-bottom: 4px;
}

.enquiry-card-header p {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 18px;
}

.enquiry-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.enquiry-phone-btn,
.enquiry-email-btn,
.enquiry-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.enquiry-phone-btn {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 176, 144, 0.2);
}

.enquiry-phone-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.enquiry-email-btn {
  background: transparent;
  border: 2px solid var(--steel-blue);
  color: var(--steel-blue);
}

.enquiry-email-btn:hover {
  background: var(--steel-blue);
  color: var(--white);
  transform: translateY(-1px);
}

.enquiry-wa-btn {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.enquiry-wa-btn:hover {
  background: #128c7e;
  transform: translateY(-1px);
}

/* ── RELATED PRODUCTS SECTION ── */
.related-products-section {
  margin-top: 64px;
}

/* ── MOBILE ADAPTATIONS FOR DETAILS PAGE ── */
@media(max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px;
  }

  .product-media-column {
    position: static;
  }

  .product-main-img-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media(max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery-item {
    aspect-ratio: 1;
  }

  .gallery-item img {
    padding: 6px;
  }

  .gallery-overlay span {
    font-size: 20px;
  }

  .gallery-overlay p {
    font-size: 10px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 36px;
  }

  .lightbox-content {
    padding: 12px;
  }
}

/* ── FEATURED CATEGORIES (HOME PAGE - 6 CARDS) ── */
#featured-categories {
  background: var(--off-white);
  padding: 80px 0;
}

.feat-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feat-cat-card {
  background: #fff;
  border: 1px solid var(--mid-gray);
  border-radius: 20px;
  padding: 32px 28px 28px;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.feat-cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), #00d2ad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.feat-cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 176, 144, 0.14);
  border-color: rgba(0, 176, 144, 0.35);
}

.feat-cat-card:hover::before {
  transform: scaleX(1);
}

.feat-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.feat-cat-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 176, 144, 0.12), rgba(0, 141, 116, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-cat-header-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-pine);
  line-height: 1.35;
  margin: 0;
}

.feat-cat-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 12px;
  background: rgba(0, 176, 144, 0.1);
  color: var(--teal-dark);
  margin-top: 4px;
}

.feat-cat-card.consumables-parent-card {
  border: 1.5px solid rgba(0, 176, 144, 0.3);
  background: linear-gradient(180deg, #ffffff 0%, #f7fcfb 100%);
}

.feat-cat-card.consumables-parent-card .feat-cat-badge {
  background: var(--teal-dark);
  color: #ffffff;
}

.feat-cat-items {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.feat-cat-items li {
  font-size: 0.92rem;
  color: #4a5d62;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.feat-cat-items li::before {
  content: '•';
  color: var(--teal);
  font-weight: bold;
  font-size: 1.2rem;
}

.feat-cat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.feat-cat-footer .arrow {
  transition: transform 0.3s ease;
}

.feat-cat-card:hover .feat-cat-footer .arrow {
  transform: translateX(6px);
}

@media (max-width: 1024px) {
  .feat-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .feat-cat-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feat-cat-card {
    padding: 24px 20px 20px;
  }
}