/* =============================================
   SDE GROUP — MASTER STYLESHEET
   Project: www.sdegroup.com.my
   Stack: Bootstrap 5 + Custom CSS
   Colors: Navy #0a1f44 | Gold #c9a84c
   Fonts: Playfair Display + Inter
   ============================================= */

/* ---- 1. CSS VARIABLES ---- */
:root {
  --navy: #0a1f44;
  --navy-dark: #060f22;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --light-bg: #f7f7f7;
  --mid-gray: #e5e5e5;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --transition: all 0.3s ease;
  --section-padding: 100px;
}

/* ---- 2. GLOBAL BASE ---- */
html {
  scroll-behavior: smooth;
}

@media (max-width: 767.98px) {
  /* Prevent any text from breaking out of its container on small screens */
  h1, h2, h3, h4, h5, h6, p, span, a, div {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .section-title {
    font-size: 2rem !important;
  }
  .sector-title {
    font-size: 0.7rem !important;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    hyphens: auto;
  }
  .pillar-subtitle {
    font-size: 0.65rem !important;
    word-wrap: break-word;
  }
  .pillar-title {
    font-size: 1.15rem !important;
  }
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

p {
  max-width: 700px;
}

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

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

/* ---- 3. UTILITIES ---- */
.text-gold {
  color: var(--gold) !important;
}

.text-navy {
  color: var(--navy) !important;
}

.bg-navy {
  background-color: var(--navy) !important;
}

.bg-navy-dark {
  background-color: var(--navy-dark) !important;
}

/* ---- 4. SECTIONS ---- */
.section-light {
  background-color: var(--light-bg);
  background-image:
    linear-gradient(rgba(10, 31, 68, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 68, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
  padding: var(--section-padding) 0;
  position: relative;
}

.section-navy {
  background-color: var(--navy);
  padding: var(--section-padding) 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-navy p {
  color: rgba(255, 255, 255, 0.85);
}

/* Ambient Aurora Glows for Dark Sections */
.aurora-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  z-index: 0;
  pointer-events: none;
  animation: float-aurora 6s infinite ease-in-out alternate;
}

.aurora-1 {
  background: rgba(201, 168, 76, 0.15);
  /* Soft Gold */
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
}

.aurora-2 {
  background: rgba(13, 42, 94, 0.8);
  /* Lighter Navy/Blue */
  width: 800px;
  height: 800px;
  bottom: -200px;
  left: -200px;
  animation-delay: -5s;
}

@keyframes float-aurora {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-50px, 50px) scale(1.1);
  }

  100% {
    transform: translate(50px, -50px) scale(0.9);
  }
}

/* ---- 5. SECTION HEADINGS ---- */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.625rem;
  font-weight: 700;
  text-align: center;
}

.section-title-bar {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.75rem auto 2.5rem;
  border-radius: 2px;
}

.section-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-align: center;
  display: block;
  margin-bottom: 0.5rem;
}

/* Header CSS has been moved to header.css */

/* ---- 7. BUTTONS ---- */
.btn-sde-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  border: 2px solid var(--gold);
  transition: var(--transition);
}

.btn-sde-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: scale(1.03);
}

.btn-sde-outline {
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  border: 2px solid var(--gold);
  transition: var(--transition);
}

.btn-sde-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.03);
}

.btn-sde-ghost {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.btn-sde-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.03);
}

/* ---- 8. HERO SECTION ---- */
.hero-section {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
}

.hero-tagline {
  font-size: 1.375rem;
  color: var(--gold);
  font-weight: 500;
  display: table;
  margin: 0 auto;
  text-align: center;
}

.hero-desc {
  font-size: 1.0625rem;
  color: rgba(10, 31, 68, 0.75);
  max-width: 680px;
  margin: 0 auto 2rem;
}

.scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ---- 9. PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 160px 0 70px;
  color: var(--white);
}

.page-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 0.5rem;
}

.page-hero-sub {
  font-size: 1.125rem;
  color: var(--gold);
  margin-top: 0.5rem;
}

.sde-breadcrumb .breadcrumb-item a {
  color: var(--gold);
}

.sde-breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

.sde-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ---- 10. CARDS ---- */
.sde-card {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--mid-gray);
  padding: 2.25rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.sde-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
}

.sde-card-icon {
  font-size: 2.25rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Footer CSS has been moved to footer.css */

/* ---- 12. BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

/* ---- 13. SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 {
  transition-delay: 0.1s;
}

.fade-up.delay-2 {
  transition-delay: 0.2s;
}

.fade-up.delay-3 {
  transition-delay: 0.3s;
}

.fade-up.delay-4 {
  transition-delay: 0.4s;
}

/* ---- 14. RESPONSIVE ---- */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .page-hero-title {
    font-size: 2rem;
  }

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

@media (max-width: 767.98px) {
  :root {
    --section-padding: 60px;
  }

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

  .sde-card {
    padding: 1.5rem;
  }

  .page-hero {
    padding: 130px 0 50px;
  }

  .page-hero-title {
    font-size: 1.75rem;
  }
}

/* ---- 15. HERO EXTRAS ---- */
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Decorative animated glowing orbs for a premium glassmorphic feel */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
  animation: orb-float 15s infinite ease-in-out alternate;
  margin-left: var(--px, 0px);
  margin-top: var(--py, 0px);
  transition: margin 0.1s ease-out;
}

.hero-orb-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  top: -200px;
  left: -200px;
}

.hero-orb-2 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(13, 42, 94, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -300px;
  right: -200px;
  animation-delay: -5s;
}

.hero-orb-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  top: calc(40% - 300px);
  left: calc(60% - 300px);
  animation-delay: -10s;
}

@keyframes orb-float {
  0% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.1) translate(30px, -50px);
  }

  100% {
    transform: scale(0.9) translate(-20px, 20px);
  }
}

/* Cinematic Noise Overlay */
.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background: url('data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E');
}

/* Tech Blueprint Grid */
@keyframes grid-flow {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 50px 50px;
  }
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(10, 31, 68, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 68, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 90%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 90%);
  animation: grid-flow 25s linear infinite;
}

/* Premium Text Gradient */
.text-gradient-gold {
  background: linear-gradient(135deg, #c9a84c 0%, #9c7b27 50%, #735a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glassmorphic Panel */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

/* ---- 16. WHO WE ARE ---- */
.card-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

/* ---- 17. ECOSYSTEM CARDS (FLIP CARDS) ---- */
.eco-card-wrapper {
  perspective: 1500px;
  min-height: 380px;
  display: block;
}

.eco-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transform-style: preserve-3d;
}

.eco-card-wrapper:hover .eco-card-inner {
  transform: rotateY(180deg);
}

/* Fix for browser bug where backdrop-filter breaks 3D backface-visibility */
.eco-card-front {
  transform: rotateY(0deg) translateZ(1px);
}

.eco-card-front,
.eco-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.eco-card-front::after,
.eco-card-back::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shimmer 6s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    left: -150%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.eco-card-back {
  transform: rotateY(180deg) translateZ(1px);
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.35);
  justify-content: center;
}

.eco-card-featured .eco-card-front {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.35);
}

.eco-badge {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.eco-card-featured .eco-badge {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.eco-hover-prompt {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  font-weight: 500;
}

@keyframes bounce-right {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
    color: var(--gold);
  }
}

.eco-hover-prompt i {
  animation: bounce-right 2s infinite ease-in-out;
}

.eco-card-logo {
  height: 86px;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.eco-logo {
  max-height: 76px;
  max-width: 200px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.eco-card-featured .eco-logo {
  filter: none;
}

.eco-card-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.eco-card-tagline {
  font-size: 0.8125rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.eco-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  flex-grow: 1;
  max-width: 100%;
}

.eco-card-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: var(--transition);
}

.eco-card-link:hover {
  color: var(--gold);
}

.eco-card-link-featured {
  color: var(--gold);
}

.eco-card-link-featured:hover {
  color: var(--gold-light);
}

/* ---- 18. CTA BANNER (GLASS PANEL) ---- */
.cta-banner {
  padding: 120px 0;
  background-color: var(--navy-dark);
}

.cta-glass-panel {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* Shimmer effect inside the glass */
.cta-glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-20deg);
  animation: glass-shimmer 8s infinite;
  pointer-events: none;
}

@keyframes glass-shimmer {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.6;
}

/* Glowing Orbs Behind Glass */
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}

.cta-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(201, 168, 76, 0.3);
  /* Gold */
  top: 50%;
  left: 50%;
  transform: translate(-90%, -50%);
}

.cta-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(13, 42, 94, 0.8);
  /* Navy Blue */
  top: 50%;
  left: 50%;
  transform: translate(-10%, -50%);
}

@media (max-width: 767.98px) {
  .cta-glass-panel {
    padding: 3rem 1.5rem;
  }

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


/* ---- 18. MASA AI SPOTLIGHT ---- */
.masa-spotlight-logo {
  max-width: 320px;
  filter: drop-shadow(0 8px 32px rgba(201, 168, 76, 0.2));
}

.masa-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.masa-pill {
  background: rgba(10, 31, 68, 0.08);
  border: 1px solid var(--mid-gray);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
}

.masa-pill i {
  color: var(--gold);
}

/* ---- 19. WHY SDE GROUP ---- */
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.why-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.why-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 100%;
  margin: 0;
}

/* ---- 20. NEWS CARDS ---- */
.news-card {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--mid-gray);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.news-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  width: fit-content;
}

.news-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.news-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-grow: 1;
  max-width: 100%;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1.25rem;
  transition: var(--transition);
}

.news-card-link:hover {
  color: var(--gold);
}

/* ---- 21. CTA BANNER (GLASS PANEL) ---- */
.cta-banner {
  padding: 120px 0;
  background-color: var(--navy-dark);
}

.cta-glass-panel {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* Shimmer effect inside the glass */
.cta-glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-20deg);
  animation: glass-shimmer 8s infinite;
  pointer-events: none;
}

@keyframes glass-shimmer {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.6;
}

/* Glowing Orbs Behind Glass */
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}

.cta-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(201, 168, 76, 0.3);
  /* Gold */
  top: 50%;
  left: 50%;
  transform: translate(-90%, -50%);
}

.cta-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(13, 42, 94, 0.8);
  /* Navy Blue */
  top: 50%;
  left: 50%;
  transform: translate(-10%, -50%);
}

/* ---- 21. ABOUT PAGE STYLES ---- */
.text-navy { color: var(--navy); }

.pillar-grid-wrapper {
  background: rgba(13, 42, 94, 0.03);
  border-radius: 12px;
  border: 1px solid var(--mid-gray);
  padding: 3rem;
}
.pillar-icon {
  font-size: 3rem;
  color: var(--navy);
  opacity: 0.8;
  margin-bottom: 1rem;
}
.pillar-title {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.vision-glow-1 { top: 0; left: 0; transform: translate(-30%, -30%); width: 600px; height: 600px; }
.vision-glow-2 { bottom: 0; right: 0; transform: translate(30%, 30%); width: 600px; height: 600px; top: auto; left: auto; }

.founder-sticky { top: 120px; }
.founder-img-wrapper {
  background: var(--navy);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-name {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
}
.award-callout {
  background: rgba(201, 168, 76, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  width: fit-content;
}

.quote-panel {
  max-width: 900px;
  width: 100%;
  padding: 5rem 2rem;
}
.quote-icon {
  font-size: 4rem;
  opacity: 0.9;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.quote-text {
  line-height: 1.4;
  max-width: 750px;
}
.quote-divider {
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
.quote-author {
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  margin-right: -0.15em;
}

/* ---- 22. HERO LOGO ANIMATIONS ---- */
.hero-logo-float {
  animation: logo-float 6s ease-in-out infinite;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, box-shadow;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-logo-float:hover {
  transform: translateY(-12px) translateZ(0) !important;
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.5), 0 0 25px rgba(201, 168, 76, 0.3) !important;
  animation-play-state: paused;
}

@keyframes logo-float {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@media (max-width: 767.98px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .masa-spotlight-logo {
    max-width: 220px;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .eco-logo {
    max-height: 64px;
  }
}