/* ==========================================================================
   Thanakola Lawn Care & Landscaping - Modern Design System & Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand Palette */
  --primary-deep: #062316;
  --primary: #0f5132;
  --primary-light: #157347;
  --accent-emerald: #10b981;
  --accent-mint: #34d399;
  --accent-lime: #84cc16;
  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;

  /* Neutral Tones */
  --bg-dark: #05140c;
  --bg-surface-dark: #0a2216;
  --bg-light: #f4f8f5;
  --bg-card: #ffffff;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --text-light: #f9fafb;
  --border-light: #e5e7eb;
  --border-green: rgba(16, 185, 129, 0.2);

  /* Glassmorphism & Shadows */
  --glass-bg: rgba(6, 35, 22, 0.75);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(6, 35, 22, 0.12);
  --shadow-lg: 0 16px 40px rgba(6, 35, 22, 0.2);
  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.3);

  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

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

/* Container Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
  border: 1px solid var(--border-green);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-deep);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-emerald), var(--primary-light));
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
  background: linear-gradient(135deg, #059669, #0f5132);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  color: #05140c;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* Big Prominent Call Button */
.btn-big-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.05rem 2.4rem;
  border-radius: var(--radius-full);
  font-size: 1.18rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #000000;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
  transition: var(--transition);
  text-decoration: none;
  border: 2.5px solid #fef08a;
  letter-spacing: -0.01em;
}

.btn-big-call:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.7);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #000000;
}

.phone-pulse-icon {
  font-size: 1.35rem;
  color: #000000;
  animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg) scale(1); }
  10%, 30% { transform: rotate(-15deg) scale(1.18); }
  20%, 40% { transform: rotate(15deg) scale(1.18); }
  50% { transform: rotate(0deg) scale(1); }
}

/* Calculator Unit Toggle Buttons */
.unit-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid #cbd5e1;
  background: #f1f5f9;
  color: var(--primary-deep);
}

.unit-toggle-btn:hover {
  background: #e2e8f0;
  border-color: var(--primary-light);
  color: var(--primary-deep);
}

.unit-toggle-btn.active {
  background: linear-gradient(135deg, var(--accent-emerald), var(--primary-light));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

/* Manual Number Input in Calculator */
.manual-input-wrap {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid var(--accent-emerald);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.4rem 0.2rem 0.85rem;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.15);
  transition: var(--transition);
}

.manual-input-wrap:focus-within {
  border-color: #059669;
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.38);
  transform: translateY(-1px);
}

.area-number-input {
  width: 70px;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-deep);
  text-align: right;
  padding-right: 0.3rem;
}

.area-number-input::-webkit-outer-spin-button,
.area-number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.area-number-input[type=number] {
  -moz-appearance: textfield;
}

.area-unit-badge {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-light);
  background: rgba(16, 185, 129, 0.14);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
}

/* Top Announcement Bar at Very Top of Screen */
.top-announcement-bar {
  background: linear-gradient(90deg, #04160d 0%, #0d4228 50%, #04160d 100%);
  color: #ffffff;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  border-bottom: 1.5px solid rgba(52, 211, 153, 0.35);
  position: relative;
  z-index: 1002;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-info-item i {
  color: #bef264;
  font-size: 0.95rem;
}

.top-info-divider {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.highlight-island {
  color: #bef264;
  font-weight: 700;
  font-size: 0.88rem;
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.top-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.top-call-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #000000;
  box-shadow: 0 3px 12px rgba(245, 158, 11, 0.45);
}

.top-call-btn:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(245, 158, 11, 0.6);
}

.top-wa-btn {
  background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.45);
}

.top-wa-btn:hover {
  background: linear-gradient(135deg, #4ade80 0%, #25d366 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(37, 211, 102, 0.6);
}

.top-fb-btn {
  background: linear-gradient(135deg, #1877f2 0%, #0d5cb6 100%);
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(24, 119, 242, 0.45);
}

.top-fb-btn:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1877f2 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(24, 119, 242, 0.6);
}

/* Navbar */
.navbar {
  position: relative;
  z-index: 1000;
  padding: 0.4rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.3rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  position: relative;
  padding: 2px 4px;
}

/* Navbar brand logo (leaf + circle logo + text) visibility:
   Transparent at top of page, fades in smoothly when scrolling */
.navbar:not(.scrolled) .brand-logo-container {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.navbar.scrolled .brand-logo-container {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

/* Ensure Logo inside Mobile Sidebar Drawer is always visible */
.mobile-sidebar .brand-logo-container {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}

.brand-leaf-icon {
  font-size: 1.2rem;
  color: var(--accent-lime);
  filter: drop-shadow(0 0 8px rgba(132, 204, 22, 0.8));
  animation: leafFloat 3s ease-in-out infinite alternate;
}

@keyframes leafFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-3px) rotate(8deg); }
}

.logo-glass-box {
  background: #ffffff;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  padding: 2px;
  border: 2.5px solid var(--accent-mint);
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.5), 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.brand-logo-container:hover .logo-glass-box,
.logo-glass-box:hover {
  transform: scale(1.14);
  border-color: #bef264;
  box-shadow: 0 0 28px rgba(52, 211, 153, 0.95), 0 0 45px rgba(132, 204, 22, 0.6), 0 6px 20px rgba(0, 0, 0, 0.5);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.brand-logo-container:hover .brand-logo-img {
  transform: scale(1.08);
}

/* Sprouting Grass Text THANAKOLA.LK */
.grass-text-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-align: left;
}

.grass-sprouts-top {
  position: absolute;
  top: -9px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
}

.sprout {
  font-size: 0.6rem;
  animation: sproutGrow 2.5s ease-in-out infinite alternate;
}

.sprout.s1 { animation-delay: 0s; }
.sprout.s2 { animation-delay: 0.4s; }
.sprout.s3 { animation-delay: 0.8s; }
.sprout.s4 { animation-delay: 1.2s; }
.sprout.s5 { animation-delay: 1.6s; }

@keyframes sproutGrow {
  0% { transform: scale(0.8) translateY(2px); opacity: 0.7; }
  100% { transform: scale(1.2) translateY(-2px); opacity: 1; }
}

.grass-sprout-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #bef264 0%, #22c55e 50%, #15803d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 10px rgba(132, 204, 22, 0.4));
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.grass-sprout-title .sin-t {
  display: inline;
  background: none;
  -webkit-text-fill-color: inherit;
  font-family: system-ui, -apple-system, sans-serif;
  padding-right: 1px;
}

.dot-lk {
  background: linear-gradient(180deg, #facc15 0%, #eab308 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Full Page Wide 2-Worker Turf & Roller Animation Strip */
.mini-turf-anim {
  width: 100%;
  max-width: 100%;
  height: 44px;
  position: relative;
  margin: 14px auto 0 auto;
  overflow: hidden;
  background: rgba(6, 20, 12, 0.85);
  border-radius: 18px;
  border: 1.5px solid rgba(132, 204, 22, 0.5);
  box-shadow: inset 0 3px 8px rgba(0,0,0,0.7), 0 6px 20px rgba(0,0,0,0.4);
}

.turf-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(180deg, #5c2c0c 0%, #3b1703 100%);
}

/* Green turf sod carpet unrolling behind Worker 2 */
.unrolling-sod {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 11px;
  background: linear-gradient(90deg, #15803d, #4ade80, #bef264);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(132, 204, 22, 0.7);
  animation: unrollTurf 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes unrollTurf {
  0% { width: 0%; }
  75% { width: 90%; }
  90% { width: 100%; opacity: 1; }
  96% { width: 100%; opacity: 0; }
  100% { width: 0%; opacity: 0; }
}

/* Worker 1: Pushes heavy stone/lawn roller to level ground ahead */
.mini-worker.worker-roller {
  position: absolute;
  bottom: 6px;
  font-size: 1.25rem;
  color: #fde047;
  display: flex;
  align-items: center;
  gap: 3px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.9));
  animation: rollerWalk 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.mini-roller-icon {
  font-size: 1.15rem;
  color: #cbd5e1;
}

/* Worker 2: Unrolls and lays green grass sod rolls behind Worker 1 */
.mini-worker.worker-sod {
  position: absolute;
  bottom: 6px;
  font-size: 1.25rem;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 3px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.9));
  animation: sodWalk 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.mini-sod-icon {
  font-size: 1.1rem;
  color: #a3e635;
}

@keyframes rollerWalk {
  0% { left: -50px; opacity: 0; }
  5% { left: 0px; opacity: 1; }
  75% { left: 88%; opacity: 1; }
  92% { left: 96%; opacity: 1; }
  96% { left: 100%; opacity: 0; }
  100% { left: -50px; opacity: 0; }
}

@keyframes sodWalk {
  0% { left: -110px; opacity: 0; }
  5% { left: -70px; opacity: 0; }
  18% { left: 0px; opacity: 1; }
  85% { left: 78%; opacity: 1; }
  94% { left: 88%; opacity: 1; }
  97% { left: 95%; opacity: 0; }
  100% { left: -110px; opacity: 0; }
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}

.brand-logo i {
  color: var(--accent-mint);
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.6));
}

.brand-sub {
  color: var(--accent-mint);
  font-weight: 500;
}

/* ==========================================================================
   Real Mini Grass, Blooming Flowers & Pop-Out Navbar Menu Links
   ========================================================================== */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.38rem 0.75rem;
  border-radius: 20px;
  background: rgba(3, 20, 11, 0.75);
  border: 1.5px solid rgba(74, 222, 128, 0.3);
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    inset 0 -1px 2px rgba(0, 0, 0, 0.6),
    0 2px 8px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
  position: relative;
  overflow: visible;
  isolation: isolate;
  transition: transform 0.25s cubic-bezier(0.34, 1.5, 0.64, 1), 
              background 0.25s ease, 
              border-color 0.25s ease, 
              box-shadow 0.25s ease,
              color 0.25s ease;
  
  /* Crystal Clear Dewdrop Text - Base State */
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.25px;
  white-space: nowrap;
  color: #e2fdd8;
  text-shadow: 0 1.5px 2px rgba(0, 10, 4, 0.95), 0 0 6px rgba(74, 222, 128, 0.45);
  cursor: pointer;
  z-index: 1;
}

/* Ensure Text & Icons are ALWAYS on top in FRONT of grass & flowers */
.nav-link i,
.nav-link span {
  position: relative;
  z-index: 10;
  transition: transform 0.25s cubic-bezier(0.34, 1.6, 0.64, 1);
}

/* Real Fine Malaysian Grass at the bottom base of the button */
.nav-link::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 4px;
  right: 4px;
  height: 14px;
  background: url('assets/malaysian-grass.jpg') center/cover repeat-x;
  clip-path: polygon(
    0% 100%, 0% 25%, 2% 8%, 4% 30%, 6% 4%, 8% 35%, 10% 12%, 12% 45%,
    15% 6%, 18% 40%, 21% 4%, 24% 30%, 27% 10%, 30% 45%, 33% 5%, 36% 35%,
    39% 4%, 42% 30%, 45% 12%, 48% 45%, 51% 4%, 54% 35%, 57% 8%, 60% 40%,
    63% 4%, 66% 30%, 69% 10%, 72% 45%, 75% 6%, 78% 35%, 81% 4%, 84% 30%,
    87% 12%, 90% 40%, 93% 4%, 96% 25%, 98% 8%, 100% 20%, 100% 100%
  );
  transform-origin: bottom center;
  transform: scaleY(0);
  opacity: 0;
  transition: transform 0.18s cubic-bezier(0.34, 1.6, 0.64, 1), opacity 0.12s ease;
  pointer-events: none;
  filter: drop-shadow(0 -2px 4px rgba(132, 204, 22, 0.95)) brightness(1.28);
  z-index: 2;
}

/* Tiny Red & Pink Blooming Flowers at the grass base */
.nav-link::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background-image: 
    /* Flower 1: Pink Blossom Left (🌸) */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='13' height='13'%3E%3Ccircle cx='16' cy='8' r='5.5' fill='%23f472b6'/%3E%3Ccircle cx='23' cy='13' r='5.5' fill='%23f472b6'/%3E%3Ccircle cx='20' cy='22' r='5.5' fill='%23fb7185'/%3E%3Ccircle cx='12' cy='22' r='5.5' fill='%23fb7185'/%3E%3Ccircle cx='9' cy='13' r='5.5' fill='%23f472b6'/%3E%3Ccircle cx='16' cy='15' r='4' fill='%23fef08a'/%3E%3Ccircle cx='16' cy='15' r='2' fill='%23ea580c'/%3E%3C/svg%3E"),
    /* Flower 2: Red Rose / Hibiscus Right (🌺) */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='14' height='14'%3E%3Ccircle cx='16' cy='8' r='6' fill='%23ef4444'/%3E%3Ccircle cx='23' cy='13' r='6' fill='%23dc2626'/%3E%3Ccircle cx='20' cy='22' r='6' fill='%23b91c1c'/%3E%3Ccircle cx='12' cy='22' r='6' fill='%23b91c1c'/%3E%3Ccircle cx='9' cy='13' r='6' fill='%23dc2626'/%3E%3Ccircle cx='16' cy='15' r='4' fill='%23fde047'/%3E%3Ccircle cx='16' cy='15' r='2' fill='%23c2410c'/%3E%3C/svg%3E"),
    /* Flower 3: Little Pink Bud Middle */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='10' height='10'%3E%3Ccircle cx='12' cy='6' r='4' fill='%23f43f5e'/%3E%3Ccircle cx='16' cy='11' r='4' fill='%23fda4af'/%3E%3Ccircle cx='14' cy='16' r='4' fill='%23f43f5e'/%3E%3Ccircle cx='10' cy='16' r='4' fill='%23fb7185'/%3E%3Ccircle cx='8' cy='11' r='4' fill='%23fda4af'/%3E%3Ccircle cx='12' cy='12' r='2.5' fill='%23fef08a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 
    3px calc(100% - 1px),               /* Pink flower on left grass */
    calc(100% - 5px) calc(100% - 2px),  /* Red flower on right grass */
    60% calc(100% - 1px);               /* Pink bud middle */
  background-size: 13px 13px, 14px 14px, 10px 10px;
  transform: scale(0) translateY(8px);
  opacity: 0;
  transform-origin: bottom center;
  transition: transform 0.2s cubic-bezier(0.34, 1.8, 0.64, 1), opacity 0.12s ease;
  filter: drop-shadow(0 1.5px 3px rgba(0, 0, 0, 0.85));
}

/* HOVER: Text Springs Out In Front + Grass & Flowers Flourish Below */
.nav-link:hover,
.nav-link.active {
  animation: navTextPopOut 0.28s cubic-bezier(0.34, 1.8, 0.64, 1) forwards;
  background: linear-gradient(135deg, rgba(16, 75, 40, 0.95) 0%, rgba(4, 30, 15, 0.98) 100%);
  border-color: #86efac;
  color: #ffffff !important;
  text-shadow: 
    0 0 12px #86efac, 
    0 0 22px #22c55e, 
    0 3px 6px rgba(0, 0, 0, 0.95);
  box-shadow: 
    inset 0 1px 3px rgba(255, 255, 255, 0.7),
    0 0 20px rgba(74, 222, 128, 0.65),
    0 8px 24px rgba(0, 0, 0, 0.65);
  z-index: 50;
}

/* Spring Pop-Out Animation (අකුරු තණකොළ අතරින් ඉස්සරහට පැනීම) */
@keyframes navTextPopOut {
  0% { transform: translateY(0) scale(1); }
  60% { transform: translateY(-6px) scale(1.18); }
  100% { transform: translateY(-5px) scale(1.14); }
}

/* Fast Real Grass Sprouting at Base on Hover */
.nav-link:hover::before,
.nav-link.active::before {
  transform: scaleY(1.3) translateY(-1px);
  opacity: 1;
  animation: realMiniGrassGrowth 2s ease-in-out infinite alternate;
}

/* Red & Pink Flowers Bloom Open at Base on Hover */
.nav-link:hover::after,
.nav-link.active::after {
  transform: scale(1) translateY(0);
  opacity: 1;
  animation: flowerGentleSway 2.2s ease-in-out infinite alternate;
}

@keyframes realMiniGrassGrowth {
  0% { transform: scaleY(1.2) translateY(-1px) rotate(0deg); }
  50% { transform: scaleY(1.4) translateY(-3px) rotate(1.2deg); }
  100% { transform: scaleY(1.25) translateY(-2px) rotate(-1.2deg); }
}

@keyframes flowerGentleSway {
  0% { transform: scale(1) translateY(0) rotate(0deg); }
  50% { transform: scale(1.12) translateY(-2px) rotate(4deg); }
  100% { transform: scale(1.04) translateY(-1px) rotate(-3deg); }
}

.nav-link i {
  font-size: 0.82rem;
  color: #bef264;
  filter: drop-shadow(0 0 5px rgba(190, 242, 100, 0.9));
}

.nav-link:hover i {
  transform: scale(1.22) rotate(-8deg);
}

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

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(52, 211, 153, 0.35);
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-toggle:hover,
.mobile-toggle:active {
  background: rgba(16, 185, 129, 0.25);
  border-color: var(--accent-emerald);
  color: #bef264;
  transform: scale(1.05);
}

/* ==========================================================================
   Mobile Sidebar Navigation Drawer (Offcanvas Menu)
   ========================================================================== */
.mobile-sidebar-backdrop {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(2, 14, 8, 0.78) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 999998 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.mobile-sidebar-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.mobile-sidebar {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 320px !important;
  max-width: 86vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: linear-gradient(180deg, #072214 0%, #031109 100%) !important;
  border-left: 1.5px solid rgba(52, 211, 153, 0.35) !important;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(16, 185, 129, 0.2) !important;
  z-index: 999999 !important;
  transform: translateX(105%) !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  box-sizing: border-box !important;
  pointer-events: none;
}

.mobile-sidebar.active {
  transform: translateX(0) !important;
  pointer-events: auto !important;
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.2rem 1rem 1.2rem;
  border-bottom: 1px solid rgba(52, 211, 153, 0.2);
  background: rgba(0, 0, 0, 0.2);
}

.mobile-sidebar-close {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-sidebar-close:hover,
.mobile-sidebar-close:active {
  background: rgba(239, 68, 68, 0.25);
  border-color: #ef4444;
  color: #ef4444;
  transform: rotate(90deg);
}

.mobile-sidebar-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 0;
}

.mobile-sidebar-menu {
  list-style: none;
  padding: 1rem 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.mobile-sidebar-link i {
  color: var(--accent-mint);
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
}

.mobile-sidebar-link:hover,
.mobile-sidebar-link:active {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(15, 81, 50, 0.4));
  border-color: rgba(52, 211, 153, 0.45);
  color: #bef264;
  transform: translateX(4px);
}

.mobile-sidebar-actions {
  padding: 1.2rem;
  margin-top: auto;
  border-top: 1px solid rgba(52, 211, 153, 0.2);
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* Hero Section */
/* Giant Sprouting Grass Brand Banner at Hero Top */
.hero-giant-brand {
  text-align: center;
  position: relative;
  margin-bottom: 2.5rem;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Real Malaysian Sprouting Grass Title Banner */
.giant-grass-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.2rem, 8.5vw, 6rem);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: url('assets/malaysian-grass.jpg') center/cover repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.95)) drop-shadow(0 0 35px rgba(132, 204, 22, 0.75));
  margin: 0;
  line-height: 1.05;
  position: relative;
  display: inline-block;
}

.sin-t {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 900;
  display: inline;
  background: url('assets/malaysian-grass.jpg') center/cover repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 2px;
}

.real-malaysian-grass-sprouts {
  position: absolute;
  top: -24px;
  left: -8px;
  right: -8px;
  height: 32px;
  pointer-events: none;
  background: url('assets/malaysian-grass.jpg') center/cover;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
  clip-path: polygon(
    0% 100%, 2% 20%, 5% 100%, 8% 10%, 12% 100%, 16% 25%, 20% 100%,
    24% 15%, 28% 100%, 32% 5%, 36% 100%, 40% 20%, 44% 100%, 48% 10%,
    52% 100%, 56% 15%, 60% 100%, 64% 5%, 68% 100%, 72% 25%, 76% 100%,
    80% 10%, 84% 100%, 88% 20%, 92% 100%, 96% 15%, 100% 100%
  );
  animation: realGrassGrowth 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 -4px 8px rgba(132, 204, 22, 0.8));
}

@keyframes realGrassGrowth {
  0% { transform: scaleY(0.85) translateY(4px); }
  100% { transform: scaleY(1.35) translateY(-5px); }
}

.giant-dot-lk {
  background: linear-gradient(180deg, #fef08a 0%, #facc15 50%, #ca8a04 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.giant-turf-strip {
  width: 100%;
  max-width: 480px;
  height: 12px;
  background: linear-gradient(90deg, #15803d, #84cc16, #22c55e, #15803d);
  border-radius: 6px;
  margin-top: 10px;
  box-shadow: 0 4px 18px rgba(34, 197, 94, 0.5), inset 0 -3px 0 #78350f;
  position: relative;
  overflow: hidden;
}

.giant-turf-strip::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  animation: turfShine 3s linear infinite;
}

@keyframes turfShine {
  0% { left: -100%; }
  100% { left: 200%; }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  background: linear-gradient(180deg, rgba(5, 20, 12, 0.75) 0%, rgba(5, 20, 12, 0.88) 100%),
              url('assets/hero.jpg') center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-light), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-mint);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Glass Card Hero Widget */
.hero-card {
  background: rgba(10, 34, 22, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-card-header i {
  font-size: 1.8rem;
  color: var(--accent-emerald);
}

.hero-card-title {
  font-size: 1.25rem;
  color: #ffffff;
}

.quick-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.quick-feature-item i {
  color: var(--accent-emerald);
  font-size: 1.1rem;
}

/* Features Highlight Bar */
.highlights-bar {
  background: var(--primary-deep);
  color: #ffffff;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.highlight-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-mint);
  flex-shrink: 0;
}

.highlight-title {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.highlight-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Interactive Lawn Cost Calculator */
.calculator-section {
  background: var(--bg-light);
}

.calculator-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.calc-form-container {
  padding: 3rem;
}

.calc-summary-container {
  background: linear-gradient(165deg, var(--primary-deep), #0c3823);
  color: #ffffff;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-deep);
  margin-bottom: 0.75rem;
}

.unit-val {
  color: var(--accent-emerald);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Custom Range Slider */
.range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e5e7eb;
  outline: none;
  accent-color: var(--accent-emerald);
}

/* Radio Cards Grid */
.grass-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.option-radio {
  display: none;
}

.option-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 0.8rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.option-label i {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.option-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-deep);
}

.option-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.option-radio:checked + .option-label {
  border-color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.08);
}

.option-radio:checked + .option-label i {
  color: var(--accent-emerald);
}

/* Checkbox Addons */
.addons-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.addon-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.addon-checkbox-label:hover {
  background: #f9fafb;
}

.addon-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.addon-cost {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-light);
}

/* Summary Box */
.summary-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1rem;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.total-price-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.2rem 0.8rem;
  text-align: center;
  margin-bottom: 2rem;
  overflow: hidden;
}

.total-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.total-amount {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--accent-mint);
  margin-top: 0.3rem;
  line-height: 1.25;
  word-break: break-word;
}

/* Before & After Interactive Slider */
.comparison-section {
  background: #ffffff;
}

.comparison-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 520px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
}

.img-comp-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.img-comp-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.img-comp-overlay {
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 3px solid var(--accent-mint);
}

.img-comp-overlay img {
  width: 960px;
  max-width: none;
}

.comp-badge {
  position: absolute;
  top: 1.5rem;
  z-index: 5;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(5, 20, 12, 0.75);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
}

.badge-before {
  left: 1.5rem;
}

.badge-after {
  right: 1.5rem;
}

.comp-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-mint);
  border: 4px solid #ffffff;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-deep);
  cursor: ew-resize;
}

/* Grass Catalog Cards */
.grass-catalog-section {
  background: var(--bg-light);
}

.filter-btn-group {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary-deep);
  color: #ffffff;
  border-color: var(--primary-deep);
}

.grass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grass-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.grass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.grass-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.grass-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.grass-card:hover .grass-img-wrap img {
  transform: scale(1.06);
}

.grass-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-emerald);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.grass-body {
  padding: 1.5rem;
}

.grass-name {
  font-size: 1.3rem;
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
}

.grass-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.grass-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.spec-val {
  font-weight: 600;
  color: var(--primary-deep);
}

/* Services Grid */
.services-section {
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.service-card:hover {
  background: var(--primary-deep);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--accent-emerald);
  color: #ffffff;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.service-card:hover .service-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* Reviews Carousel / Cards */
.reviews-section {
  background: var(--bg-surface-dark);
  color: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.review-stars {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
}

.author-name {
  font-weight: 700;
  font-size: 1rem;
}

.author-loc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* CTA Banner Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-light) 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Modal Popup System */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 20, 12, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: scale(0.9);
  transition: var(--transition);
  position: relative;
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-header {
  background: var(--primary-deep);
  color: #ffffff;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.35rem;
}

.modal-close {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  transition: var(--transition);
}

.modal-close:hover {
  color: #ffffff;
}

.modal-body {
  padding: 2rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  margin-bottom: 1.2rem;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-mint);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid, .calculator-card {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }

  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

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

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-wrapper {
    height: 340px;
  }
}

/* ============================================================
   Portfolio / Our Work Gallery Section
   ============================================================ */
.portfolio-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(6,35,22,0.6) 100%);
}

.portfolio-tabs {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0 2rem 0;
  padding: 1.2rem 1.4rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 18px;
  border: 1px solid rgba(132, 204, 22, 0.2);
}

.port-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(74, 222, 128, 0.5);
  background: rgba(22, 101, 52, 0.45);
  color: #d1fae5;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.port-tab:hover {
  background: rgba(22, 101, 52, 0.75);
  border-color: #4ade80;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(74, 222, 128, 0.35);
  transform: translateY(-2px);
}

.port-tab.active {
  background: linear-gradient(135deg, #15803d, #16a34a);
  color: #ffffff;
  border-color: #86efac;
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.port-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.port-item-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
}

.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.port-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.port-item:hover img {
  transform: scale(1.08);
}

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,100,0,0.35) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.port-item:hover .port-overlay {
  opacity: 1;
}

.port-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.port-overlay-inner i {
  font-size: 2rem;
  color: #bef264;
}

.port-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}

.completed-badge { background: rgba(22, 101, 52, 0.9); color: #bbf7d0; border: 1px solid #4ade80; }
.progress-badge  { background: rgba(120, 53, 15, 0.9); color: #fde68a; border: 1px solid #f59e0b; }
.product-badge   { background: rgba(6, 78, 59, 0.9);  color: #a7f3d0; border: 1px solid #34d399; }
.team-badge      { background: rgba(30, 27, 75, 0.9); color: #c7d2fe; border: 1px solid #818cf8; }

/* Hidden items */
.port-item.hidden {
  display: none;
}

/* Lightbox */
.port-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.port-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  object-fit: contain;
}

.lightbox-caption {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(239, 68, 68, 0.7);
}



/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM
   Mobile First → Tablet → Desktop
   ========================================================================== */

/* ── DESKTOP ENHANCEMENT (1025px+) ──────────────────────────────────────── */
@media (min-width: 1025px) {
  .container { max-width: 1280px; padding: 0 2rem; }
  .section-padding { padding: 6rem 0; }
  .section-title { font-size: 2.8rem; }
  .hero-content { max-width: 65%; }
  .calculator-card { grid-template-columns: 1fr 380px; }
  .nav-links { gap: 0.4rem; }
  .portfolio-grid { grid-template-columns: repeat(4, 1fr); }
  .journey-grid { grid-template-columns: repeat(4, 1fr) !important; }
}

/* ── TABLET (641px – 1024px) ─────────────────────────────────────────────── */
@media (min-width: 641px) and (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .section-padding { padding: 4rem 0; }
  .section-title { font-size: 2rem; }
  .section-subtitle { font-size: 1rem; }

  /* Navbar */
  .nav-menu { gap: 0.35rem; }
  .nav-menu .nav-link { font-size: 0.78rem; padding: 0.3rem 0.55rem; }
  .brand-logo-img { height: 38px; }
  .grass-sprout-title { font-size: 0.98rem; }
  .top-bar-info { font-size: 0.85rem; gap: 0.6rem; }
  .top-action-btn { font-size: 0.82rem; padding: 0.45rem 0.9rem; }

  /* Hero */
  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { gap: 0.8rem; }

  /* Calculator */
  .calculator-card { grid-template-columns: 1fr; }
  .calc-summary-container { border-left: none; border-top: 2px solid rgba(255,255,255,0.12); padding-top: 1.5rem; }
  .grass-options-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .port-item-wide { grid-column: span 2; }
  .journey-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .nav-menu { display: none !important; }
  .mobile-toggle { display: inline-flex !important; }
  .nav-actions .btn-primary,
  .nav-actions .open-modal-btn { display: none !important; }
}

/* ── MOBILE (max 640px) ──────────────────────────────────────────────────── */
@media (max-width: 640px) {
  html { font-size: 15px; }
  .container { padding: 0 1rem; }
  .section-padding { padding: 3rem 0; }

  /* ---------- Top Announcement Bar ---------- */
  .top-announcement-bar { padding: 0.4rem 0; font-size: 0.82rem; }
  .top-bar-container { flex-direction: column; gap: 0.4rem; align-items: stretch; text-align: center; }
  .top-bar-info { flex-wrap: wrap; justify-content: center; gap: 0.4rem; font-size: 0.8rem; }
  .top-info-divider { display: none; }
  .top-bar-actions { justify-content: center; gap: 0.5rem; }
  .top-action-btn { font-size: 0.78rem; padding: 0.35rem 0.8rem; }
  .highlight-island { font-size: 0.82rem; }

  /* ---------- Navbar (Mobile Behavior) ---------- */
  .navbar {
    padding: 0.4rem 0;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, background 0.35s ease;
  }

  /* When page is at top (Not Scrolled): Entire navbar bar, logo, and buttons are 100% transparent / hidden */
  .navbar:not(.scrolled) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    background: transparent !important;
    border-bottom: 1px solid transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* When Scrolled on Mobile: Show the Navbar smoothly with dark glassmorphism */
  .navbar.scrolled {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    background: rgba(4, 18, 11, 0.94) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(52, 211, 153, 0.3) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6) !important;
    padding: 0.3rem 0;
  }

  /* Single clean row: Logo on left, Language & Mobile Toggle on right */
  .nav-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }

  .brand-logo-container {
    display: flex !important;
    flex: 0 1 auto;
    min-width: 0;
    gap: 0.4rem;
  }

  .nav-actions {
    display: flex !important;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.45rem;
  }

  .nav-actions .btn-primary,
  .nav-actions .open-modal-btn {
    display: none !important;
  }

  .lang-btn {
    font-size: 0.78rem;
    padding: 0.35rem 0.65rem;
    gap: 0.3rem;
  }

  .mobile-toggle {
    display: inline-flex !important;
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
    padding: 0;
  }

  /* Completely HIDE top horizontal nav menu on mobile - items are in the Sidebar Drawer */
  .nav-menu {
    display: none !important;
  }

  .nav-cta { display: none; }

  /* ---------- Animation Strip ---------- */
  .mini-turf-anim { height: 38px; }
  .mini-turf-anim .worker-icon { font-size: 1rem; }

  /* ---------- Hero Section ---------- */
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }
  .hero-subtitle { font-size: 0.9rem; margin-bottom: 1.2rem; }
  .hero-actions { flex-direction: column; gap: 0.7rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust-badges { gap: 0.6rem; flex-wrap: wrap; justify-content: center; }
  .hero-badge { font-size: 0.78rem; padding: 0.3rem 0.8rem; }
  .hero-stat-floater { display: none; }

  /* ---------- Section Headings ---------- */
  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 2rem; }
  .badge { font-size: 0.78rem; padding: 0.3rem 0.8rem; }

  /* ---------- Why Choose Section ---------- */
  .features-grid { grid-template-columns: 1fr !important; gap: 1rem; }
  .feature-card { padding: 1.2rem; }
  .feature-icon { width: 52px; height: 52px; font-size: 1.4rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.8rem; }
  .stat-card { padding: 1rem 0.8rem; }
  .stat-value { font-size: 2rem; }

  /* ---------- Comparison / Journey Section ---------- */
  .comparison-section .section-title { font-size: 1.5rem; }
  .journey-grid {
    grid-template-columns: 1fr !important;
    gap: 0.9rem;
  }
  .journey-step img { height: 220px !important; }

  /* ---------- Calculator Section ---------- */
  .calculator-card {
    grid-template-columns: 1fr !important;
    gap: 0;
    border-radius: 16px;
  }
  .calc-form-container { padding: 1.2rem; }
  .calc-summary-container {
    padding: 1.2rem;
    border-left: none !important;
    border-top: 2px solid rgba(255,255,255,0.12);
    border-radius: 0 0 16px 16px;
  }
  .grass-options-grid { grid-template-columns: 1fr !important; gap: 0.6rem; }
  .addons-grid { grid-template-columns: 1fr !important; gap: 0.5rem; }
  .addon-checkbox-label { font-size: 0.82rem; padding: 0.7rem 0.9rem; }
  .total-amount { font-size: clamp(1.05rem, 4vw, 1.35rem); }
  .total-price-box { padding: 1rem 0.6rem; }
  .range-slider { height: 8px; }
  .unit-val { font-size: 0.82rem; }

  /* Unit toggle buttons */
  #unitPerch, #unitSqft {
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
  }

  /* Big call button mobile tweak */
  .btn-big-call {
    font-size: 1.02rem;
    padding: 0.85rem 1.4rem;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Manual area number input mobile tweak */
  .manual-input-wrap {
    padding: 0.2rem 0.4rem 0.2rem 0.7rem;
  }
  .area-number-input {
    width: 62px;
    font-size: 1.05rem;
  }

  /* ---------- Portfolio / Gallery ---------- */
  .portfolio-section .section-title { font-size: 1.5rem; }
  .portfolio-tabs {
    gap: 0.4rem;
    padding: 0.9rem 0.8rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    border-radius: 12px;
    scrollbar-width: none;
  }
  .portfolio-tabs::-webkit-scrollbar { display: none; }
  .port-tab {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.7rem; }
  .port-item-wide { grid-column: span 2; aspect-ratio: 16/9; }
  .port-item { aspect-ratio: 1 / 1; }
  .port-badge { font-size: 0.65rem; padding: 3px 8px; }
  .port-overlay-inner i { font-size: 1.4rem; }
  .port-overlay-inner span { font-size: 0.75rem; }

  /* Journey/Step images in portfolio */
  .journey-step { border-radius: 12px !important; }

  /* ---------- Lightbox ---------- */
  .lightbox-content { max-width: 95vw; }
  .lightbox-content img { max-height: 65vh; border-radius: 10px; }
  .lightbox-caption { font-size: 0.82rem; padding: 0 0.5rem; }
  .lightbox-close { top: -38px; width: 34px; height: 34px; font-size: 1rem; }

  /* ---------- Grass Variety Section ---------- */
  .grass-catalog-section .section-title { font-size: 1.5rem; }
  .filter-btn-group { gap: 0.4rem; flex-wrap: wrap; }
  .filter-btn { font-size: 0.78rem; padding: 0.4rem 0.9rem; }
  .grass-grid { grid-template-columns: 1fr !important; gap: 1rem; }
  .grass-card { border-radius: 14px; }
  .grass-img-wrap img { height: 200px; object-fit: cover; }

  /* ---------- Reviews Section ---------- */
  .reviews-grid { grid-template-columns: 1fr !important; gap: 1rem; }
  .review-card { padding: 1.2rem; }

  /* ---------- Footer ---------- */
  .footer-grid { grid-template-columns: 1fr !important; gap: 1.5rem; text-align: center; }
  .footer-links { align-items: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; font-size: 0.82rem; }

  /* ---------- Booking Modal ---------- */
  .booking-modal-card {
    margin: 0.8rem;
    padding: 1.4rem;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-header { margin-bottom: 1rem; }
  .form-field { margin-bottom: 0.8rem; }
  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 0.9rem;
    padding: 0.7rem 0.9rem;
  }

  /* ---------- Show More Button ---------- */
  #showMoreBtn { font-size: 0.88rem; padding: 0.75rem 1.5rem; width: 100%; }
  #showMoreWrap { padding: 0 0.5rem; }

  /* ---------- CTA / WhatsApp sticky float ---------- */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}

/* ── TINY PHONES (max 380px) ─────────────────────────────────────────────── */
@media (max-width: 380px) {
  html { font-size: 14px; }
  .hero-title { font-size: 1.5rem; }
  .section-title { font-size: 1.4rem; }
  .portfolio-grid { grid-template-columns: 1fr !important; }
  .port-item-wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr !important; }
  .logo-glass-box { width: 48px; height: 48px; min-width: 48px; min-height: 48px; }
  .grass-sprout-title { font-size: 0.75rem; }
}

/* ── TOUCH DEVICE ENHANCEMENTS ───────────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  /* Show overlay on tap for touch devices */
  .port-item:active .port-overlay { opacity: 1; }
  .port-overlay { transition: opacity 0.15s ease; }

  /* Larger tap targets */
  .nav-links a { min-height: 40px; display: flex; align-items: center; }
  .port-tab { min-height: 40px; }
  .btn { min-height: 44px; }

  /* Disable hover-only transforms on touch */
  .feature-card:hover { transform: none; }
  .grass-card:hover { transform: none; }
}

/* ── PRINT STYLES ────────────────────────────────────────────────────────── */
@media print {
  .navbar, .top-announcement-bar, .mini-turf-anim,
  .whatsapp-float, .booking-modal, .port-lightbox { display: none !important; }
  body { background: white; color: black; }
  .section-title { color: #000; }
}

/* ==========================================================================
   Language Selection Onload Popup Modal
   ========================================================================== */
.lang-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 18, 11, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  box-sizing: border-box;
}

.lang-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lang-modal-box {
  background: linear-gradient(150deg, #092618 0%, #04140c 100%);
  border: 1.5px solid rgba(52, 211, 153, 0.35);
  border-radius: 24px;
  padding: 2.2rem 1.8rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(16, 185, 129, 0.25);
  text-align: center;
  color: #ffffff;
  transform: scale(0.88) translateY(24px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  box-sizing: border-box;
}

.lang-modal-overlay.active .lang-modal-box {
  transform: scale(1) translateY(0);
}

.lang-modal-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(52, 211, 153, 0.1));
  border: 1.5px solid rgba(52, 211, 153, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #34d399;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.lang-modal-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.lang-modal-subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.8rem;
}

.lang-modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  box-sizing: border-box;
}

.lang-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(52, 211, 153, 0.3);
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #ffffff;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.lang-option-card:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(15, 81, 50, 0.45));
  border-color: #34d399;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
}

.lang-option-card:active {
  transform: translateY(-1px);
}

.lang-brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.92rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  letter-spacing: -0.02em;
  max-width: 100%;
  box-sizing: border-box;
}

.lang-brand-badge i {
  color: #84cc16;
  font-size: 0.82rem;
}

.lang-brand-badge .sin-t {
  color: #84cc16;
}

.lang-brand-badge .dot-lk {
  color: #34d399;
}

.lang-option-name {
  font-weight: 700;
  font-size: 1.18rem;
  color: #ffffff;
}

.lang-option-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.15rem;
}

/* ---------- Language Modal Mobile Overrides ---------- */
@media (max-width: 768px) {
  .lang-modal-overlay {
    padding: 1rem 0.75rem;
  }

  .lang-modal-box {
    max-width: 380px;
    width: 100%;
    padding: 1.6rem 1.1rem;
    border-radius: 20px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .lang-modal-icon-wrap {
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
    margin-bottom: 0.8rem;
  }

  .lang-modal-title {
    font-size: 1.18rem;
    line-height: 1.35;
  }

  .lang-modal-subtitle {
    font-size: 0.82rem;
    margin-bottom: 1.15rem;
  }

  .lang-modal-options {
    gap: 0.7rem;
  }

  .lang-option-card {
    padding: 0.95rem 0.8rem;
    border-radius: 16px;
  }

  .lang-brand-badge {
    font-size: 0.78rem;
    padding: 0.25rem 0.65rem;
    margin-bottom: 0.35rem;
  }

  .lang-option-name {
    font-size: 1.1rem;
  }

  .lang-option-desc {
    font-size: 0.74rem;
  }
}

