/* ==========================================================================
   GREEN GINI THEME — BLOCKS CSS
   Styles for all custom Gutenberg blocks and page sections
   ========================================================================== */

/* ═══════════════════════════════════════════════════════════════════════════
   BLOCK: HERO SLIDER (greengini/hero-slider)
   ══════════════════════════════════════════════════════════════════════════ */
.gg-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 7rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #030D0B;
  color: var(--gg-white);
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .gg-hero {
    min-height: 85vh;
    padding-top: 6rem;
    padding-bottom: 2rem;
  }
}

.gg-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gg-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease, transform 1.2s ease;
  transform: scale(1.04);
}

.gg-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.gg-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gg-hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(3, 13, 11, 0.90) 0%, rgba(3, 13, 11, 0.75) 50%, rgba(3, 13, 11, 0.40) 100%);
}

.gg-hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #030D0B 0%, transparent 60%, rgba(3, 13, 11, 0.60) 100%);
}

.gg-hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--gg-max-w);
  margin: 0 auto;
  padding: 0 var(--gg-px);
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.gg-hero-headline {
  padding-top: 2rem;
  max-width: 56rem;
  text-align: left;
}

@media (min-width: 640px) {
  .gg-hero-headline { padding-top: 3rem; }
}

.gg-hero-title {
  font-family: var(--gg-font) !important;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 300 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  color: #FFFFFF !important;
  margin: 0 0 1.5rem 0 !important;
}

.gg-hero-title .accent {
  color: var(--gg-emerald) !important;
  font-weight: 300 !important;
}

.gg-hero-subtitle {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--gg-gray-200);
  font-family: var(--gg-font) !important;
  font-size: clamp(0.9375rem, 1.4vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  max-width: 42rem;
}

.gg-hero-sub-p1 {
  color: #E5E7EB;
  margin: 0;
}

.gg-hero-sub-p2 {
  color: #9CA3AF;
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  margin: 0;
}

.gg-hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 3rem;
  width: 100%;
}

.gg-hero-arrows {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.gg-hero-arrow-btn,
button.gg-hero-arrow-btn {
  width: 2.5rem !important;
  height: 2.5rem !important;
  min-width: 2.5rem !important;
  min-height: 2.5rem !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  outline: none !important;
  box-shadow: none !important;
}

.gg-hero-arrow-btn:hover,
button.gg-hero-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #FFFFFF !important;
}

.gg-hero-thumb-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.gg-hero-thumbs {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  overflow-x: auto;
  max-width: 100%;
}

.gg-hero-thumb,
button.gg-hero-thumb {
  position: relative !important;
  width: 7.5rem !important;
  height: 11rem !important;
  min-width: 7.5rem !important;
  min-height: 11rem !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
  transition: border-color 0.3s ease, transform 0.3s ease !important;
  outline: none !important;
}

@media (min-width: 640px) {
  .gg-hero-thumb, button.gg-hero-thumb { width: 8.5rem !important; height: 12.5rem !important; min-width: 8.5rem !important; min-height: 12.5rem !important; }
}

@media (min-width: 1024px) {
  .gg-hero-thumb, button.gg-hero-thumb { width: 9.5rem !important; height: 13.5rem !important; min-width: 9.5rem !important; min-height: 13.5rem !important; }
}

.gg-hero-thumb:hover,
button.gg-hero-thumb:hover {
  border-color: var(--gg-emerald) !important;
}

.gg-hero-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
  display: block !important;
}

.gg-hero-thumb:hover img {
  transform: scale(1.1) !important;
}

/* Right-side dot indicators */
.gg-hero-dots-right {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .gg-hero-dots-right { right: 2.5rem; }
}

.gg-hero-dot,
button.gg-hero-dot {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 1.5rem !important;
  height: 1.5rem !important;
  min-width: 1.5rem !important;
  min-height: 1.5rem !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 50% !important;
}

.gg-hero-dot-inner {
  display: block !important;
  width: 0.75rem !important;
  height: 0.75rem !important;
  border-radius: 50% !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
}

.gg-hero-dot:hover .gg-hero-dot-inner {
  border-color: #FFFFFF !important;
}

.gg-hero-dot.active .gg-hero-dot-inner,
.gg-hero-dot-inner.active {
  width: 0.875rem !important;
  height: 0.875rem !important;
  border: 2px solid #FFFFFF !important;
  background: #FFFFFF !important;
  transform: scale(1.1) !important;
}

.gg-hero-mobile-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

@media (max-width: 640px) {
  .gg-hero-arrows { display: none !important; }
  .gg-hero-dots-right { display: none !important; }
  .gg-hero-mobile-dots { display: flex !important; }
  .gg-hero-thumb-wrapper { width: 100%; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOCK: TRUST MARQUEE (greengini/trust-marquee)
   ══════════════════════════════════════════════════════════════════════════ */
.gg-trust-bar {
  background-color: var(--gg-emerald);
  padding: 1.25rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.gg-trust-marquee-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  font-family: var(--gg-font) !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0A0A0A;
  white-space: nowrap;
}

.gg-trust-dot {
  color: #0A0A0A;
  font-weight: 900;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION: PROBLEM / INTRO (Static)
   ══════════════════════════════════════════════════════════════════════════ */
.gg-problem-section {
  padding: var(--gg-section-py) 0;
  background: var(--gg-white);
  border-bottom: 1px solid var(--gg-gray-100);
}

.gg-problem-images {
  position: relative;
  height: 420px;
}

@media (min-width: 768px) {
  .gg-problem-images { height: 500px; }
}

.gg-problem-img {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(243,244,246,0.8);
  transition: transform 0.3s ease, z-index 0s;
}

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

.gg-problem-img:hover {
  transform: scale(1.05);
  z-index: 30;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION: SERVICES LIST (Static)
   ══════════════════════════════════════════════════════════════════════════ */
.gg-services-section {
  padding: var(--gg-section-py) 0;
  background: var(--gg-white);
  border-bottom: 1px solid var(--gg-gray-100);
}

.gg-services-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .gg-services-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.gg-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gg-gray-500);
  text-decoration: none;
  transition: color 0.2s ease;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.gg-view-all-btn:hover {
  color: var(--gg-emerald);
}

.gg-view-all-btn .gg-arrow-icon {
  transition: transform 0.3s ease;
}

.gg-view-all-btn:hover .gg-arrow-icon {
  transform: rotate(-45deg);
}

.gg-service-row {
  position: relative;
  border-bottom: 1px solid rgba(229,231,235,0.8);
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 768px) {
  .gg-service-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.gg-service-row:hover {
  background: rgba(249,250,251,0.5);
}

.gg-service-row-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gg-emerald);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gg-service-row:hover .gg-service-row-bar {
  opacity: 1;
}

.gg-service-row-title {
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-weight: 500;
  color: var(--gg-gray-900);
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.gg-service-row:hover .gg-service-row-title {
  color: var(--gg-emerald);
}

.gg-service-row-desc {
  font-size: 0.875rem;
  color: var(--gg-gray-500);
  margin-top: 0.625rem;
  font-weight: 300;
  line-height: 1.6;
}

.gg-service-row-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.gg-service-row-img {
  width: 12rem;
  height: 8rem;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gg-gray-100);
}

@media (min-width: 640px) {
  .gg-service-row-img { width: 16rem; height: 9rem; }
}

.gg-service-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gg-service-row:hover .gg-service-row-img img {
  transform: scale(1.05);
}

.gg-service-row-arrow {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--gg-gray-100);
  border: 1px solid var(--gg-gray-200);
  color: var(--gg-gray-400);
  transition: all 0.3s ease;
}

.gg-service-row:hover .gg-service-row-arrow {
    background: var(--gg-emerald);
    border-color: var(--gg-emerald);
    color: var(--gg-dark);
  }
  
.gg-service-row-arrow svg {
    transition: transform 0.3s ease;
  }
  
.gg-service-row:hover .gg-service-row-arrow svg {
    transform: rotate(-45deg);
  }

/* ═══════════════════════════════════════════════════════════════════════════
   BLOCK: STATS COUNTER (greengini/stats-counter)
   ══════════════════════════════════════════════════════════════════════════ */
.gg-stats-section {
  padding: var(--gg-section-py) 0;
  background: var(--gg-surface);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.gg-stats-bg-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 58%;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .gg-stats-bg-image {
    width: 62%;
  }
}

.gg-stats-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  mix-blend-mode: normal;
  filter: contrast(0.92) brightness(0.9);
}

.gg-stats-bg-gradient-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #101318 0%, rgba(16,19,24,0.92) 28%, rgba(16,19,24,0.72) 60%, rgba(16,19,24,0.55) 100%);
}

.gg-stats-bg-gradient-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,19,24,0.85) 0%, rgba(16,19,24,0.3) 50%, transparent 100%);
}

.gg-stats-content {
  position: relative;
  z-index: 10;
  max-width: var(--gg-max-w);
  margin: 0 auto;
  padding: 0 var(--gg-px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  gap: 3rem;
}

.gg-stats-heading {
  max-width: 36rem;
}

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

@media (min-width: 1024px) {
  .gg-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.gg-stat-item {
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 2rem;
}

.gg-stat-item:last-child { border-right: none; }

@media (max-width: 1024px) {
  .gg-stat-item { border-right: none; }
}

.gg-stat-num {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gg-white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.gg-stat-label {
  font-size: 0.8125rem;
  color: var(--gg-gray-300);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOCK: PROCESS STEPS (greengini/process-steps)
   ══════════════════════════════════════════════════════════════════════════ */
.gg-process-section {
  padding: var(--gg-section-py) 0;
  background: #0A0A0A;
  color: var(--gg-white);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.gg-process-grid-bg {
  display: none !important;
}

.gg-process-rings {
  position: absolute;
  right: clamp(1.5rem, 6vw, 6rem);
  top: 52%;
  transform: translateY(-50%);
  width: clamp(340px, 46vw, 680px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1023px) {
  .gg-process-rings {
    right: 50%;
    transform: translate(50%, -50%);
    width: clamp(280px, 75vw, 460px);
  }
}

.gg-process-ring {
  position: absolute;
  border-radius: 50%;
}

.gg-process-ring-outer {
  inset: 0;
  border: 1px solid rgba(17,193,157,0.14);
  background: radial-gradient(circle, rgba(17,193,157,0.07) 0%, rgba(4,108,99,0.03) 55%, transparent 75%);
}

.gg-process-ring-mid {
  inset: 16%;
  border: 1px solid rgba(17,193,157,0.24);
  background: radial-gradient(circle, rgba(17,193,157,0.14) 0%, rgba(4,108,99,0.07) 60%, transparent 80%);
}

.gg-process-ring-inner {
  inset: 32%;
  border: 1px solid rgba(17,193,157,0.38);
  background: radial-gradient(circle at 45% 45%, rgba(17,193,157,0.32) 0%, rgba(4,108,99,0.18) 65%, rgba(10,10,10,0.5) 100%);
  box-shadow: 0 0 55px rgba(17,193,157,0.22), inset 0 0 45px rgba(17,193,157,0.25);
}

.gg-process-core {
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17,193,157,0.45) 0%, rgba(4,108,99,0.2) 50%, transparent 100%);
  filter: blur(35px);
  opacity: 0.85;
}

.gg-process-content {
  position: relative;
  z-index: 10;
  max-width: var(--gg-max-w);
  margin: 0 auto;
  padding: 0 var(--gg-px);
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.gg-process-header {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .gg-process-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

.gg-process-step-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.gg-process-step-pill {
  padding: 0.375rem 0.875rem;
  border-radius: var(--gg-radius-full);
  font-size: 0.75rem;
  font-weight: 400;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--gg-gray-400);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.gg-process-step-pill.active {
  background: var(--gg-emerald);
  color: var(--gg-dark);
  border-color: var(--gg-emerald);
  font-weight: 700;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(17,193,157,0.4);
}

.gg-process-step-pill:hover:not(.active) {
  border-color: rgba(255,255,255,0.3);
  color: var(--gg-white);
}

.gg-process-active-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 380px;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
  overflow: visible;
}

.gg-process-active-content.transitioning-out {
  opacity: 0;
  transform: translateX(-30px);
}

.gg-process-active-content.transitioning-in {
  opacity: 0;
  transform: translateX(30px);
  transition: none;
}

@media (min-width: 1024px) {
  .gg-process-active-content {
    grid-template-columns: 1fr 1.35fr;
    gap: 3rem;
  }
}

.gg-process-big-num-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

@media (min-width: 1024px) {
  .gg-process-big-num-wrap {
    justify-content: flex-end;
    padding-right: clamp(1.5rem, 3.5vw, 4.5rem);
  }
}

.gg-process-big-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: clamp(6.5rem, 14vw, 14rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
  display: inline-block;
  padding-right: 0.18em;
  padding-bottom: 0.12em;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0.85) 45%, rgba(17,193,157,0.45) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.8));
  overflow: visible;
}

.gg-process-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 36rem;
}

.gg-process-progress {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  font-family: var(--gg-font);
  color: var(--gg-gray-400);
}

.gg-progress-bar-wrap {
  width: 8rem;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  overflow: hidden;
}

.gg-progress-bar-fill {
  height: 100%;
  background: var(--gg-emerald);
  border-radius: 9999px;
  transition: width 0.5s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOCK: BEFORE/AFTER SLIDER (greengini/before-after-slider)
   ══════════════════════════════════════════════════════════════════════════ */
.gg-baa-section {
  padding: var(--gg-section-py) 0;
  background: var(--gg-white);
  border-bottom: 1px solid var(--gg-gray-100);
}

.gg-baa-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 380px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: #111111;
  border: 1px solid var(--gg-gray-200);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

@media (min-width: 768px) {
  .gg-baa-slider { height: 420px; }
}

.gg-baa-after-img,
.gg-baa-before-wrap {
  position: absolute;
  inset: 0;
}

.gg-baa-after-img img,
.gg-baa-before-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.gg-baa-before-wrap {
  overflow: hidden;
  left: 0;
  right: auto;
  width: 50%;
  transition: width 0s;
}

.gg-baa-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gg-emerald);
  z-index: 20;
  cursor: ew-resize;
  left: 50%;
}

.gg-baa-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--gg-emerald);
  color: var(--gg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  pointer-events: none;
}

.gg-baa-label {
  position: absolute;
  top: 1.5rem;
  z-index: 10;
  padding: 0.25rem 0.75rem;
  border-radius: var(--gg-radius-full);
  font-size: 0.625rem;
  font-family: var(--gg-font);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gg-baa-label-after {
  right: 1.5rem;
  background: rgba(17,193,157,0.9);
  color: var(--gg-dark);
}

.gg-baa-label-before {
  left: 1.5rem;
  background: rgba(0,0,0,0.7);
  color: var(--gg-white);
}

.gg-baa-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  background: rgba(15,15,15,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 0.375rem 1rem;
  border-radius: var(--gg-radius-full);
  font-size: 0.625rem;
  font-family: var(--gg-font);
  color: var(--gg-gray-300);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOCK: TESTIMONIALS CAROUSEL (greengini/testimonials-carousel)
   ══════════════════════════════════════════════════════════════════════════ */
.gg-testimonials-section {
  padding: var(--gg-section-py) 0;
  background: var(--gg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.gg-testimonials-content {
  max-width: var(--gg-max-w);
  margin: 0 auto;
  padding: 0 var(--gg-px);
  text-align: center;
  position: relative;
  z-index: 10;
}

.gg-testimonial-card {
  max-width: 56rem;
  margin: 0 auto;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gg-testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(17,193,157,0.1);
  border: 1px solid rgba(17,193,157,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gg-emerald);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.gg-testimonial-quote {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--gg-gray-200);
  line-height: 1.6;
  font-style: italic;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .gg-testimonial-quote { padding: 0 3rem; }
}

.gg-testimonial-meta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.gg-testimonial-name {
  font-weight: 600;
  color: var(--gg-white);
  font-size: 0.875rem;
}

.gg-testimonial-location {
  font-size: 0.5625rem;
  color: var(--gg-emerald);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gg-testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 2.5rem;
}

.gg-testimonial-dot {
  height: 0.5rem;
  border-radius: var(--gg-radius-full);
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  width: 0.5rem;
}

.gg-testimonial-dot.active {
  width: 1.5rem;
  background: var(--gg-emerald);
}

.gg-testimonial-dot:hover:not(.active) {
  background: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOCK: SERVICE AREAS MAP (greengini/service-areas-map)
   ══════════════════════════════════════════════════════════════════════════ */
.gg-areas-section {
  padding: var(--gg-section-py) 0;
  background: var(--gg-white);
  border-bottom: 1px solid var(--gg-gray-100);
}

.gg-areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .gg-areas-grid { grid-template-columns: 5fr 7fr; align-items: stretch; }
}

.gg-province-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: space-between;
}

.gg-province-btn {
  text-align: left;
  padding: 0.625rem 0.875rem;
  border: 1px solid rgba(229,231,235,0.8);
  background: #FAFAFA;
  cursor: pointer;
  transition: all 0.2s ease;
  display: block;
  width: 100%;
}

.gg-province-btn:hover,
.gg-province-btn.active-province {
  border-color: var(--gg-emerald);
  background: rgba(17,193,157,0.05);
  transform: translateX(4px);
}

.gg-province-btn:hover.coming-soon,
.gg-province-btn.coming-soon:hover {
  border-color: var(--gg-gray-400);
  background: var(--gg-gray-100);
}

.gg-province-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gg-province-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gg-gray-900);
}

.gg-province-rating {
  font-size: 0.6875rem;
  color: #D97706;
  font-weight: 700;
}

.gg-province-services {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gg-emerald);
  margin-right: 0.5rem;
}

.gg-province-soon {
  font-size: 0.5625rem;
  background: rgba(229,231,235,0.7);
  color: var(--gg-gray-500);
  padding: 0.125rem 0.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gg-province-areas {
  font-size: 0.6875rem;
  color: var(--gg-gray-600);
  margin-top: 0.125rem;
}

.gg-province-areas.inactive { color: var(--gg-gray-400); }

.gg-map-container {
  min-height: 460px;
  background: #F9FBFB;
  border: 1px solid var(--gg-gray-200);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .gg-map-container { min-height: 540px; }
}

.gg-map-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.gg-map-pin {
  position: absolute;
  z-index: 20;
  transition: transform 0.3s ease;
}

.gg-map-pin-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gg-map-pin-ring {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--gg-emerald);
  opacity: 0.3;
}

.gg-map-pin-core {
  position: relative;
  border-radius: 50%;
  width: 0.875rem;
  height: 0.875rem;
  background: var(--gg-emerald);
  border: 1px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.gg-map-pin-core.inactive {
  background: var(--gg-gray-400);
}

.gg-map-pin:hover .gg-map-pin-core {
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid var(--gg-emerald);
  background: white;
  transform: scale(1.25);
}

.gg-map-tooltip {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(17,193,157,0.4);
  background: #111827;
  color: var(--gg-white);
  font-size: 0.75rem;
  z-index: 30;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateX(-50%) scale(0.9) translateY(8px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.gg-map-pin:hover .gg-map-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1) translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION: CTA CALLOUT (Static)
   ══════════════════════════════════════════════════════════════════════════ */
.gg-cta-section {
  padding: 7rem 0;
  background: linear-gradient(to bottom, #0F0F0F, #0F0F0F, rgba(4,108,99,0.2));
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.gg-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: rgba(17,193,157,0.1);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.gg-footer {
  background: #0D0D0D;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.gg-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .gg-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .gg-footer-grid { grid-template-columns: 4fr 2fr 2fr 4fr; }
}

.gg-footer-brand-desc {
  font-size: 0.875rem;
  color: var(--gg-gray-400);
  line-height: 1.6;
  font-weight: 300;
}

.gg-footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.gg-footer-social-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: all 0.2s ease;
}

.gg-footer-social-btn:hover {
  background: rgba(17,193,157,0.2);
  border-color: rgba(17,193,157,0.4);
  transform: scale(1.05);
}

.gg-footer-social-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gg-footer-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gg-emerald);
  display: block;
  margin-bottom: 1.5rem;
}

.gg-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.gg-footer-links li a {
  font-size: 0.875rem;
  color: var(--gg-gray-300);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  display: inline-block;
}

.gg-footer-links li a:hover {
  color: var(--gg-white);
}

.gg-footer-newsletter-form {
  display: flex;
  align-items: stretch;
  max-width: 28rem;
}

.gg-footer-email-input {
  background: #222222;
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  font-size: 0.875rem;
  color: var(--gg-white);
  padding: 0.625rem 1.25rem;
  border-radius: 9999px 0 0 9999px;
  outline: none;
  flex: 1;
  min-width: 0;
  font-family: var(--gg-font) !important;
  font-weight: 300;
  transition: border-color 0.3s ease;
}

.gg-footer-email-input:focus {
  border-color: rgba(17,193,157,0.5);
}

.gg-footer-email-input::placeholder { color: var(--gg-gray-500); }

.gg-footer-subscribe-btn {
  border-radius: 0 9999px 9999px 0;
  padding: 0.625rem 1.5rem;
  flex-shrink: 0;
}

.gg-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--gg-gray-400);
  font-weight: 300;
}

@media (min-width: 768px) {
  .gg-footer-bottom { flex-direction: row; }
}

.gg-footer-legal {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.gg-footer-legal a {
  color: var(--gg-gray-400);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gg-footer-legal a:hover { color: var(--gg-white); }

/* Page Hero (interior pages) */
.gg-page-hero {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  background: var(--gg-hero-bg);
  overflow: hidden;
  padding-top: 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .gg-page-hero { height: 600px; }
}

.gg-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gg-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gg-page-hero-overlay-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(3,13,11,0.95), rgba(3,13,11,0.80), rgba(3,13,11,0.40));
}

.gg-page-hero-overlay-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #030D0B, transparent, rgba(3,13,11,0.60));
}

.gg-page-hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--gg-max-w);
  margin: 0 auto;
  padding: 0 var(--gg-px);
  width: 100%;
}

/* Services Page */
.gg-services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  background: rgba(255,255,255,0.05);
  padding: 0.375rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  overflow-x: auto;
}

.gg-service-tab {
  flex: 1;
  min-width: 130px;
  padding: 0.75rem 1.25rem;
  border-radius: var(--gg-radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  color: var(--gg-gray-400);
  border: none;
  background: transparent;
}

.gg-service-tab.active {
  background: #000000;
  color: var(--gg-emerald);
}

.gg-service-tab:hover:not(.active) {
  color: var(--gg-white);
  background: rgba(255,255,255,0.05);
}

/* Quote Portal */
.gg-quote-section {
  padding: var(--gg-section-py) 0;
  background: var(--gg-surface-2);
  min-height: 80vh;
}

.gg-quote-card {
  background: var(--gg-surface-2);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem;
}

.gg-price-display {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gg-emerald);
  letter-spacing: -0.03em;
}

/* Contact Page */
.gg-contact-section {
  padding: var(--gg-section-py) 0;
  background: var(--gg-dark);
}

.gg-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .gg-contact-grid { grid-template-columns: 5fr 7fr; }
}

.gg-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--gg-surface-2);
}

/* About Page */
.gg-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gg-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .gg-team-grid { grid-template-columns: repeat(3, 1fr); }
}

.gg-team-card {
  background: var(--gg-surface-2);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.gg-team-card:hover {
  border-color: rgba(17,193,157,0.3);
}

.gg-team-img {
  height: 16rem;
  overflow: hidden;
}

.gg-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gg-team-card:hover .gg-team-img img {
  transform: scale(1.05);
}

.gg-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gg-timeline-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}

.gg-timeline-line {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.gg-timeline-dot {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(17,193,157,0.1);
  border: 1px solid rgba(17,193,157,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gg-emerald);
  flex-shrink: 0;
}

.gg-timeline-connector {
  width: 1px;
  flex: 1;
  background: rgba(255,255,255,0.08);
  margin-top: 0.25rem;
}

/* Blog */
.gg-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gg-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .gg-blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.gg-blog-card {
  background: var(--gg-surface-2);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.gg-blog-card:hover {
  border-color: rgba(17,193,157,0.3);
  transform: translateY(-2px);
}

.gg-blog-card-img {
  height: 12rem;
  overflow: hidden;
}

.gg-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gg-blog-card:hover .gg-blog-card-img img {
  transform: scale(1.05);
}

.gg-blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Projects */
.gg-projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gg-projects-grid { grid-template-columns: repeat(2, 1fr); }
}

.gg-project-card {
  background: var(--gg-surface-2);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.gg-project-card:hover {
  border-color: rgba(17,193,157,0.3);
  transform: translateY(-2px);
}

.gg-project-card-img {
  height: 15rem;
  overflow: hidden;
}

.gg-project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gg-project-card:hover .gg-project-card-img img {
  transform: scale(1.05);
}

/* FAQ Accordion */
.gg-faq-item {
  background: var(--gg-surface-2);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.gg-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--gg-white);
}

.gg-faq-trigger-text {
  font-size: 0.75rem;
  font-weight: 600;
}

.gg-faq-chevron {
  color: var(--gg-emerald);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.gg-faq-item.open .gg-faq-chevron {
  transform: rotate(180deg);
}

.gg-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.gg-faq-item.open .gg-faq-body {
  max-height: 300px;
}

.gg-faq-body-inner {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem;
  color: var(--gg-gray-400);
  line-height: 1.7;
  padding-top: 1rem;
}

/* Privacy / Terms */
.gg-legal-section {
  padding: var(--gg-section-py) 0;
  background: var(--gg-dark);
}

.gg-legal-content {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 var(--gg-px);
}

.gg-legal-content h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gg-white);
  margin: 2.5rem 0 0.875rem;
}

.gg-legal-content p {
  font-size: 0.9375rem;
  color: var(--gg-gray-400);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.gg-legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.gg-legal-content ul li {
  font-size: 0.9375rem;
  color: var(--gg-gray-400);
  line-height: 1.75;
  margin-bottom: 0.375rem;
}
