/* Lucide icon sizing: inherit size from font-size like the old icon font did */
svg.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 2;
  flex-shrink: 0;
  vertical-align: -0.125em;
}
.brand-icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
:root {
    --primary-color: #0a4d8c;
    --secondary-color: #1976d2;
    --accent-color: #64b5f6;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --ink: #234476;
    --muted: #81888f;
    --paper: #f7f5f0;
    --line: #e3ded2;
    --sand: #c9922a;
    --sand-dark: #a3761f;
}
h1, h2, h3,h4{
color: #244563;
font-family: "Poppins", serif;
  
}

body {
  margin: 0;
  padding: 0;
  background-color: #fcfeff;

}

  

p, a, li{
    font-family: "Public Sans", sans-serif;
color: #1c3147;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo-instagram , .logo-whatsapp{
margin-left: 20px;
padding-right: 20px;

}
a {
  text-decoration: none;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}


/* ============================
   SUBHEADER
============================ */
.subheader {
  background: linear-gradient(90deg, #07356a 0%, #0a4d8c 60%, #0d5fa8 100%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.subheader-hidden {
  transform: translateY(-100%);
}

.subheader-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.subheader-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.sub-info-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color 0.2s;
}
.sub-info-link:hover { color: #fff; }
.sub-info-link i, .sub-info-link svg {
  color: #c9922a;
  font-size: 11px;
  flex-shrink: 0;
}

.subheader-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.sub-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 13px;
  color: #fff;
  background: rgba(255,255,255,0.15);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.sub-social.ig:hover { background: #E1306C; transform: scale(1.15); }
.sub-social.wa:hover { background: #25D366; transform: scale(1.15); }

/* ============================
   HEADER PRINCIPAL
============================ */
:root {
  --subheader-h: 36px;
  --header-h: 72px;
}

body {
  padding-top: calc(var(--subheader-h) + var(--header-h));
}

.header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  position: fixed;
  top: var(--subheader-h);
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.header.header-top {
  top: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}

/* ─ Logo ─ */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo {
  height: 56px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #0a4d8c;
  line-height: 1.35;
  display: none;
}
.logo-text em {
  font-style: normal;
  font-weight: 400;
  color: #1976d2;
  font-size: 11px;
}

/* ─ Nav desktop ─ */
.nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.nav-item { padding: 0; margin: 0; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0a4d8c;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 13px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  position: relative;
  white-space: nowrap;
}

.nav-link-active{
  background: #eef4ff;
  color: #1565c0;
  border-radius: 12px;
}
.nav-link-active::after{
  background: #1976d2;
  border-radius: 2px;
}
.nav-link-active::after {
  transform: scaleX(1);
}

.nav-link i, .nav-link svg { display: none; }

.nav-link:hover {
  background: #eef4ff;
  color: #1565c0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: #1976d2;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-link:hover::after { transform: scaleX(1); }

/* ─ Header right actions ─ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-signup {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: #0a4d8c;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(10,77,140,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-signup:hover {
  transform: translateY(-2px);
  color: #fff !important;
}
.btn-signup i, .btn-signup svg { font-size: 10px; }

/* ─ Hamburger button ─ */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  z-index: 1400;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background 0.2s;
}
.menu-toggle:hover { background: #f0f5ff; }

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #0a4d8c;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
  transform-origin: center;
}

.menu-toggle.is-open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─ Overlay ─ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 990;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}
.nav-overlay.overlay-visible {
  display: block;
  opacity: 1;
}

/* ─ Mobile-only nav sections ─ */
.nav-mobile-top,
.nav-mobile-footer {
  display: none;
}

/* ─ Body scroll lock ─ */
body.menu-open { overflow: hidden; }

/* ============================
   MOBILE BREAKPOINT
============================ */
@media (max-width: 820px) {
  :root {
    --subheader-h: 34px;
    --header-h: 64px;
  }
  .logo { height: 48px; }
  .menu-toggle { display: flex; }
  .btn-signup span { display: none; }
  .btn-signup { padding: 9px 12px; }
  .logo-text { display: block; }
}

@media (max-width: 640px) {
  .btn-signup { display: none; }
}

@media (max-width: 768px) {

  /* ── Slide-in mobile nav (minimalist, matches desktop identity) ── */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(82vw, 320px);
    height: 100dvh;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    box-shadow: -8px 0 30px rgba(16,28,45,0.10);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1300;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
  }

  .nav.nav-open { right: 0; }

  /* ── Mobile nav top: just a close action, logo already visible in header ── */
  .nav-mobile-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 18px 18px 0;
    background: transparent;
    gap: 8px;
  }

  .nav-mobile-logo,
  .nav-mobile-name { display: none; }

  .nav-close {
    background: transparent;
    border: 1px solid #e3e7ee;
    color: #5c6b7a;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .nav-close:hover {
    border-color: #c9922a;
    color: #c9922a;
  }

  /* ── Nav links: clean, corporate, understated ── */
  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 12px 8px 8px;
    flex: 1;
  }

  .nav-item {
    border-bottom: 1px solid #f0f2f6;
  }
  .nav-item:last-child { border-bottom: none; }

  .nav-link {
    font-size: 15px;
    font-weight: 600;
    padding: 15px 14px;
    border-radius: 8px;
    color: #16283f;
    gap: 12px;
    border-left: 2px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease, padding-left 0.15s ease;
  }

  .nav-link i, .nav-link svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: #f5f8ff;
    color: #0a4d8c;
    font-size: 13px;
    flex-shrink: 0;
  }

  .nav-link:hover {
    background: #f9fafc;
    border-left-color: #c9922a;
    padding-left: 18px;
  }
  .nav-link::after { display: none; }

  /* ── Mobile nav footer ── */
  .nav-mobile-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 20px 28px;
    border-top: 1px solid #f0f2f6;
    background: #fafbfc;
  }

  .nav-mobile-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: #ffffff;
    color: #0a4d8c !important;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid #0a4d8c;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .nav-mobile-signup:hover {
    background: #0a4d8c;
    color: #ffffff !important;
  }

  .nav-mobile-socials {
    display: flex;
    gap: 10px;
  }

  .mob-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 15px;
    text-decoration: none;
    background: #f0f2f6;
    color: #5c6b7a;
    transition: background 0.2s, color 0.2s;
  }
  .mob-social.ig:hover { background: #E1306C; color: #fff; }
  .mob-social.wa:hover { background: #25D366; color: #fff; }

  /* Only show email in subheader on mobile */
  .subheader-hide-sm { display: none; }
}

@media (max-width: 380px) {
  :root {
    --header-h: 58px;
  }
  .logo { height: 42px; }
  .logo-text { display: none; }
  .header-inner { padding: 0 14px; }
  .subheader-inner { padding: 5px 14px; }
  .sub-info-link span { display: none; }
  .sub-info-link { gap: 0; }
}

@media (min-width: 1024px) {
  .logo-text { display: block; }
}

/* ============================
   PARTNERS INTRO (sección combinada: header + cooperación)
   Sin fondo propio: usa el color de fondo del body
============================ */
.partners-intro {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 20px 70px;
}

.partners-intro-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.partners-intro-left,
.partners-intro-right {
  flex: 1;
  min-width: 0;
}

.partners-intro-left h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: #1c3147;
  margin-bottom: 14px;
}

.partners-intro-left p {
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}

.partners-intro-right h2 {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--sand-dark);
  line-height: 1.2;
}

.partners-intro-right p {
  font-family: 'Public Sans', sans-serif;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.partners-intro-right p:last-child { margin-bottom: 0; }

@media screen and (max-width: 900px) {
  .partners-intro-inner {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }
}

@media screen and (max-width: 768px) {
  .partners-intro {
    padding: 64px 20px 40px;
  }
  .partners-intro-left h1 {
    font-size: 2.2rem;
  }
  .partners-intro-left p {
    font-size: 14px;
  }
}

/* ─ Orden en móvil: Authorized Overseas Training Partners primero,
     luego Our International Experience (sin mover el HTML de escritorio) ─ */
@media screen and (max-width: 900px) {
  .intro-flow {
    display: flex;
    flex-direction: column;
  }

  /* "Disolvemos" estos contenedores para que sus hijos se conviertan
     en ítems directos del flex de .intro-flow y así puedan reordenarse */
  .partners-intro,
  .partners-intro-inner {
    display: contents;
  }

  .partners-intro-left {
    order: 1;
    padding: 64px 20px 0;
  }

  .experience-block {
    order: 2;
  }

  .partners-intro-right {
    order: 3;
    padding: 36px 20px 40px;
  }

  .partner-benefits-band {
    order: 4;
  }
}


.solo-pc {
    display: none; 
  text-align: center;
  font-size: 14px;
  color: #777;
  justify-content: center;
  font-weight: 600;
  }
  

  @media screen and (max-width: 768px) {
    .solo-pc {
      display: block;
      margin-top: 30px;
    }
  
  }
.solo-movil{
    display: none;
    font-size: 25px;
    
}

@media screen and (max-width: 768px) {
    .solo-movil {
      display: block;
      margin-top: -40px;
    
    }
   
   
  }


  


/* ============================================================
   INTERNATIONAL SERVICES — shared content components
   ============================================================ */

.block-eyebrow {
  display: block;
  font-family: 'Public Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 10px;
}

.content-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 20px 30px;
  text-align: center;
}

.content-section h2 {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--sand-dark);
}

.content-section p {
  font-family: 'Public Sans', sans-serif;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.content-section p:last-child { margin-bottom: 0; }

.content-section--note {
  padding-top: 32px;
}

/* ─ Partner benefits band (light-gray band, divider grid — matches
     the homepage's "benefits-section" language instead of boxed cards) ─ */

.partner-benefits-band {
  background-color: var(--white);
  padding: 70px 20px 76px;
  margin-top: 10px;
}

.partner-benefits-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.partner-benefits-inner .block-eyebrow {
  display: inline-block;
}

.partner-benefits-inner h2 {
  font-size: 30px;
  line-height: 1.15;
  max-width: 640px;
  margin: 0 auto 40px;
}

.partner-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: left;
}

.partner-benefit-item {
  border-top: 2px solid var(--ink);
  padding: 22px 24px 4px 0;
}

.partner-benefit-item:not(:nth-child(3n+1)) {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.partner-benefit-icon {
  color: var(--sand-dark);
  margin-bottom: 16px;
}

.partner-benefit-icon i {
  width: 20px;
  height: 20px;
  display: block;
}

.partner-benefit-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 8px;
}

.partner-benefit-item p {
  font-family: 'Public Sans', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .partner-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
  .partner-benefit-item:not(:nth-child(3n+1)) {
    border-left: none;
    padding-left: 0;
  }
  .partner-benefit-item:nth-child(even) {
    border-left: 1px solid var(--line);
    padding-left: 24px;
  }
}

@media (max-width: 600px) {
  .partner-benefits-band {
    padding: 50px 20px 56px;
  }
  .partner-benefits-inner h2 {
    font-size: 24px;
  }
  .partner-benefits-grid {
    grid-template-columns: 1fr;
    row-gap: 26px;
  }
  .partner-benefit-item {
    border-left: none !important;
    padding-left: 0 !important;
  }
}

/* ─ Country eligibility badges ───────────────────────────── */

.country-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 800px;
  margin: 32px auto 0;
  padding: 0 20px;
}

.country-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border: 1px solid var(--line);
  padding: 12px 24px;
  border-radius: 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(10, 41, 74, 0.05);
}

.country-badge i, .country-badge svg {
  color: var(--sand-dark);
}

/* ─ Partner showcase (minimalist card grid, circular logo) ──── */

.partner-showcase {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.partner-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  padding: 28px 18px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(10, 41, 74, 0.08);
}

.partner-card-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid #0a4d8c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.partner-card-logo img {
  max-width: 65px;
  max-height: 65px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin: 16px 4px 8px;
}

.partner-card-country {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Public Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--sand-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-card-country img {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.partner-card-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Public Sans', sans-serif;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 8px;
}

.partner-card-status2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Public Sans', sans-serif;
  font-size: 11.5px;
  color: #24b43a;
  margin-top: 8px;
}
.partner-card-status i {
  width: 14px;
  height: 14px;
  color: var(--primary-color);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .partner-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .partner-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ─ Callout box ───────────────────────────────────────────── */

.callout-wrap {
  padding: 50px 20px 0;
}

.callout-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 34px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 77, 140, 0.07), rgba(201, 146, 42, 0.09));
  border: 1px solid rgba(10, 77, 140, 0.14);
  text-align: center;
}

.callout-box h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.callout-box p {
  font-family: 'Public Sans', sans-serif;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
  max-width: 640px;
  margin: 0 auto;
}

/* ─ CTA band ──────────────────────────────────────────────── */

.cta-band {
  position: relative;
  margin-top: 70px;
  padding: 90px 20px;
  background-image: url(img/fondo-seccioncurso.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 30, 56, 0.7) 0%, rgba(7, 30, 56, 0.85) 100%);
}

.cta-band-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.cta-band-content h2 {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.cta-band-content p {
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.cta-band-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 12px;
  background-color: var(--sand);
  color: #0a2e52;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.cta-band-btn:hover {
  background-color: var(--sand-dark);
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .cta-band { padding: 64px 20px; margin-top: 50px; }
  .cta-band-content h2 { font-size: 1.6rem; }
  .content-section { padding-top: 48px; }
  .content-section h2 { font-size: 23px; }
}
.footer {
  background: linear-gradient(180deg, #0d3a66 0%, #0a2e52 100%);
  padding: 0;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 72px 5% 48px;
  gap: 24px;
}

.footer-section {
  flex: 1;
  min-width: 240px;
  padding: 0 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: auto;
  height: 64px;
}

.footer-logo h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.3;
  color: #ffffff;
}

.footer-section.about > p {
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

.footer-section h3 {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: #ffffff;
  padding-bottom: 12px;
}

.contact-info {
  margin-bottom: 0;
}

.contact-info p {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.contact-info i, .contact-info svg {
  color: #c9922a;
  width: 16px;
  text-align: center;
  margin-top: 3px;
  flex-shrink: 0;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.socials a:hover {
  background-color: #c9922a;
  transform: translateY(-3px);
}

.links ul {
  list-style: none;
}

.links li {
  margin-bottom: 12px;
}

.links a {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.links a i, .links a svg {
  color: #c9922a;
  font-size: 0.75rem;
}

.links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.18);
  padding: 18px 20px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Public Sans', sans-serif;
}

@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    padding: 56px 24px 32px;
  }

  .footer-section {
    margin-bottom: 8px;
  }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--secondary-color, #1976d2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    z-index: 999;
}

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

.back-to-top:hover {
    background-color: var(--sand, #c9922a);
}