/* =============================================
   DURABLE IMPACT — styles.css
============================================= */

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --font-main:       'Poppins', 'Segoe UI', sans-serif;
  --color-white:     #ffffff;
  --color-dark:      #1a1a1a;
  --color-text:      #2d2d2d;
  --color-muted:     #555555;
  --color-border:    #e8e8e8;
  --color-bg-light:  #f6f6f6;
  --color-teal:      #1ABCB0;
  --color-teal-dark: #0E9E93;
  --header-height:   76px;
  --max-width:       1200px;
  --transition:      0.2s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* =============================================
   HEADER
============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: var(--header-height);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ---------- LOGO ---------- */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ---------- DESKTOP NAV ---------- */
.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu > li { position: relative; }

/* Top-level nav link */
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: var(--header-height);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  border: none;
  background: none;
  font-family: var(--font-main);
  transition: color var(--transition);
}

/* Underline indicator on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--color-dark);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.has-dropdown:hover > .nav-link::after,
.has-dropdown:focus-within > .nav-link::after {
  transform: scaleX(1);
}

/* Academy external link */
.nav-link.academy-link {
  color: var(--color-teal);
}

.nav-link.academy-link::after {
  background: var(--color-teal);
}

.nav-link.academy-link:hover {
  color: var(--color-teal-dark);
}

.ext-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Arrow chevron */
.nav-arrow {
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.has-dropdown:hover > .nav-link .nav-arrow,
.has-dropdown:focus-within > .nav-link .nav-arrow {
  transform: rotate(180deg);
}

/* ---------- CTA BUTTON ---------- */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding: 10px 22px;
  background: var(--color-teal);
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.nav-cta-btn:hover {
  background: var(--color-teal-dark);
  transform: scale(1.03);
}

/* ---------- DROPDOWN PANEL ---------- */
.dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.14);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 200;
}

.has-dropdown.align-right .dropdown {
  left: auto;
  right: 0;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  transition: background var(--transition);
  white-space: nowrap;
}

.dropdown li a:hover { background: var(--color-bg-light); }

/* Divider inside dropdown */
.drop-divider {
  height: 1px;
  background: var(--color-border);
  margin: 6px 0;
}

/* ---------- BURGER BUTTON ---------- */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  flex-shrink: 0;
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.mobile-nav.open {
  max-height: 90vh;
  overflow-y: auto;
}

.mobile-menu { padding: 8px 0 32px; }

/* Academy mobile standalone link */
.mobile-academy-link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--color-teal);
  text-decoration: none;
  transition: background var(--transition);
}

.mobile-academy-link:hover { background: var(--color-bg-light); }

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--color-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.mobile-nav-link:hover { background: var(--color-bg-light); }
.mobile-nav-link .nav-arrow { transition: transform var(--transition); }
.mobile-nav-link.active .nav-arrow { transform: rotate(180deg); }

.mobile-dropdown { display: none; background: var(--color-bg-light); }
.mobile-dropdown.open { display: block; }

.mobile-dropdown li a {
  display: block;
  padding: 11px 24px 11px 44px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  transition: background var(--transition);
}

.mobile-dropdown li a:hover { background: #ececec; }

/* Mobile CTA */
.mobile-cta-wrap { padding: 12px 24px 0; }

.mobile-cta-btn {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--color-teal);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  text-decoration: none;
}

/* ---------- RESPONSIVE BREAKPOINT ---------- */
@media (max-width: 1024px) {
  .main-nav    { display: none; }
  .nav-cta-btn { display: none; }
  .burger-btn  { display: flex; }
  .mobile-nav  { display: block; }
}

/* =============================================
   MAIN (offset for fixed header)
============================================= */
#content {
  margin-top: var(--header-height);
  min-height: 60vh;
}

/* =============================================
   HERO SECTION
============================================= */
#hero {
  position: relative;
  min-height: 85vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  opacity: 1;
  transition: opacity 1.5s ease;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-image.hidden { opacity: 0; }

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.5s ease;
  pointer-events: none;
}

.hero-bg-video.visible { opacity: 1; }

.hero-bg-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}

.hero-line-top,
.hero-line-bottom {
  font-family: var(--font-main);
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-animated-word {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 80px;
}

.animated-word {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 80px;
  font-weight: 700;
  color: #FFD546;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
  animation: slideInFromRight 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.animated-word.slide-out {
  animation: slideOutToRight 0.4s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

@keyframes slideInFromRight {
  from { opacity: 0; transform: translateX(60px); clip-path: inset(0 0 0 100%); }
  to   { opacity: 1; transform: translateX(0);    clip-path: inset(0 0 0 0%); }
}

@keyframes slideOutToRight {
  from { opacity: 1; transform: translateX(0);    clip-path: inset(0 0 0 0%); }
  to   { opacity: 0; transform: translateX(60px); clip-path: inset(0 100% 0 0); }
}

.hero-cta-wrap { margin-top: 32px; }

.hero-subtitle {
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 20px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-cta-btn {
  display: inline-block;
  background-color: #812926;
  color: #FFD546;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(129,41,38,0.4);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta-btn:hover {
  background-color: #9e3230;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(129,41,38,0.5);
}

@media (max-width: 767px) {
  .hero-line-top, .hero-line-bottom { font-size: 32px; }
  .hero-animated-word { height: 70px; padding: 0; }
  .animated-word { font-size: 50px; }
  .hero-cta-btn { font-size: 14px; padding: 14px 28px; }
}

@media (max-width: 480px) {
  .hero-line-top, .hero-line-bottom { font-size: 26px; }
  .animated-word { font-size: 40px; }
}

/* =============================================
   WELCOME SECTION
============================================= */
#welcome { background: #ffffff; padding: 110px 0; }

.welcome-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 110px;
  display: flex;
  align-items: center;
  gap: 102px;
}

.welcome-text {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.welcome-heading {
  font-family: var(--font-main);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark);
  margin: 0;
}

.welcome-body {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

.btn-green {
  display: inline-block;
  align-self: flex-start;
  background-color: #7EBB55;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-green:hover { background-color: #67924B; transform: scale(1.03); }

.welcome-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-image img { width: 100%; height: auto; display: block; }

@media (max-width: 1024px) {
  .welcome-inner { flex-direction: column; padding: 0 60px; gap: 60px; }
  .welcome-text { flex: none; width: 100%; }
  .welcome-heading { font-size: 38px; }
}

@media (max-width: 767px) {
  #welcome { padding: 80px 0; }
  .welcome-inner { padding: 0 20px; gap: 40px; }
  .welcome-heading { font-size: 32px; }
  .btn-green { font-size: 16px; padding: 16px 30px; }
}

/* =============================================
   INSPIRE / CONNECT / ENABLE SECTION
============================================= */
#inspire-connect-enable { background-color: #F0FAFB; padding: 85px 0; }

.ice-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 110px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.ice-image { flex: 0 0 29%; display: flex; align-items: center; justify-content: center; }

.ice-image img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.ice-columns { flex: 1; display: flex; gap: 40px; align-items: flex-start; }
.ice-col { flex: 1; display: flex; flex-direction: column; gap: 16px; }

.ice-heading {
  font-family: var(--font-main);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
  line-height: 1.2;
}

.ice-col p {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

@media (max-width: 1024px) {
  .ice-inner { flex-direction: column; padding: 0 60px; gap: 60px; }
  .ice-image { flex: none; }
  .ice-image img { max-width: 260px; }
  .ice-columns { gap: 30px; }
}

@media (max-width: 767px) {
  #inspire-connect-enable { padding: 60px 0; }
  .ice-inner { padding: 0 20px; }
  .ice-columns { flex-direction: column; gap: 40px; }
  .ice-image { display: none; }
  .ice-heading { font-size: 26px; }
}

/* =============================================
   MAKING IMPACT ACROSS SECTORS
============================================= */
#making-impact { background: #ffffff; padding: 112px 0; }

.making-impact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 110px;
  display: flex;
  align-items: center;
  gap: 119px;
}

.making-impact-text { flex: 0 0 40%; display: flex; flex-direction: column; gap: 32px; }

.making-impact-text h2 {
  font-family: var(--font-main);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark);
  margin: 0;
}

.making-impact-text p { font-size: 16px; line-height: 1.7; color: var(--color-text); margin: 0; }
.making-impact-image { flex: 1; }
.making-impact-image img { width: 100%; height: auto; display: block; }

@media (max-width: 1024px) {
  #making-impact { padding: 80px 0; }
  .making-impact-inner { flex-direction: column-reverse; padding: 0 60px; gap: 60px; }
  .making-impact-text { flex: none; width: 100%; }
}

@media (max-width: 767px) {
  .making-impact-inner { padding: 0 20px; }
  .making-impact-text h2 { font-size: 32px; }
}

/* =============================================
   IMPACT REPORT
============================================= */
#impact-report { background-color: #FCFAF4; padding: 105px 0 73px; }

.impact-report-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 79px 0 76px;
  display: flex;
  align-items: center;
  gap: 93px;
}

.impact-report-image { flex: 0 0 44%; }
.impact-report-image img { width: 100%; height: auto; display: block; }
.impact-report-text { flex: 1; display: flex; flex-direction: column; gap: 28px; }

.impact-report-text h2 {
  font-family: var(--font-main);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark);
  margin: 0;
}

.impact-report-text p { font-size: 16px; line-height: 1.7; color: var(--color-text); margin: 0; }

@media (max-width: 1024px) {
  #impact-report { padding: 80px 0; }
  .impact-report-inner { flex-direction: column; padding: 0 60px; gap: 60px; }
  .impact-report-image { flex: none; width: 100%; }
}

@media (max-width: 767px) {
  .impact-report-inner { padding: 0 20px; gap: 40px; }
  .impact-report-text h2 { font-size: 32px; }
}

/* =============================================
   CTA CARDS
============================================= */
#cta-cards { width: 100%; padding-top: 62px; }

.cta-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  min-height: 600px;
}

.cta-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  min-height: 600px;
  cursor: pointer;
}

.cta-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.cta-card:hover img { transform: scale(1.04); }

.cta-card-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.cta-card:hover .cta-card-overlay { opacity: 0.88; }

.cta-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.cta-card-top h4 {
  font-family: var(--font-main);
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
}

.cta-card-hover {
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  margin-top: 20px;
}

.cta-card:hover .cta-card-hover { opacity: 1; transform: translateY(0); }

.cta-card-hover-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cta-card-hover-top h4 {
  font-family: var(--font-main);
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
}

.cta-card-hover-top .cta-arrow { font-size: 32px; color: #ffffff; flex-shrink: 0; margin-top: 8px; }
.cta-card-hover p { font-family: var(--font-main); font-size: 16px; line-height: 1.6; color: #ffffff; margin: 0; }
.cta-join-now { display: flex; align-items: center; gap: 12px; margin-top: 8px; font-family: var(--font-main); font-size: 16px; font-weight: 600; color: #ffffff; }
.cta-arrow-lg { font-size: 24px; font-weight: 700; color: #ffffff; }
.cta-card:hover .cta-card-top { display: none; }

@media (max-width: 1024px) {
  .cta-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { min-height: 420px; }
  .cta-card-top h4, .cta-card-hover-top h4 { font-size: 35px; }
}

@media (max-width: 767px) {
  .cta-cards-grid { grid-template-columns: 1fr; }
  .cta-card { min-height: 320px; }
  .cta-card-top h4, .cta-card-hover-top h4 { font-size: 28px; }
}

/* =============================================
   LOCALLY ROOTED, GLOBALLY CONNECTED
============================================= */
#locally-rooted { background: #ffffff; padding: 85px 0 0; }

.locally-rooted-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 110px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.locally-rooted-text { width: 69%; display: flex; flex-direction: column; gap: 24px; }

.locally-rooted-text h2 {
  font-family: var(--font-main);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark);
  margin: 0;
}

.locally-rooted-text p { font-size: 16px; line-height: 1.7; color: var(--color-text); margin: 0; }

.locally-rooted-map { width: calc(100% + 220px); margin-left: -110px; }
.locally-rooted-map iframe { width: 100%; height: 56.25vw; min-height: 400px; border: 0; display: block; }

@media (max-width: 1024px) {
  #locally-rooted { padding: 80px 0 0; }
  .locally-rooted-inner { padding: 0 60px; }
  .locally-rooted-text { width: 100%; }
  .locally-rooted-map { width: calc(100% + 120px); margin-left: -60px; }
}

@media (max-width: 767px) {
  .locally-rooted-inner { padding: 0 20px; gap: 40px; }
  .locally-rooted-text h2 { font-size: 32px; }
  .locally-rooted-map { width: calc(100% + 40px); margin-left: -20px; }
  .locally-rooted-map iframe { min-height: 280px; }
}

/* =============================================
   FOOTER
============================================= */
#site-footer {
  background-color: #1C395C;
  color: #ffffff;
  font-family: var(--font-main);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 50px 90px 80px;
  display: flex;
  gap: 0 102px;
  align-items: flex-start;
}

.footer-left { flex: 0 0 24%; display: flex; flex-direction: column; gap: 28px; }
.footer-newsletter-btn { align-self: flex-start; font-size: 20px; padding: 16px 32px; }
.footer-logo img { width: 220px; height: auto; display: block; }

.footer-tagline {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}

.footer-right { flex: 1; display: flex; flex-direction: column; gap: 0; align-items: flex-end; }
.footer-nav { width: 100%; }

.footer-nav > ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 0 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-nav > ul > li { position: relative; cursor: pointer; }

.footer-nav > ul > li > span {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  padding: 8px 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-nav .fn-arrow { font-size: 10px; opacity: 0.8; }

.footer-nav .fn-sub {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.18);
  padding: 10px 0;
  min-width: 200px;
  list-style: none;
  z-index: 200;
}

.footer-nav > ul > li:hover .fn-sub { display: block; }

.footer-nav .fn-sub li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
}

.footer-nav .fn-sub li a:hover { background: #f6f6f6; }

.footer-bottom-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  margin-top: 60px;
}

.footer-social { display: flex; gap: 14px; justify-content: flex-end; }

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.footer-social-icon:hover { background: #EDEFF2; }
.footer-social-icon svg { width: 18px; height: 18px; fill: #1C395C; }

.footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  color: #ffffff;
  text-align: right;
}

.footer-address strong { font-weight: 700; }
.footer-address a { color: #ffffff; font-weight: 700; text-decoration: underline; }
.footer-address a:hover { color: #FFD546; }

@media (max-width: 1024px) {
  .footer-inner { flex-direction: column; padding: 60px 60px 80px; gap: 50px; }
  .footer-left { flex: none; width: 100%; }
  .footer-right { align-items: flex-start; }
  .footer-nav > ul { justify-content: flex-start; }
  .footer-bottom-row { align-items: flex-start; }
  .footer-address { text-align: left; }
  .footer-social { justify-content: flex-start; }
  .footer-nav .fn-sub { right: auto; left: 0; }
}

@media (max-width: 767px) {
  .footer-inner { padding: 60px 20px 80px; }
  .footer-nav > ul { flex-direction: column; gap: 8px; }
  .footer-tagline { font-size: 17px; }
}