html,
body {
  overflow-x: hidden;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.main-title {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

/* Body text */
p,
li,
span,
a {
  font-family: var(--font-body);
  line-height: 1.7;
}

/* Strong emphasis */
strong {
  font-family: var(--font-heading);
}

/* ----------------------- */

.section-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--secondary-blue);
  margin-bottom: 40px;
}

/* --------------------- */

.consult-card,
.offer-card,
.outcome-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
  transition: 0.35s ease;
  border: 2px solid var(--primary-green);
}

.consult-card:hover,
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(46, 82, 164, 0.3);
}

.consult-card i,
.offer-card i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 14px;
}

/* ------------------------- */
/* how it works  */

/* =========================
   PROCESS SECTION
========================= */

.consulting-process {
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    rgba(46, 82, 164, 0.06),
    rgba(213, 224, 65, 0.1)
  );
}

/* Subtitle */
.section-subtitle {
  max-width: 680px;
  margin: 14px auto 60px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  opacity: 0.85;
}

/* Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.process-step {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 46px 30px 34px;
  text-align: center;
  border: 1px solid var(--primary-green);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
}

/* Hover effect */
.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(46, 82, 164, 0.35);
}

/* Number Badge */
.step-badge {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--secondary-blue);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

/* Title */
.process-step h4 {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--secondary-blue);
}

/* Text */
.process-step p {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.9;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding: 44px 26px 32px;
  }
}

/* ----------------------- */

.outcome-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.outcome-list li {
  margin-bottom: 12px;
  font-weight: 600;
}

.offer-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 28px;
  border-radius: 30px;
  background: var(--primary-blue);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.offer-card h4 {
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--secondary-blue);
}

/* =========================
   CONSULTING OUTCOMES
========================= */

.consulting-outcomes {
  padding: 60px 0;
  background: #ffffff;
}

/* Intro text */
.outcome-intro {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 520px;
}

/* LIST */
.outcome-list {
  list-style: none;
  padding-left: 0;
  margin-top: 28px;
}

.outcome-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--secondary-blue);
}

/* Icon bubble */
.outcome-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-blue);
  font-size: 0.85rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* RIGHT CARD */
.outcome-card.modern-outcome {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(46, 82, 164, 0.95),
    rgba(30, 58, 138, 0.95)
  );
  color: #ffffff;
  border-radius: 26px;
  padding: 44px;
  box-shadow: 0 26px 60px rgba(46, 82, 164, 0.45);
  overflow: hidden;
}

/* Glow effect */
.outcome-card.modern-outcome::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(213, 224, 65, 0.35),
    transparent 60%
  );
  opacity: 0.9;
}

/* Card text */
.outcome-card.modern-outcome h4 {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.outcome-card.modern-outcome p {
  position: relative;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.95;
}

/* Highlight row */
.outcome-highlight {
  position: relative;
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  font-family: var(--font-heading);
  font-weight: 700;
}

.outcome-highlight i {
  color: var(--primary-green);
}

/* Hover */
.outcome-card.modern-outcome:hover {
  transform: translateY(-8px);
  transition: 0.35s ease;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .outcome-card.modern-outcome {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .outcome-card.modern-outcome {
    padding: 36px 28px;
  }
}

/* ======= WORKSHOP ======== */

/* ================= WORKSHOP INTRO ================= */

.workshop-intro-neo {
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    rgba(46, 82, 164, 0.08),
    rgba(213, 224, 65, 0.12)
  );
}

/* CARD */
.neo-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* BASE CARD */
.neo-info {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  border-radius: 26px;
  padding: 42px 36px;
  box-shadow: 0 20px 50px rgba(46, 82, 164, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: all 0.35s ease;
}

/* HOVER */
.neo-info:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(46, 82, 164, 0.35);
}

/* CENTER CARD EMPHASIS */
.neo-info.highlight {
  transform: translateY(-14px);
  box-shadow: 0 34px 80px rgba(46, 82, 164, 0.45);
}

/* ICON */
.neo-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--secondary-blue);
  margin-bottom: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

/* CENTER ICON VARIANT */
.neo-icon.primary {
  background: rgba(46, 82, 164, 0.2);
  color: var(--primary-blue);
}

/* TITLE */
.neo-info h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--secondary-blue);
  margin-bottom: 14px;
  font-size: 1.4rem;
}

/* TEXT */
.neo-info p {
  font-family: var(--font-body);
  opacity: 0.9;
  line-height: 1.7;
  margin-top: auto; /* keeps spacing consistent */
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .neo-info.highlight {
    transform: none;
  }
}

@media (max-width: 576px) {
  .neo-info {
    padding: 34px 28px;
  }
}

/* -- tabs -- */
.workshop-tab-switch {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 60px;
}

.tab-btn {
  padding: 14px 34px;
  border-radius: 40px;
  border: 2px solid var(--primary-blue);
  background: transparent;
  font-weight: 800;
  color: var(--secondary-blue);
  transition: 0.35s;
}

.tab-btn.active {
  background: var(--primary-blue);
  color: white;
  box-shadow: 0 0 25px rgba(46, 82, 164, 0.45);
}

/* ================= WORKSHOP ================= */

/* ================= WORKSHOP WRAPPER ================= */

.workshop-panel {
  display: none;
  padding: 70px 10px;
}

.workshop-panel.active {
  display: block;
}

/* Title */
.panel-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--secondary-blue);
  margin-bottom: 50px;
}

/* ================= PANEL CARD ================= */

.panel-card {
  max-width: 1150px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px rgba(46, 82, 164, 0.18);
  position: relative;
}

/* ================= GRID ================= */

.panel-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* ================= LEFT / RIGHT ================= */

.panel-left h4,
.panel-right h4 {
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--secondary-blue);
}

.panel-left p,
.panel-right p {
  opacity: 0.9;
}

/* ================= CENTER ICON ================= */

.panel-center {
  text-align: center;
  position: relative;
}

.icon-orb {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(
    circle at top,
    var(--primary-blue),
    var(--secondary-blue)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--primary-green);
  box-shadow: 0 0 45px rgba(46, 82, 164, 0.55);
  margin: 0 auto;
}

.center-label {
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0.8;
}

.panel-right ul > li {
  text-align: left;
}

/* ================= CERT BADGE ================= */

.cert-badge {
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(213, 224, 65, 0.18);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
}

/* ================= OUTCOMES ================= */

.outcome-stack {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.outcome-stack li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
  font-weight: 600;
}

.outcome-stack li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--primary-green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* ================= FOOTER ================= */

.panel-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.panel-meta {
  font-weight: 700;
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* CTA */
.neo-register {
  padding: 15px 46px;
  border-radius: 40px;
  border: none;
  background: var(--primary-blue);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(46, 82, 164, 0.45);
  transition: transform 0.3s ease;
}

.neo-register:hover {
  transform: translateY(-2px);
}

/* ================= TAB SWITCH ================= */

.workshop-tab-switch {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 60px 0 40px;
}

.tab-btn {
  padding: 13px 34px;
  border-radius: 40px;
  border: 2px solid var(--primary-blue);
  background: transparent;
  font-weight: 800;
  color: var(--secondary-blue);
  transition: 0.3s;
}

.tab-btn.active {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 0 24px rgba(46, 82, 164, 0.4);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .panel-card {
    padding: 28px 22px;
  }

  .panel-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .panel-footer {
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .panel-title {
    font-size: 2rem;
  }

  .panel-card {
    padding: 36px 26px;
  }
}

/* ====== register modal for workshop ====== */
/* =========================================================
   WORKSHOP REGISTER MODAL
========================================================= */

.workshop-modal {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  border: none;
  max-height: 92vh;
}

/* CLOSE */
.workshop-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

/* GRID */
.workshop-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  /* min-height: 520px; */
}

/* LEFT */
.workshop-visual {
  background: linear-gradient(
    135deg,
    rgba(46, 82, 164, 0.95),
    rgba(30, 58, 138, 0.95)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.workshop-visual img {
  max-width: 90%;
  height: auto;
}

/* RIGHT */
.workshop-form {
  padding: 44px 46px;
  overflow-y: scroll;
  overflow-y: auto;
  max-height: 92vh;
}

.workshop-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--secondary-blue);
  margin-bottom: 6px;
}

.workshop-subtext {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 26px;
}

/* FORM */
.workshop-form-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* LABEL */
.workshop-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.workshop-label span {
  color: #dc2626;
}

/* INPUT */
.workshop-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dbe3f0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: 0.25s;
}

.workshop-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(46, 82, 164, 0.15);
}

/* GRID 2 */
.workshop-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* RADIO */
.workshop-radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.workshop-radio input {
  display: none;
}

.workshop-radio span {
  padding: 8px 18px;
  border-radius: 30px;
  border: 2px solid var(--primary-blue);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.workshop-radio input:checked + span {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 0 20px rgba(46, 82, 164, 0.4);
}

/* HINT */
.workshop-hint {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-top: 4px;
}

/* SUBMIT */
.workshop-submit {
  margin-top: 20px;
}

.workshop-btn {
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  background: var(--primary-green);
  color: var(--secondary-blue);
  font-weight: 800;
  border: 1px solid var(--secondary-blue);
  transition: 0.3s;
}

.workshop-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(213, 224, 65, 0.45);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .workshop-visual {
    display: none;
  }
}

@media (max-width: 576px) {
  .workshop-form {
    padding: 32px 24px;
  }

  .workshop-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ================= REGISTER MODAL ================= */

.register-modal-neo {
  border-radius: 32px;
  background: rgba(27, 4, 4, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  border: none;
}

.modal-dialog {
  max-width: 820px; /* KEY FIX */
}

/* HEADER */
.neo-header {
  padding: 28px 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.neo-header h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--secondary-blue);
}

/* BODY */
.neo-body {
  padding: 28px 32px;
}

/* INTRO */
.form-intro {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.intro-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(46, 82, 164, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-blue);
}

.form-intro p {
  font-family: var(--font-body);
  opacity: 0.9;
  line-height: 1.7;
}

/* FORM */
.neo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* LABEL */
.form-label {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  font-size: 0.9rem;
}

.form-label span {
  color: red;
}

/* INPUT */
.neo-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  border: 1px solid #dbe3f0;
  font-family: var(--font-body);
  transition: 0.25s;
}

.neo-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(46, 82, 164, 0.15);
}

/* GRID */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* RADIO */
.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-pill {
  position: relative;
}

.radio-pill input {
  display: none;
}

.radio-pill span {
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 30px;
  border: 2px solid var(--primary-blue);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.radio-pill input:checked + span {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 0 22px rgba(46, 82, 164, 0.4);
}

/* HINT */
.hint-text {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-top: 6px;
}

/* SUBMIT */
.form-submit {
  margin-top: 30px;
  text-align: center;
}

.neo-submit {
  padding: 14px 44px;
  font-size: 0.95rem;
  border-radius: 40px;
  background: var(--primary-green);
  color: var(--secondary-blue);
  font-weight: 800;
  border: 1px solid var(--secondary-blue);
  /* box-shadow: 0 18px 40px rgba(213,224,65,0.45); */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .neo-body {
    padding: 24px 20px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .form-intro {
    flex-direction: column;
  }
}

.form-intro.compact {
  gap: 14px;
  margin-bottom: 28px;
}

@media (max-width: 576px) {
  .modal-dialog {
    margin: 12px;
  }

  .form-intro p {
    font-size: 0.9rem;
  }

  .neo-submit {
    width: 100%;
  }
}

/* ================================
            GREEN SME 
================================== */

/* HERO */
.green-hero {
  padding: 140px 20px 100px;
  background: linear-gradient(
    135deg,
    rgba(46, 82, 164, 0.12),
    rgba(213, 224, 65, 0.18)
  );
}

.green-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-blue);
}

.green-hero span {
  color: var(--primary-green);
}

.green-hero p {
  max-width: 720px;
  margin: 18px auto 0;
  opacity: 0.9;
}

/* INFO CARDS */
.green-info {
  padding: 90px 0;
}

.info-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(46, 82, 164, 0.18);
}

.info-card i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 18px;
}

.info-card.highlight {
  transform: translateY(-12px);
}

/* SERVICES */
.green-services {
  padding: 90px 0;
}

.service-card {
  background: #fff;
  padding: 32px;
  border-radius: 22px;
  border: 1px solid var(--secondary-blue);
  text-align: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.service-card h5 {
  font-weight: 700;
  color: var(--primary-blue);
}

.service-card i {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 14px;
}

/* WHY */
.green-why {
  padding: 90px 0;
  background: #f9fafc;
}

.why-card {
  background: #fff;
  border: 1px dashed var(--primary-blue);
  padding: 34px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 14px;
}

/* CTA */
.green-cta {
  padding: 90px 20px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color: #fff;
}

.cta-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 38px;
  border-radius: 40px;
  background: var(--primary-green);
  color: var(--secondary-blue);
  font-weight: 800;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .green-hero h1 {
    font-size: 2.2rem;
  }

  .info-card.highlight {
    transform: none;
  }
}

/* ================= AMPLIFY MODAL ================= */

.amplify-modal {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  border: none;
}

/* CLOSE */
.amplify-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
}

/* GRID */
.amplify-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 520px;
}

/* LEFT */
.amplify-visual {
  background: linear-gradient(
    135deg,
    rgba(46, 82, 164, 0.08),
    rgba(213, 224, 65, 0.18)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.amplify-visual img {
  max-width: 100%;
  height: auto;
}

/* RIGHT */
.amplify-form {
  padding: 50px;
  display: flex;
  flex-direction: column;
}

.amplify-form h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--secondary-blue);
  margin-bottom: 6px;
}

.amplify-subtext {
  opacity: 0.85;
  margin-bottom: 28px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .amplify-grid {
    grid-template-columns: 1fr;
  }

  .amplify-visual {
    display: none;
  }

  .amplify-form {
    padding: 36px 28px;
  }
}

/* ===============================
        SME SECTION        
================================  */
/* ================= SME BASE ================= */
.sme-section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--secondary-blue);
  margin-bottom: 60px;
}

/* ================= SME INTRO ================= */
.sme-intro {
  padding: 100px 0;
}

.sme-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sme-intro-card {
  background: #fff;
  padding: 36px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
  transition: 0.35s;
}

.sme-intro-card:hover {
  transform: translateY(-8px);
}

.sme-intro-card.highlight {
  border: 2px solid var(--primary-green);
}

.sme-intro-card h3 {
  font-weight: 800;
  margin-bottom: 14px;
}

/* ================= SME READINESS ================= */
.sme-story {
  padding: 110px 0;
}

.sme-story-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 48px;
  align-items: center;
}

.sme-story-text {
  background: #fff;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.sme-story-visual img {
  width: 100%;
  max-width: 420px;
  margin: auto;
  display: block;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ================= SME STEPS ================= */
/* ================= SME STEPS ================= */

.sme-steps {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(46,82,164,0.05),
    rgba(213,224,65,0.08)
  );
}

.sme-section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--secondary-blue);
  margin-bottom: 70px;
}

/* GRID */
.sme-steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* CONNECTING LINE */
.sme-steps-grid::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 5%;
  width: 90%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-blue),
    var(--primary-green)
  );
  z-index: 0;
  opacity: 0.4;
}

/* CARD */
.sme-step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 36px 24px 32px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0,0,0,0.14);
  transition: all 0.35s ease;
}

/* HOVER */
.sme-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(46,82,164,0.35);
}

/* ICON */
.sme-step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--secondary-blue);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

/* STEP LABEL */
.sme-step-card span {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-blue);
}

/* TITLE */
.sme-step-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary-blue);
  line-height: 1.4;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .sme-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sme-steps-grid::before {
    display: none;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .sme-steps-grid {
    grid-template-columns: 1fr;
  }

  .sme-step-card {
    padding: 32px 22px;
  }
}


/* ================= SME CTA ================= */
.sme-cta {
  padding: 100px 0;
}

.sme-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.sme-cta-card {
  background: #ffffff;
  padding: 44px;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

.sme-cta-card.highlight {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color: #fff;
}

.sme-cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  border-radius: 40px;
  background: var(--primary-green);
  color: var(--secondary-blue);
  font-weight: 800;
  text-decoration: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .sme-intro-grid,
  .sme-readiness-grid,
  .sme-cta-grid {
    grid-template-columns: 1fr;
  }

  .sme-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .sme-steps-grid {
    grid-template-columns: 1fr;
  }

  .sme-section-title {
    font-size: 2rem;
  }
}

.sme-final-cta {
  padding: 120px 0;
  text-align: center;
  background: radial-gradient(
    circle,
    rgba(213,224,65,0.35),
    rgba(46,82,164,0.15)
  );
}

.sme-final-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 18px 54px;
  border-radius: 50px;
  background: var(--primary-green);
  color: var(--secondary-blue);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 22px 60px rgba(213,224,65,0.55);
}


/* =========================
    CLIMATE GLOSSARY 
========================== */

/* ================= GLOSSARY ================= */

.glossary-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

/* A–Z NAV */
.glossary-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.glossary-letter {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
  background: #fff;
  font-weight: 800;
  color: var(--secondary-blue);
  cursor: pointer;
  transition: 0.3s;
}

.glossary-letter.active,
.glossary-letter:hover {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(46,82,164,0.35);
}

/* ACTIVE LETTER */
.glossary-active {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.glossary-active span {
  flex: 1;
  height: 1px;
  background: #ddd;
}

.glossary-active h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-blue);
}

/* GRID */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* CARD */
.glossary-card {
  background: var(--primary-blue);
  color: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  transition: 0.35s;
}

.glossary-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(46,82,164,0.45);
}

/* TITLE */
.glossary-card h4 {
  color: var(--primary-green);
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

/* TEXT */
.glossary-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* MOBILE */
@media (max-width: 576px) {
  .glossary-active h2 {
    font-size: 2.2rem;
  }
}

.glossary-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(
    135deg,
    rgba(46,82,164,0.06),
    rgba(213,224,65,0.08)
  );
  border-radius: 24px;
  animation: fadeUp 0.4s ease;
}

.empty-illustration {
  max-width: 260px;
  margin: 0 auto 24px;
}

.empty-illustration img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.glossary-empty-state h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary-blue);
  margin-bottom: 10px;
}

.glossary-empty-state p {
  max-width: 420px;
  margin: 0 auto;
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* subtle entrance animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===============================
       CLIMATE TIPS 
================================ */

.climate-tips {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(213,224,65,0.08) 100%
  );
}

.climate-tips-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--secondary-blue);
}

.climate-tips-subtitle {
  max-width: 720px;
  margin: 16px auto 70px;
  text-align: center;
  font-size: 1.05rem;
  opacity: 0.85;
}

/* GRID → 2 cards per row on desktop */
.climate-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.climate-tip-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 20px 50px rgba(46,82,164,0.18);
  transition: all 0.35s ease;
}

.climate-tip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(46,82,164,0.35);
}

/* ILLUSTRATION */
.tip-illustration {
  background: linear-gradient(
    135deg,
    rgba(46,82,164,0.12),
    rgba(213,224,65,0.18)
  );
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.tip-illustration img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* CONTENT */
.tip-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-blue);
  margin-bottom: 16px;
}

.tip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tip-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.tip-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 800;
  color: var(--primary-blue);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .climate-tips-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .climate-tip-card {
    grid-template-columns: 1fr;
  }

  .tip-illustration {
    min-height: 180px;
  }
}

@media (max-width: 480px) {
  .climate-tip-card {
    padding: 26px;
  }

  .climate-tips-title {
    font-size: 2.2rem;
  }
}

/* ============================================ */
/* --- consulting workshop --- */
/* ===== SLIDER WRAPPER ===== */
.workshop-slider-wrapper {
  margin: 60px auto 20px;
  max-width: 1200px;
  text-align: center;
}

.workshop-slider-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary-blue);
  margin-bottom: 30px;
}

/* ===== SLIDES ===== */
.workshop-slide,
.logo-slide {
  /* background: #ffffff; */
  border: 1px solid var(--primary-green);
  border-radius: 18px;
  padding: 18px;
  /* box-shadow: 0 14px 36px rgba(0,0,0,0.12); */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
}

.workshop-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* Logos */
.logo-slide img {
  max-width: 260px;
  max-height: 180px;
  object-fit: contain;
  opacity: 0.85;
  transition: 0.3s;
}



/* Swiper spacing */
.swiper {
  padding-bottom: 10px;
}

/* ===== SLIDE BASE ===== */
.workshop-slide {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,0.14);
  height: 260px;
}

.workshop-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== META OVERLAY ===== */
.workshop-meta {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 16px 18px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.05)
  );
  color: #ffffff;
}

.workshop-meta h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

/* META ROW */
.meta-row {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  opacity: 0.9;
}

.meta-row i {
  margin-right: 6px;
  color: var(--primary-green);
}

/* ===== RESPONSIVE HEIGHT ===== */
@media (max-width: 992px) {
  .workshop-slide {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .workshop-slide {
    height: 200px;
  }

  .meta-row {
    flex-direction: column;
    gap: 4px;
  }
}

/* ================= COURSE SECTION ================= */

.course-section{
  padding: 20px 0;
  background: #fff;
}

.course-row{
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--primary-green);
  padding: 20px 15px;
  margin-bottom: 20px;
}

/* ---------- CARD ---------- */
.course-card{
  border: 2px solid #e8eef8;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  background: #fafcff;
}

.course-card img{
  width: 100%;
  max-width: 200px;
}

/* ---------- META ---------- */
.course-meta{
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.meta-item{
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-circle{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e6f04c;
  color: #1f3c88;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meta-text{
  font-weight: 700;
  color: #1f3c88;
}

/* ---------- CONTENT ---------- */
.course-content{
  max-width: 520px;
}

.course-title{
  font-weight: 800;
  margin-bottom: 12px;
}

.course-desc{
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ---------- BUTTON ---------- */
.btn-enroll{
  background: #1f3c88;
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 40px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-enroll:hover{
  background: #142b63;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px){
  .course-row{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .course-meta{
    flex-direction: row;
    justify-content: center;
  }
}


/* =================== */
/* ---- hand book section --- */
/* ================= HANDBOOK SECTION ================= */

.handbook-section {
  padding: 70px 0;
  background: #f9fbff;
}

.handbook-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 per row */
  gap: 28px;
  justify-items: center;
}

.handbook-card {
  text-align: center;
  text-decoration: none;
  color: #000;
}

.handbook-card img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto 14px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: 0.3s;
}

.handbook-card:hover img {
  transform: translateY(-6px);
}

.handbook-card h5 {
  font-weight: 700;
  font-size: 0.95rem;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .handbook-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .handbook-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .handbook-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .handbook-grid {
    grid-template-columns: 1fr;
  }
}