/* ============================================
   Greenlab Coworking Space - Dark Luxe Theme v2
   WordPress-ready CSS with gl- prefix
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-bg: #0D1117;
  --color-bg-alt: #161B22;
  --color-bg-card: #161B22;
  --color-primary: #00C853;
  --color-primary-dim: rgba(0, 200, 83, 0.15);
  --color-primary-glow: rgba(0, 200, 83, 0.25);
  --color-secondary: #FFB300;
  --color-text: #F0F0F0;
  --color-text-light: #9CA3AF;
  --color-text-muted: #6B7280;
  --color-white: #F0F0F0;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-hover: rgba(0, 200, 83, 0.4);
  --font-heading: 'Noto Sans HK', 'PingFang HK', sans-serif;
  --font-body: 'Noto Sans HK', 'PingFang HK', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(0, 200, 83, 0.15);
  --shadow-glow-strong: 0 0 30px rgba(0, 200, 83, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: #33D470; }
ul, ol { list-style: none; }

/* --- Container --- */
.gl-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--color-white);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

/* --- Buttons --- */
.gl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  position: relative;
}
.gl-btn-primary {
  background: var(--color-primary);
  color: #0D1117;
}
.gl-btn-primary:hover {
  background: #33D470;
  color: #0D1117;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
}
.gl-btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.gl-btn-outline:hover {
  background: var(--color-primary);
  color: #0D1117;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.gl-btn-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}
.gl-btn-white:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}
.gl-btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.gl-btn-whatsapp:hover {
  background: #1EBE5A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}
.gl-btn-sm { padding: 10px 24px; font-size: 0.9rem; }
.gl-btn-gold {
  background: linear-gradient(135deg, #FFB300, #FF8F00);
  color: #0D1117;
}
.gl-btn-gold:hover {
  background: linear-gradient(135deg, #FFC107, #FFB300);
  color: #0D1117;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 179, 0, 0.3);
}

/* Glow pulse animation for CTA buttons */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 200, 83, 0.2); }
  50% { box-shadow: 0 0 20px rgba(0, 200, 83, 0.4); }
}
.gl-btn-glow {
  animation: glowPulse 2s ease-in-out infinite;
}

/* --- Section Base --- */
.gl-section { padding: 40px 0; }
.gl-section-alt { background: var(--color-bg-alt); }
.gl-section-header { text-align: center; margin-bottom: 56px; }
.gl-section-header h2 { margin-bottom: 12px; }
.gl-section-header p { color: var(--color-text-light); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.gl-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.gl-accent-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ============================
   HEADER / NAVIGATION
   ============================ */
.gl-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition);
}
.gl-header.scrolled {
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.gl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.gl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.gl-logo:hover { color: var(--color-primary); }
.gl-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D1117;
  box-shadow: 0 0 12px rgba(0, 200, 83, 0.3);
}
.gl-nav { display: flex; align-items: center; gap: 28px; }
.gl-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}
.gl-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
  box-shadow: 0 0 6px rgba(0, 200, 83, 0.5);
}
.gl-nav a:hover,
.gl-nav a.active { color: var(--color-primary); }
.gl-nav a:hover::after,
.gl-nav a.active::after { width: 100%; }
.gl-header-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile Menu */
.gl-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}
.gl-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
}
.gl-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.gl-menu-toggle.active span:nth-child(2) { opacity: 0; }
.gl-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.gl-mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(13, 17, 23, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  border-bottom: 1px solid var(--color-border);
}
.gl-mobile-nav.active { display: flex; }
.gl-mobile-nav a {
  font-size: 1.05rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-light);
  transition: all var(--transition);
}
.gl-mobile-nav a:hover { color: var(--color-primary); padding-left: 8px; }
.gl-mobile-nav a.active { color: var(--color-primary); font-weight: 600; }
.gl-mobile-nav .gl-btn { margin-top: 12px; text-align: center; justify-content: center; }
.gl-mobile-nav .gl-btn-whatsapp { color: #fff; }
.gl-mobile-nav .gl-btn-whatsapp:hover { color: #fff; }

@media (max-width: 900px) {
  .gl-nav, .gl-header-cta { display: none; }
  .gl-menu-toggle { display: flex; }
}

/* ============================
   HERO (Home)
   ============================ */
.gl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}
.gl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gl-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 17, 23, 0.92) 0%,
    rgba(13, 17, 23, 0.75) 50%,
    rgba(13, 17, 23, 0.85) 100%
  );
}
/* Animated gradient overlay */
.gl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(0, 200, 83, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 179, 0, 0.05) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}
/* Green accent line */
.gl-hero-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  z-index: 3;
  box-shadow: 0 0 15px rgba(0, 200, 83, 0.5);
}
.gl-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 72px;
}
.gl-hero-content { color: var(--color-white); }
.gl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.gl-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.gl-hero h1 span {
  background: linear-gradient(135deg, var(--color-primary), #66FFB2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gl-hero-desc {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
  font-weight: 300;
}
.gl-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.gl-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}
.gl-hero-stat { text-align: center; }
.gl-hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  text-shadow: 0 0 20px rgba(0, 200, 83, 0.3);
}
.gl-hero-stat-label { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 4px; font-weight: 400; }
.gl-hero-visual { position: relative; display: flex; justify-content: center; }
.gl-hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 200, 83, 0.1);
}
.gl-hero-img-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.gl-hero-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 200, 83, 0.15);
  pointer-events: none;
}

@media (max-width: 768px) {
  .gl-hero { min-height: auto; padding: 120px 0 60px; }
  .gl-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .gl-hero-desc { margin-left: auto; margin-right: auto; }
  .gl-hero-btns { justify-content: center; }
  .gl-hero-stats { justify-content: center; gap: 24px; }
  .gl-hero-visual { order: -1; }
  .gl-hero-img-wrapper img { height: 280px; }
}

/* ============================
   PAGE HERO (Sub-pages)
   ============================ */
.gl-page-hero {
  position: relative;
  padding: 160px 0 80px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.gl-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.92), rgba(22, 27, 34, 0.88));
}
.gl-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  box-shadow: 0 0 15px rgba(0, 200, 83, 0.5);
}
.gl-page-hero .gl-container { position: relative; z-index: 1; }
.gl-page-hero h1 {
  color: var(--color-white);
  margin-bottom: 16px;
}
.gl-page-hero p {
  color: var(--color-text-light);
  font-size: 1.15rem;
  max-width: 600px;
  font-weight: 300;
}
.gl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.gl-breadcrumb a { color: var(--color-primary); }
.gl-breadcrumb span { color: white; }

/* ============================
   DARK CARDS (base style)
   ============================ */
.gl-dark-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.gl-dark-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* ============================
   GALLERY GRID
   ============================ */
.gl-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.gl-gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.gl-gallery-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}
.gl-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gl-gallery-item:hover img { transform: scale(1.05); }
.gl-gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(13, 17, 23, 0.9));
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--transition);
}
.gl-gallery-item:hover .gl-gallery-item-caption { opacity: 1; }

.gl-gallery-large {
  grid-template-columns: repeat(3, 1fr);
}
.gl-gallery-large .gl-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 767px) {
  .gl-desktop-only { display: none; }
}
@media (max-width: 768px) {
  .gl-gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gl-gallery-large { grid-template-columns: 1fr 1fr; }
  .gl-gallery-large .gl-gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 480px) {
  .gl-gallery { grid-template-columns: 1fr; }
  .gl-gallery-large { grid-template-columns: 1fr; }
  .gl-gallery-large .gl-gallery-item:first-child { grid-column: span 1; }
}

/* ============================
   TWO-COLUMN LAYOUT
   ============================ */
.gl-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.gl-two-col-reverse { direction: rtl; }
.gl-two-col-reverse > * { direction: ltr; }
.gl-two-col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.gl-two-col-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.gl-two-col-text h3 { margin-bottom: 16px; }
.gl-two-col-text p { color: var(--color-text-light); line-height: 1.8; font-weight: 300; }
@media (max-width: 768px) {
  .gl-two-col { grid-template-columns: 1fr; gap: 32px; }
  .gl-two-col-reverse { direction: ltr; }
  .gl-two-col-img img { height: 280px; }
}

/* ============================
   ASYMMETRIC GRID
   ============================ */
.gl-asym-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.gl-asym-grid-reverse {
  grid-template-columns: 0.8fr 1.2fr;
}
@media (max-width: 768px) {
  .gl-asym-grid,
  .gl-asym-grid-reverse { grid-template-columns: 1fr; }
}

/* ============================
   SPACE CARDS
   ============================ */
.gl-spaces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.gl-space-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.gl-space-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.gl-space-card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.gl-space-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gl-space-card:hover .gl-space-card-img img { transform: scale(1.05); }
.gl-space-card-body { padding: 28px; }
.gl-space-card-body h3 { margin-bottom: 10px; }
.gl-space-card-body p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}
.gl-space-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.gl-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--color-primary-dim);
  color: var(--color-primary);
  border: 1px solid rgba(0, 200, 83, 0.2);
}

/* ============================
   FEATURES / HIGHLIGHTS
   ============================ */
.gl-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.gl-feature-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  border: 1px solid var(--color-border);
}
.gl-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-border-hover);
}
.gl-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-primary-dim);
  border: 1px solid rgba(0, 200, 83, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.gl-feature-card h3 { margin-bottom: 10px; }
.gl-feature-card p { color: var(--color-text-light); font-size: 0.95rem; line-height: 1.7; font-weight: 300; }

/* Feature card with image */
.gl-feature-card-img {
  padding: 0;
  overflow: hidden;
}
.gl-feature-card-img .gl-feature-img {
  height: 200px;
  overflow: hidden;
}
.gl-feature-card-img .gl-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gl-feature-card-img:hover .gl-feature-img img { transform: scale(1.05); }
.gl-feature-card-img .gl-feature-card-content { padding: 24px; }

/* ============================
   TENANTS / INDUSTRIES
   ============================ */
.gl-tenants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.gl-tenant-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.gl-tenant-card:hover {
  box-shadow: var(--shadow-glow);
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}
.gl-tenant-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-primary-dim);
  border: 1px solid rgba(0, 200, 83, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gl-tenant-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.gl-tenant-card p { color: var(--color-text-light); font-size: 0.9rem; line-height: 1.7; font-weight: 300; }

/* ============================
   FACILITIES
   ============================ */
.gl-facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.gl-facility-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.gl-facility-item:hover {
  box-shadow: var(--shadow-glow);
  border-color: var(--color-border-hover);
}
.gl-facility-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary-dim);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gl-facility-item h4 { font-size: 1rem; margin-bottom: 4px; font-weight: 700; }
.gl-facility-item p { font-size: 0.9rem; color: var(--color-text-light); font-weight: 300; }

/* ============================
   LOCATION / TRANSPORT
   ============================ */
.gl-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.gl-location-list li,
.gl-location-list > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  font-weight: 300;
}
.gl-location-list li:last-child,
.gl-location-list > div:last-child { border-bottom: none; }
.gl-location-name { min-width: 6em; }
.gl-location-pin {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary-dim);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {                                                
  .gl-location-pin { 
    display: inline;
    margin-right: 5px;
   }                                      
} 
.gl-location-time {
  margin-left: auto;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}
.gl-map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.gl-map-placeholder iframe { width: 100%; height: 100%; border: 0; filter: invert(0.9) hue-rotate(180deg) brightness(0.9) contrast(1.1); }
@media (max-width: 768px) {
  .gl-location-grid { grid-template-columns: 1fr; }
}

/* ============================
   PRICING
   ============================ */
.gl-pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-glow-strong);
}
.gl-pricing-card h3 { font-size: 1.6rem; margin-bottom: 24px; }
.gl-pricing-list { text-align: left; margin-bottom: 32px; }
.gl-pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-light);
  font-weight: 300;
}
.gl-pricing-list li:last-child { border-bottom: none; }
.gl-pricing-check { color: var(--color-primary); font-weight: 700; }
@media (max-width: 768px) {
  .gl-pricing-card { padding: 24px; }
}

/* ============================
   CTA
   ============================ */
.gl-cta {
  text-align: center;
  background: linear-gradient(135deg, #003D19, #00662B, #00C853);
  color: var(--color-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.gl-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 200, 83, 0.15) 0%, transparent 70%);
}
.gl-cta .gl-container { position: relative; z-index: 1; }
.gl-cta h2 { color: var(--color-white); margin-bottom: 16px; }
.gl-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
.gl-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================
   CONTACT
   ============================ */
.gl-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.gl-contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.gl-contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-primary-dim);
  border: 1px solid rgba(0, 200, 83, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gl-contact-info-item h4 { margin-bottom: 4px; font-size: 1rem; font-weight: 700; }
.gl-contact-info-item p { color: var(--color-text-light); font-size: 0.95rem; font-weight: 300; }
.gl-contact-info-item a { color: var(--color-primary); }
@media (max-width: 768px) {
  .gl-contact-grid { grid-template-columns: 1fr; }
}

/* ============================
   FOOTER
   ============================ */
.gl-footer {
  background: #0A0D12;
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 24px;
  border-top: 1px solid var(--color-border);
}
.gl-footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.gl-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.gl-footer-brand p {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}
.gl-footer h4 { color: var(--color-white); font-size: 1rem; margin-bottom: 16px; font-weight: 700; }
.gl-footer-links li { margin-bottom: 10px; }
.gl-footer-links a { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; transition: color var(--transition); }
.gl-footer-links a:hover { color: var(--color-primary); }
.gl-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.gl-footer-contact svg { color: var(--color-primary); }
.gl-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .gl-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gl-footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ============================
   LIGHTBOX
   ============================ */
.gl-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.gl-lightbox.active { display: flex; }
.gl-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}
.gl-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  background: rgba(22, 27, 34, 0.8);
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.gl-lightbox-close:hover {
  background: var(--color-primary);
  color: #0D1117;
  border-color: var(--color-primary);
}

/* ============================
   STAT COUNTER SECTION
   ============================ */
.gl-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gl-stat-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.gl-stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  text-shadow: 0 0 20px rgba(0, 200, 83, 0.3);
}
.gl-stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 8px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .gl-stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gl-stats-row { grid-template-columns: 1fr; }
}

/* --- Why Greenlab Section --- */
.gl-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gl-why-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
}
.gl-why-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.gl-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--color-primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.gl-why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.gl-why-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .gl-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gl-why-grid { grid-template-columns: 1fr; }
}

/* ============================
   UTILITIES
   ============================ */
.gl-text-center { text-align: center; }
.gl-mb-0 { margin-bottom: 0; }
.gl-mt-40 { margin-top: 40px; }
.gl-mt-60 { margin-top: 60px; }
.gl-pt-0 { padding-top: 0; }
.gl-pb-0 { padding-bottom: 0; }

/* Fade-in animation */
.gl-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.gl-fade-in.visible { opacity: 1; transform: translateY(0); }

/* Fade-in with delay variants */
.gl-fade-in-d1 { transition-delay: 0.1s; }
.gl-fade-in-d2 { transition-delay: 0.2s; }
.gl-fade-in-d3 { transition-delay: 0.3s; }
.gl-fade-in-d4 { transition-delay: 0.4s; }

/* Subtle particle background */
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  50% { transform: translateY(-100px) translateX(50px); }
}

/* About page values list */
.gl-values-list { margin-top: 24px; }
.gl-values-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--color-text-light);
  font-weight: 300;
}
.gl-values-list li svg { flex-shrink: 0; margin-top: 4px; color: var(--color-primary); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.25); }

/* Selection color */
::selection { background: rgba(0, 200, 83, 0.3); color: var(--color-white); }

/* ============================
   WORDPRESS OVERRIDES
   ============================ */

/* wp_nav_menu outputs <li><a> structure - adapt for header nav */
.gl-nav .menu-item { display: inline-block; }
.gl-nav .menu-item a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
  text-decoration: none;
}
.gl-nav .menu-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
  box-shadow: 0 0 6px rgba(0, 200, 83, 0.5);
}
.gl-nav .menu-item a:hover,
.gl-nav .menu-item.current-menu-item a { color: var(--color-primary); }
.gl-nav .menu-item a:hover::after,
.gl-nav .menu-item.current-menu-item a::after { width: 100%; }
.gl-nav ul { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }

/* Mobile nav WordPress menu items */
.gl-mobile-nav .menu-item { display: block; }
.gl-mobile-nav .menu-item a {
  font-size: 1.05rem;
  padding: 14px 0;
  display: block;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-light);
  transition: all var(--transition);
  text-decoration: none;
}
.gl-mobile-nav .menu-item a:hover { color: var(--color-primary); padding-left: 8px; }
.gl-mobile-nav .menu-item.current-menu-item a { color: var(--color-primary); font-weight: 600; }
.gl-mobile-nav ul { list-style: none; margin: 0; padding: 0; }

/* Footer nav WordPress menu items */
.gl-footer-links .menu-item { margin-bottom: 10px; }
.gl-footer-links .menu-item a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
  text-decoration: none;
}
.gl-footer-links .menu-item a:hover { color: var(--color-primary); }
.gl-footer-links ul { list-style: none; margin: 0; padding: 0; }

/* WordPress admin bar spacing */
body.admin-bar .gl-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .gl-header { top: 46px; }
}

/* WordPress image alignment */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin: 0 auto; }
img.alignleft, img.alignright, img.aligncenter { margin-bottom: 1em; }
