/* ==========================================================================
   GREENTEK ACADEMY - EDITORIAL HERO SECTION STYLESHEET
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --bg-main: #F4F2E9;
  --bg-card: #FFFFFF;
  --color-dark-green: #1F401A;
  --color-accent-green: #254B20;
  --color-text-main: #141713;
  --color-text-muted: #4A5045;
  --color-border-subtle: #D8DCD0;
  --color-icon-circle: #E2E7DB;
  
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-primary);
  background-color: var(--bg-main);
  color: var(--color-text-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-main);
}

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

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

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

/* --- Layout Container --- */
.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 36px;
}

/* --- Ambient Foliage Shadow Overlay --- */
.foliage-shadow {
  position: fixed;
  top: -40px;
  right: -40px;
  width: 650px;
  height: 550px;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse at top right, rgba(31, 64, 26, 0.14) 0%, rgba(31, 64, 26, 0.04) 45%, transparent 70%);
  mask-image: radial-gradient(ellipse at top right, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 25%, transparent 80%);
  animation: foliageSway 14s ease-in-out infinite;
  transform-origin: top right;
}

@keyframes foliageSway {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(1.8deg) scale(1.04);
  }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.navbar-header {
  padding: 24px 0 16px;
  position: relative;
  z-index: 10;
}

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

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-text-main);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-dark-green);
}

.nav-link.active {
  color: var(--color-dark-green);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-dark-green);
  border-radius: 2px;
}

/* Primary Menu GREENTEK ONLINE Button */
.nav-link.nav-link-online {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: rgba(183, 216, 74, 0.22);
  color: var(--color-dark-green, #063414);
  padding: 6px 14px;
  border-radius: var(--radius-pill, 100px);
  border: 1px solid rgba(183, 216, 74, 0.45);
  font-weight: 800;
  letter-spacing: 0.6px;
  transition: all 0.2s ease-out;
}

.nav-link.nav-link-online:hover {
  background-color: var(--color-lime-accent, #B7D84A);
  color: var(--color-dark-green, #063414);
  border-color: var(--color-lime-accent, #B7D84A);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(183, 216, 74, 0.3);
}

.nav-link.nav-link-online::after {
  display: none;
}

.nav-shopping-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-link.nav-link-online:hover .nav-shopping-icon {
  transform: rotate(-8deg) scale(1.1);
}

.nav-ext-icon {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  transition: transform 0.2s ease;
  opacity: 0.8;
}

.nav-link.nav-link-online:hover .nav-ext-icon {
  transform: translate(1px, -1px);
  opacity: 1;
}

/* Header Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-insta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid rgba(6, 52, 20, 0.14);
  color: var(--color-dark-green, #063414);
  transition: all var(--transition-fast);
  box-shadow: 0 2px 6px rgba(6, 52, 20, 0.04);
}

.header-insta-btn svg {
  width: 18px;
  height: 18px;
}

.header-insta-btn:hover {
  background-color: var(--color-accent-green, #B7D84A);
  border-color: var(--color-accent-green, #B7D84A);
  color: var(--color-dark-green, #063414);
  transform: translateY(-1px);
}

/* Header Button */
.btn-header {
  background-color: var(--color-dark-green);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px 10px 10px 22px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(31, 64, 26, 0.16);
  transition: all var(--transition-fast);
}

.btn-header:hover {
  background-color: var(--color-accent-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 64, 26, 0.22);
}

.arrow-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-circle svg {
  width: 14px;
  height: 14px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background-color: var(--color-dark-green);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO MAIN SECTION (CLEAN VIEWPORT FIT & ZERO OVERLAP)
   ========================================================================== */
.hero-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 16px;
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 90px);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 10px;
  padding-bottom: 20px;
  flex: 1;
}

/* Hero Left Content */
.hero-content {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 3;
}

/* Hero Entry Animations */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Desktop Headline: Strictly One Single Line */
.hero-title {
  font-size: clamp(34px, 4.2vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--color-text-main);
  margin-bottom: 20px;
  white-space: nowrap;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards;
}

.hero-title .highlight-green {
  color: var(--color-accent-green);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text-main);
  margin-bottom: 16px;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s backwards;
}

.hero-description {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  max-width: 470px;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s backwards;
}

.btn {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 16px 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--color-dark-green);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(31, 64, 26, 0.18);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--color-accent-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(31, 64, 26, 0.28);
}

.cta-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn-primary:hover .cta-arrow {
  transform: translateX(5px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-main);
  border: 1.5px solid var(--color-border-subtle);
}

.btn-secondary:hover {
  border-color: var(--color-dark-green);
  color: var(--color-dark-green);
  background-color: rgba(31, 64, 26, 0.04);
  transform: translateY(-2px);
}

/* Hero Right Media (Floating 3D House PNG Cutout - Extra Large Scale) */
.hero-media {
  flex: 1.9;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  max-height: 720px;
  margin-right: -40px;
  perspective: 1000px;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

.hero-island-img {
  width: 100%;
  max-width: 1100px;
  max-height: min(72vh, 640px);
  height: auto;
  object-fit: contain;
  transform: scale(1.22);
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.09));
  animation: heroFloat 7s ease-in-out infinite;
  transition: transform 0.25s ease-out, filter 0.25s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes heroFloat {
  0% {
    transform: scale(1.22) translateY(0px);
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.08));
  }
  50% {
    transform: scale(1.22) translateY(-12px);
    filter: drop-shadow(0 36px 56px rgba(0, 0, 0, 0.13));
  }
  100% {
    transform: scale(1.22) translateY(0px);
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.08));
  }
}

@keyframes heroFloatMobile {
  0% {
    transform: translateY(0px);
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.08));
  }
  50% {
    transform: translateY(-8px);
    filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.12));
  }
  100% {
    transform: translateY(0px);
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.08));
  }
}

/* ==========================================================================
   BOTTOM TRUST BADGE BAR (SOLID SEPARATION & FULL VISIBILITY)
   ========================================================================== */
.trust-bar {
  margin-top: auto;
  padding: 24px 0 28px;
  border-top: 1px solid var(--color-border-subtle);
  background-color: var(--bg-main);
  position: relative;
  z-index: 10;
}

.trust-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 16px;
}

.trust-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-icon-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-green);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.trust-item:hover .trust-icon-wrapper {
  transform: scale(1.08);
  background-color: #D6DED1;
}

.trust-icon {
  width: 20px;
  height: 20px;
}

.trust-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-main);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 38px;
  background-color: var(--color-border-subtle);
}

/* ==========================================================================
   ENQUIRY MODAL STYLES
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 21, 17, 0.55);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--bg-card);
  width: 90%;
  max-width: 480px;
  padding: 40px 36px;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform var(--transition-normal);
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: var(--color-text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--bg-main);
  color: var(--color-text-main);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-dark-green);
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text-main);
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border-subtle);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-text-main);
  background-color: var(--bg-main);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  border-color: var(--color-dark-green);
}

.btn-block {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
}

.form-success-message {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.form-success-message.active {
  display: block;
}

.success-icon {
  width: 52px;
  height: 52px;
  background-color: var(--color-icon-circle);
  color: var(--color-dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 16px;
}

.form-success-message h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-dark-green);
  margin-bottom: 8px;
}

.form-success-message p {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(34px, 4.2vw, 56px);
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .nav-list {
    gap: 24px;
  }
}

@media (max-width: 868px) {
  .foliage-shadow {
    display: none;
  }

  .brand-logo-img {
    height: 58px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-bottom: 20px;
    overflow-x: hidden;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    white-space: normal;
    font-size: 38px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-media {
    justify-content: center;
    margin-top: 16px;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    max-height: none;
    overflow: hidden;
  }

  .hero-island-img {
    max-height: 340px;
    max-width: 100%;
    transform: none;
    animation: heroFloatMobile 7s ease-in-out infinite;
  }

  .trust-bar {
    margin-top: 24px;
    padding: 24px 0;
  }

  .trust-container {
    flex-direction: column;
    gap: 20px;
  }

  .trust-divider {
    width: 60px;
    height: 1px;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-main);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .nav-actions {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

/* ==========================================================================
   ABOUT GREENTEK ACADEMY SECTION (PERFECT ALIGNMENT & OPTIMIZED HEIGHT)
   ========================================================================== */
.about-section {
  position: relative;
  background-color: #F8F7EF;
  padding: 56px 0 60px;
  overflow: hidden;
  border-top: 1px solid #ECEAE0;
  border-bottom: 1px solid #ECEAE0;
}

/* Botanical Line Art Vector SVGs */
.botanical-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.botanical-top-right {
  top: -15px;
  right: -15px;
  width: 320px;
  height: 320px;
}

.botanical-bottom-left {
  bottom: -15px;
  left: -15px;
  width: 260px;
  height: 260px;
}

.botanical-bottom-right {
  bottom: -20px;
  right: -5px;
  width: 300px;
  height: 300px;
}

/* Container & 2-Column Grid Layout */
.about-container {
  position: relative;
  z-index: 2;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 46% 50%;
  justify-content: space-between;
  align-items: center;
  gap: 4%;
}

/* Left Media Column */
.about-media-col {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* Decorative Dark Green Block (Top-Left behind Image) */
.about-decorative-shape {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 115px;
  height: 115px;
  background-color: #143320;
  border-radius: 22px;
  z-index: 1;
}

/* Photo Frame - Reduced Height Perfectly Matching Content Column */
.about-image-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 470px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(18, 38, 24, 0.08);
}

.about-house-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-media-col:hover .about-house-img {
  transform: scale(1.025);
}

/* SINCE 2013 Badge with Offset Outline */
.about-badge-outer {
  position: absolute;
  bottom: 22px;
  left: 20px;
  z-index: 4;
  padding: 4px;
  border: 1.5px solid rgba(215, 230, 210, 0.8);
  border-radius: 20px;
  background: transparent;
  backdrop-filter: blur(2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-badge-outer:hover {
  transform: translateY(-3px);
}

.about-since-badge {
  background-color: #143320;
  border-radius: 16px;
  padding: 16px 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 120px;
}

.badge-leaf-icon {
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-since-text {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 2px;
  display: block;
}

.badge-year-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1;
  display: block;
}

/* Right Content Column */
.about-content-col {
  position: relative;
  z-index: 2;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Eyebrow & Line */
.about-eyebrow-wrapper {
  margin-bottom: 14px;
}

.about-eyebrow {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #163823;
  display: block;
}

.about-accent-line {
  width: 42px;
  height: 3px;
  background-color: #163823;
  border-radius: 2px;
  margin-top: 8px;
}

/* Main Heading */
.about-main-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #143621;
  margin-bottom: 18px;
}

/* Paragraphs */
.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.about-paragraphs p {
  font-family: var(--font-primary);
  font-size: 16.5px;
  line-height: 1.6;
  color: #38453c;
  font-weight: 400;
}

/* Highlights Box */
.about-highlights-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 0;
  margin-bottom: 0;
}

.about-highlight-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

.highlight-icon-box {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-metric {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #163823;
  margin-bottom: 3px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.about-highlight-item:first-child .highlight-metric {
  font-size: 28px;
}

.highlight-label {
  font-family: var(--font-primary);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
  color: #435447;
  text-align: center;
}

.highlight-divider {
  width: 1px;
  height: 52px;
  background-color: #ccd7c8;
  flex-shrink: 0;
}

/* CTA Button */
.about-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 380px;
  max-width: 100%;
  height: 54px;
  padding: 0 24px;
  background-color: #153621;
  color: #FFFFFF;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 18px rgba(21, 54, 33, 0.16);
  position: relative;
  overflow: hidden;
}

.about-cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: left 0.6s ease;
}

.about-cta-button:hover::after {
  left: 100%;
}

.about-cta-button:hover {
  background-color: #0e2617;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(21, 54, 33, 0.26);
}

.about-arrow-icon {
  transition: transform 0.25s ease;
}

.about-cta-button:hover .about-arrow-icon {
  transform: translateX(6px);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .about-container {
    padding: 0 28px;
    gap: 28px;
  }

  .about-image-frame {
    height: 480px;
  }

  .about-main-heading {
    font-size: 34px;
  }

  .about-cta-button {
    width: 100%;
  }
}

@media (max-width: 868px) {
  .about-section {
    padding: 60px 0;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-media-col {
    max-width: 440px;
  }

  .about-image-frame {
    height: 460px;
  }

  .about-content-col {
    max-width: 100%;
    text-align: left;
  }

  .about-main-heading {
    font-size: 32px;
  }

  .botanical-top-right {
    width: 200px;
    height: 200px;
  }

  .botanical-bottom-right {
    display: none;
  }
}

@media (max-width: 560px) {
  .about-image-frame {
    height: 380px;
  }

  .about-highlights-wrapper {
    flex-direction: row;
    gap: 8px;
    align-items: center;
  }

  .highlight-divider {
    height: 44px;
  }

  .highlight-metric {
    font-size: 16px;
  }

  .about-highlight-item:first-child .highlight-metric {
    font-size: 22px;
  }

  .highlight-label {
    font-size: 11px;
    line-height: 1.25;
  }

  .about-badge-outer {
    bottom: 14px;
    left: 14px;
    padding: 3px;
  }

  .about-since-badge {
    padding: 12px 14px 10px;
    min-width: 100px;
  }

  .badge-since-text {
    font-size: 9.5px;
  }

  .badge-year-text {
    font-size: 22px;
  }
}

/* ==========================================================================
   CERTIFICATE PROGRAM SECTION (6-CARD ROW MATCHING REFERENCE)
   ========================================================================== */
.certificate-program-section {
  background-color: #FAF8F3;
  padding: 56px 0 62px;
  border-top: 1px solid #EAE7DC;
  position: relative;
  z-index: 5;
}

.cert-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Elements */
.cert-header {
  text-align: center;
  margin-bottom: 32px;
}

.cert-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #315D38;
  margin-bottom: 10px;
  display: block;
}

.cert-main-heading {
  font-size: clamp(26px, 2.5vw, 33px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #181B18;
  margin-bottom: 14px;
}

.cert-decorative-line {
  width: 50px;
  height: 2.5px;
  background-color: #2E6034;
  border-radius: 2px;
  margin: 0 auto 16px;
}

.cert-description {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #4A5045;
  max-width: 820px;
  margin: 0 auto;
}

/* 6-Card Single Row on Desktop */
.cert-cards-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
}

.cert-card {
  flex: 1 1 0;
  min-width: 0;
  background-color: #FAF9F5;
  border: 1px solid #E5E3DB;
  border-radius: 12px;
  height: 335px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cert-card:hover {
  transform: translateY(-3px);
  border-color: #2E6034;
  box-shadow: 0 8px 24px rgba(46, 96, 52, 0.12);
}

/* Image & Overlapping Circular Badge */
.cert-card-media {
  position: relative;
  width: 100%;
  height: 120px;
  flex-shrink: 0;
  background-color: #E2E0D8;
}

.cert-card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.cert-icon-badge {
  position: absolute;
  left: 14px;
  bottom: -21px;
  width: 42px;
  height: 42px;
  background-color: #2E6034;
  border-radius: 50%;
  border: 2px solid #FAF9F5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.cert-badge-icon {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF;
}

/* Card Body Content */
.cert-card-body {
  padding: 30px 14px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.cert-card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #141713;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.cert-card-text {
  font-size: 13.8px;
  font-weight: 400;
  color: #4A4F46;
  line-height: 1.55;
}

/* Tablet & Mobile Responsive */
@media (max-width: 1100px) {
  .cert-cards-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .cert-card {
    flex: 0 0 calc(33.333% - 14px);
    width: calc(33.333% - 14px);
    height: auto;
    min-height: 315px;
  }
}

@media (max-width: 640px) {
  .cert-cards-row {
    flex-direction: column;
    align-items: center;
  }

  .cert-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: 310px;
  }

  .cert-main-heading {
    font-size: 25px;
  }
}

/* ==========================================================================
   OUR TRAINING METHODOLOGY SECTION (TIMELINE MATCHING REFERENCE)
   ========================================================================== */
.methodology-section {
  background-color: #FAF8F3;
  padding: 44px 0 48px;
  border-top: 1px solid #EAE7DC;
  position: relative;
  z-index: 5;
}

.methodology-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Split Header Area */
.methodology-header {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 30px;
}

.methodology-header-left {
  flex-shrink: 0;
}

.methodology-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark-green);
  margin-bottom: 10px;
  display: block;
}

.methodology-title {
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #141713;
  margin-bottom: 12px;
}

.methodology-underline {
  width: 32px;
  height: 3px;
  background-color: var(--color-dark-green);
  border-radius: 2px;
}

.methodology-header-divider {
  width: 1px;
  height: 48px;
  background-color: #E2E0D7;
  flex-shrink: 0;
}

.methodology-header-right {
  flex: 1;
  max-width: 480px;
}

.methodology-intro {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #4A5045;
}

/* Timeline Wrapper & Horizontal Line */
.methodology-timeline-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}

.methodology-timeline-line {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #E2E0D7;
  z-index: 1;
}

.methodology-steps-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.methodology-step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Dark Green Circle Badge */
.methodology-circle {
  width: 48px;
  height: 48px;
  background-color: var(--color-dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(31, 64, 26, 0.16);
  transition: transform 0.25s ease;
}

.methodology-step:hover .methodology-circle {
  transform: scale(1.08);
}

.methodology-icon {
  width: 22px;
  height: 22px;
  stroke: #FFFFFF;
}

/* Step Typography */
.methodology-step-head {
  font-size: 14.5px;
  font-weight: 700;
  color: #141713;
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-num {
  color: #141713;
  margin-right: 4px;
}

.methodology-step-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #4A5045;
}


/* Responsive Breakpoints */
@media (max-width: 1080px) {
  .methodology-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }

  .methodology-timeline-line {
    display: none;
  }
}

@media (max-width: 868px) {
  .methodology-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .methodology-header-divider {
    display: none;
  }

  .methodology-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .methodology-steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ==========================================================================
   FROM LEARNING TO CAREER & CTA BANNER SECTION (REFERENCE MATCH)
   ========================================================================== */
.career-paths-section {
  background-color: #FAF8F3;
  padding: 38px 0 44px;
  border-top: 1px solid #EAE7DC;
  position: relative;
  z-index: 5;
}

.career-paths-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* 3-Column Wrapper */
.career-cols-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 20px;
}

.career-col {
  display: flex;
  flex-direction: column;
  position: relative;
  height: auto;
  min-height: 0;
}

/* Column Ratios: Left ~25%, Center ~43%, Right ~32% */
.career-col-left {
  flex: 0 0 25%;
  max-width: 25%;
  padding-right: 32px;
}

.career-col-center {
  flex: 0 0 43%;
  max-width: 43%;
  padding: 0 32px;
}

.career-col-right {
  flex: 0 0 32%;
  max-width: 32%;
  padding-left: 32px;
  position: relative;
}

/* Vertical Thin Dividers */
.career-col-divider {
  width: 1px;
  background-color: #E2E0D7;
  align-self: stretch;
  flex-shrink: 0;
}

/* Eyebrows & Headings */
.career-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark-green);
  margin-bottom: 10px;
  display: block;
}

.career-heading {
  font-size: clamp(26px, 2.3vw, 30px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: #141713;
  margin-bottom: 10px;
}

.career-heading-right {
  font-size: clamp(24px, 2.1vw, 28px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #141713;
  margin-bottom: 14px;
}

.career-accent-line {
  width: 32px;
  height: 3px;
  background-color: var(--color-dark-green);
  border-radius: 2px;
  margin-bottom: 14px;
}

.career-description {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.55;
  color: #4A5045;
}

.career-paths-lead {
  font-size: 14.5px;
  font-weight: 600;
  color: #141713;
  margin-bottom: 14px;
}

/* Checklist Layout */
.checklist-grid-two-col {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.checklist-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.checklist-list.vertical-list {
  margin-bottom: 18px;
  gap: 9px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #141713;
  line-height: 1.35;
}

.check-circle-icon {
  width: 16px;
  height: 16px;
  color: var(--color-dark-green);
  flex-shrink: 0;
  margin-top: 0.5px;
}

.career-subtext {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.5;
  color: #6B7265;
  margin-top: 12px;
}

.eligibility-text {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.5;
  color: #6B7265;
  margin-top: 12px;
}

/* Oversized Botanical Leaf Watermark */
.career-leaf-watermark {
  position: absolute;
  right: -10px;
  bottom: 0px;
  width: 130px;
  height: 130px;
  color: rgba(31, 64, 26, 0.06);
  pointer-events: none;
  z-index: 1;
}


/* ==========================================================================
   FULL-WIDTH CTA BANNER
   ========================================================================== */
.career-cta-banner {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border: 1px solid rgba(31, 64, 26, 0.3);
  background: linear-gradient(90deg, rgba(16, 36, 13, 0.93) 0%, rgba(16, 36, 13, 0.8) 45%, rgba(16, 36, 13, 0.35) 100%), url('assets/cta_bg.jpg') center/cover no-repeat;
  box-shadow: 0 10px 30px rgba(16, 36, 13, 0.15);
}

.cta-content-left {
  position: relative;
  z-index: 3;
}

.cta-title {
  font-size: clamp(22px, 2.2vw, 27px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 14.5px;
  font-weight: 400;
  color: #E2E7DB;
  margin-top: 6px;
  letter-spacing: -0.01em;
}

.cta-buttons-right {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 3;
}

.btn-cta {
  min-width: 195px;
  height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-cta-primary {
  background-color: #FAF9F5;
  color: var(--color-dark-green);
  border: 1px solid #FAF9F5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-cta-primary:hover {
  background-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-arrow {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.btn-cta-primary:hover .cta-btn-arrow {
  transform: translateX(3px);
}

.btn-cta-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.cta-chat-icon {
  width: 16px;
  height: 16px;
}

/* Responsive Layout */
@media (max-width: 1080px) {
  .career-cols-wrapper {
    flex-direction: column;
    gap: 36px;
  }

  .career-col-left, .career-col-center, .career-col-right {
    flex: 1;
    max-width: 100%;
    padding: 0;
  }

  .career-col-divider {
    display: none;
  }

  .career-cta-banner {
    height: auto;
    padding: 32px 24px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-buttons-right {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .checklist-grid-two-col {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons-right {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta {
    width: 100%;
  }
}

/* ==========================================================================
   SITE FOOTER (REFERENCE RECREATION)
   ========================================================================== */
.site-footer {
  background-color: #1A3A17;
  color: #E2E7DB;
  padding: 44px 0 32px;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: 40px;
  margin-bottom: 28px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Column 1: Logo & Brand */
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.footer-description {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.55;
  color: #D2DCD0;
  margin-bottom: 20px;
}

.footer-social-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.social-svg {
  width: 17px;
  height: 17px;
  stroke: #FFFFFF;
}

/* Footer Headings & Links */
.footer-heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-nav-list, .footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link, .footer-email-link {
  font-size: 14.5px;
  color: #D2DCD0;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 400;
}

.footer-link:hover, .footer-email-link:hover {
  color: #FFFFFF;
}

/* Contact List Items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #D2DCD0;
  line-height: 1.4;
  font-weight: 400;
}

.contact-icon {
  width: 16px;
  height: 16px;
  stroke: #FFFFFF;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Bottom Horizontal Divider */
.footer-bottom-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  margin-top: 16px;
}

/* Responsive Footer Layout */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 32px;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding: 44px 0 32px;
  }

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

/* ==========================================================================
   GREENTEK ONLINE BRAND CONNECTION BUTTON / CARD
   ========================================================================== */
.greentek-online-section {
  padding: 48px 0;
  background-color: var(--color-warm-cream, #F7F5EC);
  border-top: 1px solid rgba(6, 52, 20, 0.08);
}

.greentek-online-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background-color: #FFFFFF;
  border: 1px solid rgba(6, 52, 20, 0.12);
  border-radius: 18px;
  padding: 24px 38px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(6, 43, 19, 0.03);
  transition: transform 0.22s ease-out,
              border-color 0.22s ease-out,
              box-shadow 0.22s ease-out,
              background-color 0.22s ease-out;
}

.greentek-online-card:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 216, 74, 0.7);
  box-shadow: 0 10px 28px rgba(6, 43, 19, 0.08);
  background-color: #FFFFFF;
}

.online-card-left {
  display: flex;
  align-items: center;
}

.online-brand-logo {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.online-card-right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.online-cta-label {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--color-forest-green, #063414);
  transition: color 0.22s ease-out;
}

.greentek-online-card:hover .online-cta-label {
  color: var(--color-deep-green, #082B13);
}

.online-arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(183, 216, 74, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest-green, #063414);
  transition: background-color 0.22s ease-out, transform 0.22s ease-out;
}

.online-arrow-circle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.22s ease-out;
}

.greentek-online-card:hover .online-arrow-circle {
  background-color: var(--color-lime-accent, #B7D84A);
}

.greentek-online-card:hover .online-arrow-circle svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .greentek-online-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 24px 20px;
  }
  .online-brand-logo {
    height: 44px;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP QUICK CONNECT BUTTON
   ========================================================================== */
.floating-whatsapp-wrapper {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.floating-whatsapp-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.25s ease, 
              background-color 0.2s ease;
  position: relative;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08) translateY(-3px);
  background-color: #20ba59;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp-btn:active {
  transform: scale(0.95);
}

.floating-whatsapp-btn .whatsapp-icon {
  width: 32px;
  height: 32px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background-color: #111812;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #111812;
}

.floating-whatsapp-wrapper:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 576px) {
  .floating-whatsapp-wrapper {
    bottom: 20px;
    right: 20px;
  }
  .floating-whatsapp-btn {
    width: 52px;
    height: 52px;
  }
  .floating-whatsapp-btn .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}







