/* Design System Color Palette */
:root {
  /* Primary Backgrounds */
  --dark-teal: #0E3B3A;
  --deeper-teal: #0B2F2E;
  --card-teal: #0F4442;
  --stats-icon-bg: #1C5654;

  /* Accent Colors */
  --light-green: #B8F2C9;
  --medium-green: #9FE3B2;
  --hover-green: #E6FFF2;
  --white: #FFFFFF;
  --secondary-text: #D8EDE8;
  --muted-text: #C6D6D4;

  /* Light Section Backgrounds */
  --light-bg: #F3F6F5;
  --lighter-bg: #EAF2F0;

  /* Legacy variables for backward compatibility */
  --main-green: var(--medium-green);
  --main-green-dark: var(--dark-teal);
  --main-bg: var(--light-bg);
  --main-white: var(--white);
  --main-gray: #e0e0e0;
  --main-text: #1a1a1a;
}

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

html {
  scroll-behavior: smooth;
}

html * {
  font-family: "Inter", "Poppins", sans-serif;
}

body {
  background: var(--deeper-teal);
  color: var(--main-text);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

p,
li,
a,
span,
.lead {
  color: inherit;
}

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

/* ===== NAVBAR ===== */
.navbar-redesign {
  background: var(--dark-teal);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  padding: 0 80px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar-redesign.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-redesign .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.navbar-redesign .navbar-brand {
  color: var(--white) !important;
  font-size: 26px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.navbar-redesign .nav-link {
  color: var(--secondary-text) !important;
  font-size: 14px;
  font-weight: 400;
  margin: 0 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-redesign .nav-link:hover {
  color: var(--white) !important;
}

.navbar-book-btn {
  background: transparent;
  color: var(--light-green);
  border: 1.5px solid rgba(184, 242, 201, 0.5);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.navbar-btn-icon {
  background: var(--light-green);
  color: var(--dark-teal);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.navbar-book-btn:hover {
  background: rgba(184, 242, 201, 0.1);
  border-color: var(--light-green);
  transform: scale(1.03);
}

.navbar-redesign .navbar-toggler {
  border-color: var(--light-green);
}

.navbar-redesign .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28184,242,201,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  .navbar-redesign {
    padding: 0 24px;
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
  }

  .navbar-redesign .navbar-collapse {
    background: rgba(14, 59, 58, 0.98);
    padding: 20px;
    margin-top: 10px;
    border-radius: 8px;
    width: 100%;
  }

  .navbar-redesign .nav-link {
    margin: 5px 0;
    font-size: 16px;
  }

  .navbar-book-btn {
    margin-top: 15px;
    width: 100%;
    justify-content: center;
  }
}

/* Ensure nav links display inline on desktop without Bootstrap */
@media (min-width: 992px) {
  .navbar-redesign .navbar-collapse {
    display: flex !important;
    align-items: center;
  }

  .navbar-redesign .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    gap: 32px;
  }

  .navbar-redesign .navbar-toggler {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, var(--dark-teal), var(--deeper-teal));
  border-radius: 24px;
  margin: 24px auto;
  max-width: 1280px;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 40px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.hero-label {
  font-size: 16px;
  color: var(--muted-text);
  text-transform: none;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 400;
}

.hero-title {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .text-green {
  color: var(--light-green);
}

.hero-subtitle {
  color: var(--muted-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-btn {
  background: transparent;
  color: var(--light-green);
  border: 1.5px solid rgba(184, 242, 201, 0.5);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-btn-icon {
  background: var(--light-green);
  color: var(--dark-teal);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.hero-cta-btn:hover {
  background: rgba(184, 242, 201, 0.1);
  border-color: var(--light-green);
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(184, 242, 201, 0.15);
}

/* Hero Decorative SVGs */
.hero-decorative {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.hero-decorative {
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-decorative:nth-child(2) {
  animation-delay: -1.5s;
  animation-duration: 7s;
}

.hero-decorative:nth-child(3) {
  animation-delay: -3s;
  animation-duration: 8s;
}

.hero-decorative:nth-child(4) {
  animation-delay: -4s;
  animation-duration: 5s;
}

.hero-decorative:nth-child(5) {
  animation-delay: -2s;
  animation-duration: 9s;
}

@media (max-width: 991px) {
  .hero-decorative {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    margin: 16px;
    min-height: 400px;
    padding: 60px 24px 40px;
    border-radius: 16px;
  }

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

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

@media (max-width: 1024px) and (min-width: 769px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-section {
    padding: 60px 40px 40px;
  }
}

/* ===== CLIENT LOGO STRIP ===== */
.brand-logos-bar {
  background: var(--dark-teal);
  padding: 48px 80px;
}

.brand-logos-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.brand-logo {
  opacity: 0.6;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: default;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.brand-logo:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .brand-logos-bar {
    padding: 32px 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .brand-logos-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 40px;
    min-width: max-content;
  }

  .brand-logo {
    font-size: 14px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .brand-logos-bar {
    padding: 40px 40px;
  }

  .brand-logos-inner {
    gap: 36px;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section-redesign {
  background: var(--white);
  padding: 100px 80px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

/* .about-text-block {
  position: relative;
  padding: 40px;
} */

/* .about-text-block::before,
.about-text-block::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: #d0d0d0;
  border-style: solid;
  pointer-events: none;
} */

/* .about-text-block::before {
  top: 0;
  right: 0;
  border-width: 1.5px 1.5px 0 0;
} */

/* .about-text-block::after {
  bottom: 0;
  right: 0;
  border-width: 0 1.5px 1.5px 0;
} */

.about-images-grid {
  /* display: grid; */
  /* grid-template-columns: 1fr 1fr; */
  /* grid-template-rows: auto auto; */
  /* gap: 16px; */
  position: relative;
  width: 100%;
  max-width: 480px;
  /* match your Figma frame width */
  aspect-ratio: 389 / 492;
  /* lock to Figma frame ratio */
  overflow: hidden;
  /* THIS is what clips the overflow */
  margin: 0 auto;
}

.about-img {
  /* width: 100%;
  display: flex;
  border-radius: 12px;
  object-fit: cover; */
  position: absolute;
  display: block;
}

.about-img-1 {
  /* grid-column: 1 / 3;
  grid-row: 1 / 3; */
  /* height: 100%; */
  /* width: 100%;
  max-width: 389px; */
  /* restore original size */
  /* height: auto;
  transform: rotate(-15deg); */
  width: 90%;
  height: 80%;
  /* top: 10; */
  left: 0;
  bottom: 0;
  object-fit: contain;
}

.about-img-2 {
  /* grid-column: 2 / 3;
  grid-row: 1 / 2; */
  /* Union */

  /* position: absolute;
  width: 286px;
  height: 430px;
  left: 196px;
  top: 244px;
  z-index: 2; */
  /* position: absolute;
  width: 73.5%;
  aspect-ratio: 286 / 430; */
  /* keeps height proportional */
  /* left: 50.4%;
  top: 49.6%; */
  width: 45.5%;
  /* 286/389 */
  left: 48.4%;
  /* 196/389 */
  top: 43.6%;
}

.about-img-3 {
  /* grid-column: 2 / 3;
  grid-row: 2 / 3; */
  /* position: absolute;
  width: 80px; */
  /* was 130px → smaller */
  top: 5%;
  /* was 5% → move down */
  /* left: 48%;
  z-index: 3; */
  width: 30%;
  left: 65%;
  /* bottom: 24; */
}

.about-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
  font-weight: 500;
}

.about-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: 24px;
}

.about-text {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

@media (max-width: 1024px) {
  .about-section-redesign {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .about-section-redesign {
    padding: 48px 24px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .about-images-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }

  .about-img-1 {
    grid-column: 1 / -1;
    grid-row: auto;
    height: auto;
  }

  .about-img-2 {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .about-img-3 {
    grid-column: 2 / 3;
    grid-row: auto;
  }

  .about-title {
    font-size: 28px;
  }
}

/* ===== SERVICES INTRO ===== */
.services-intro {
  background: var(--white);
  padding: 80px 80px;
  text-align: center;
}

.services-intro-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.services-intro h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: 20px;
}

.services-intro p {
  max-width: 620px;
  margin: 0 auto 36px;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.btn-outline-pill {
  background: transparent;
  color: var(--dark-teal);
  border: 1.5px solid var(--dark-teal);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-pill-icon {
  background: var(--dark-teal);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.btn-outline-pill:hover {
  background: var(--dark-teal);
  color: var(--white);
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .services-intro {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .services-intro {
    padding: 48px 24px;
  }

  .services-intro h2 {
    font-size: 24px;
  }
}

/* ===== CORE SERVICES SECTION ===== */
.core-services-section {
  background: var(--dark-teal);
  border-radius: 32px;
  padding: 80px;
  max-width: 1280px;
  margin: 0 auto 0;
  color: var(--white);
}

.core-services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.core-services-icon {
  width: 48px;
  height: 48px;
  background: var(--card-teal);
  border: 1px solid rgba(184, 242, 201, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--light-green);
  font-size: 1.1rem;
}

.core-services-title {
  color: var(--light-green);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.3;
}

.core-services-desc {
  color: var(--muted-text);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 10px 0;
  color: var(--secondary-text);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}

.service-list li::before {
  content: "✓";
  color: var(--light-green);
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.mobile-mockup {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .core-services-section {
    padding: 60px 40px;
    margin: 0 24px;
  }
}

@media (max-width: 768px) {
  .core-services-section {
    padding: 48px 24px;
    margin: 0 16px;
    border-radius: 20px;
  }

  .core-services-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .core-services-title {
    font-size: 24px;
  }
}

/* ===== COMPETENCIES & CAPABILITIES ===== */
.competencies-redesign {
  background: var(--white);
  padding: 100px 80px;
}

.competencies-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.competencies-redesign h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: 48px;
  text-align: left;
}

.competency-list-redesign {
  display: flex;
  flex-direction: column;
}

.competency-item-redesign {
  background: transparent;
  padding: 28px 32px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.35s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark-teal);
  border-radius: 0;
}

.competency-item-redesign:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
}

.competency-list-redesign>.accordion-content:last-child {
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.competency-item-redesign:hover,
.competency-item-redesign.active {
  background: var(--dark-teal);
  color: var(--light-green);
  border-radius: 12px;
  margin: 4px -8px;
  padding: 28px 40px;
  border-color: transparent;
}

.competency-arrow-icon {
  color: var(--dark-teal);
  transition: all 0.35s ease;
  flex-shrink: 0;
  transform: rotate(45deg);
  font-size: 18px;
}

.competency-item-redesign:hover .competency-arrow-icon,
.competency-item-redesign.active .competency-arrow-icon {
  color: var(--light-green);
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: transparent;
  border-bottom: none;
}

.accordion-content-inner {
  padding: 0 32px 24px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .competencies-redesign {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .competencies-redesign {
    padding: 48px 24px;
  }

  .competencies-redesign h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .competency-item-redesign {
    padding: 22px 20px;
    font-size: 16px;
  }

  .accordion-content-inner {
    padding: 0 20px 18px;
  }
}

/* ===== GLOBAL PRESENCE / GLOBE SECTION ===== */
.globe-section {
  background: var(--dark-teal);
  padding: 100px 80px;
  color: var(--white);
}

.globe-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.globe-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.globe-section h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.3;
}

.globe-section .globe-desc {
  color: var(--muted-text);
  font-size: 16px;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: var(--stats-icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--light-green);
  font-size: 1.2rem;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted-text);
}

.world-map-container {
  position: relative;
  text-align: center;
}

.world-map-container img {
  max-width: 100%;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .globe-section {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .globe-section {
    padding: 48px 24px;
  }

  .globe-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .globe-section h2 {
    font-size: 28px;
  }

  .world-map-container img {
    max-width: 100%;
  }

  .stat-value {
    font-size: 24px;
  }

  .stats-grid {
    gap: 16px;
    margin-top: 24px;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(90deg, var(--light-green), var(--medium-green));
  border-radius: 24px;
  padding: 48px 64px;
  max-width: 1280px;
  margin: 80px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--dark-teal);
  margin: 0 0 8px;
  line-height: 1.3;
}

.cta-subtitle {
  color: var(--dark-teal);
  font-size: 16px;
  opacity: 0.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.cta-btn-primary {
  background: transparent;
  color: var(--dark-teal);
  border: 1.5px solid var(--dark-teal);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn-primary:hover {
  background: var(--dark-teal);
  color: var(--white);
  transform: scale(1.03);
}

.cta-btn-secondary {
  background: var(--dark-teal);
  color: var(--white);
  border: 1.5px solid var(--dark-teal);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn-secondary:hover {
  background: var(--deeper-teal);
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .cta-section {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    margin: 48px 16px;
    border-radius: 16px;
  }

  .cta-title {
    font-size: 24px;
  }

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

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* ===== FOOTER ===== */
.footer-redesign {
  background: var(--deeper-teal);
  color: var(--white);
  padding: 60px 80px 32px;
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-redesign .footer-logo {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-nav a {
  color: var(--muted-text);
  text-decoration: underline;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--light-green);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--light-green);
  font-size: 20px;
  transition: color 0.3s ease;
}

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

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

.footer-contact p {
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(184, 242, 201, 0.15);
  padding-top: 24px;
  font-size: 14px;
  color: var(--muted-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-bottom strong {
  color: var(--white);
  font-weight: 600;
}

.footer-bottom a {
  color: var(--muted-text);
  text-decoration: underline;
  font-size: 14px;
}

.footer-bottom a:hover {
  color: var(--light-green);
}

@media (max-width: 1024px) {
  .footer-redesign {
    padding: 48px 40px 24px;
  }
}

@media (max-width: 768px) {
  .footer-redesign {
    padding: 40px 24px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger children animations */
.fade-in:nth-child(2) {
  transition-delay: 0.15s;
}

.fade-in:nth-child(3) {
  transition-delay: 0.3s;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== BUTTON GLOBAL HOVER ===== */
button:focus,
.btn:focus {
  outline: none;
  box-shadow: none;
}