﻿/* iFix Academy - Shared Stylesheet (light theme)
   Brand blue: #3478F6 (from iFix Academy logo)
   Theme: Apple-store inspired - clean, white, spacious
*/

/* ═══ TOKENS ══════════════════════════════════════════════ */
:root {
  --bg:        #FFFFFF;
  --bg-2:      #F5F5F7;
  --bg-3:      #FBFBFD;
  --surface:   rgba(0,0,0,0.025);
  --border:    rgba(0,0,0,0.09);
  --border-h:  rgba(0,0,0,0.2);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
  --text:      #1D1D1F;
  --text-2:    #6E6E73;
  --text-3:    #A1A1A6;
  --accent:    #3478F6;
  --accent-h:  #1D5FD8;
  --accent-dim:rgba(52,120,246,0.10);
  --accent-2:  #0071E3;
  --green:     #34C759;
  --red:       #FF3B30;

  --ff: 'DM Sans', sans-serif;
  --r-xs: 6px; --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-2xl: 40px;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══ RESET ════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--ff); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══ NAVBAR ═══════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: #0F044A;
  box-shadow: 0 1px 0 rgba(11, 54, 132, 0.14);
  transition: background 0.45s var(--ease-io), box-shadow 0.45s var(--ease-io);
}
.navbar.scrolled {
  background: #0F044A;
  box-shadow: 0 1px 0 rgba(11, 54, 132, 0.16);
}
.navbar__inner {
  max-width: none; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.45rem clamp(2rem, 7vw, 6rem);
}
.navbar__logo { display: flex; align-items: center; line-height: 0; }
.navbar__logo-img { height: 52px; width: auto; object-fit: contain; display: block; }
.navbar__links { display: flex; align-items: center; gap: 0; position: relative; }
.nav__link {
  font-size: 0.875rem; font-weight: 500; color: var(--text-2);
  padding: 0.5rem 1rem; border-radius: var(--r-sm);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
  z-index: 1;
}
.navbar .nav__link { color: rgba(255,255,255,0.88); }
.navbar .nav__link:hover { color: #fff; }
.navbar .nav__link--active { color: #fff; font-weight: 600; }
.nav-tabs-indicator {
  position: absolute;
  left: 0;
  top: 50%;
  height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: left 0.34s var(--ease-expo), width 0.34s var(--ease-expo), opacity 0.2s ease;
}
.navbar__actions { display: flex; align-items: center; gap: 0.75rem; }
@media (min-width: 901px) {
  .navbar__actions { transform: translateX(-52px); }
}

/* ═══ BUTTONS ══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1.3rem; border-radius: var(--r-xl);
  font-family: var(--ff); font-size: 0.875rem; font-weight: 600;
  transition: all 0.25s var(--ease-expo); cursor: pointer; white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-h); }
.btn--enroll  { background: #fff; color: #1D1D1F; font-size: 0.82rem; padding: 0.5rem 1.1rem; }
.btn--enroll:hover { background: rgba(255,255,255,0.88); }
.navbar__actions .btn--enroll { margin-right: 0; }
.btn--glow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn--glow::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  left: var(--gx, 50%);
  top: var(--gy, 50%);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,120,246,0.46) 12%, rgba(52,120,246,0.18) 36%, rgba(52,120,246,0) 72%);
  transition: transform 0.35s ease;
  pointer-events: none;
  z-index: -1;
}
.btn--glow:hover,
.btn--glow:focus-visible {
  color: #eaf3ff;
  background: var(--accent-h);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25) inset, 0 10px 28px rgba(52,120,246,0.28);
}
.btn--glow:hover::before,
.btn--glow:focus-visible::before {
  transform: translate(-50%, -50%) scale(1);
}
.btn--ghost   { border: 1px solid var(--border); color: var(--text-2); background: transparent; }
.btn--ghost:hover { border-color: var(--border-h); color: var(--text); }
.btn--outline { border: 1.5px solid var(--accent); color: var(--accent); background: transparent; }
.btn--outline:hover { background: var(--accent-dim); }

/* Shared lightweight glow buttons */
.btn-free-audit,
.btn-send-message {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

/* FREE AUDIT BUTTON EFFECT */
.btn-free-audit {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.25s ease;
  animation: breathing 4s ease-in-out infinite;
}

.btn-free-audit:hover {
  animation-play-state: paused;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 24px rgba(34, 127, 239, 0.45);
}

.btn-free-audit .glow-blob,
.btn-send-message .glow-blob {
  position: absolute !important;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 127, 239, 0.35) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.btn-free-audit span,
.btn-send-message span {
  position: relative;
  z-index: 1;
}

@keyframes breathing {
  0%, 100% { transform: scale(0.95); }
  25% { transform: scale(1); }
  60% { transform: scale(0.95); }
}

/* SEND MESSAGE BUTTON EFFECT */
.btn-send-message {
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.25s ease;
}

.btn-send-message:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(34, 127, 239, 0.45);
}

/* Flow arrow effect on Send Message */
.btn-send-message .flow-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-send-message .flow-arr--left  { left: -1.5rem; }
.btn-send-message .flow-arr--right { right: 0.75rem; }
.btn-send-message .flow-text {
  position: relative;
  z-index: 1;
  transform: translateX(-0.5rem);
  transition: transform 0.8s ease-out;
  display: inline-block;
}
.btn-send-message:hover .flow-arr--left  { left: 0.75rem; }
.btn-send-message:hover .flow-arr--right { right: -1.5rem; }
.btn-send-message:hover .flow-text       { transform: translateX(0.5rem); }


.btn-send-message .glow-blob {
  position: absolute !important;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 127, 239, 0.35) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; padding: 7px; border-radius: var(--r-sm); transition: background 0.2s; }
.hamburger:hover { background: rgba(255,255,255,0.12); }
.hamburger span { display: block; height: 1.5px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px,88vw);
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  border-left: 1px solid var(--border);
  z-index: 300; display: flex; flex-direction: column;
  padding: 5rem 1.75rem 2rem;
  transform: translateX(100%); transition: transform 0.4s var(--ease-expo);
  box-shadow: -20px 0 60px rgba(0,0,0,0.12);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close { position: absolute; top: 1rem; right: 1.25rem; font-size: 1.2rem; color: var(--text-2); padding: 0.5rem; border-radius: var(--r-sm); transition: background 0.2s; }
.mobile-menu__close:hover { background: var(--bg-2); }
.mobile-menu__links { display: flex; flex-direction: column; gap: 0.1rem; flex: 1; }
.mobile-menu__link { font-size: 1rem; font-weight: 600; color: var(--text-2); padding: 0.75rem 0.5rem; border-radius: var(--r-sm); transition: color 0.2s, background 0.2s; }
.mobile-menu__link:hover { color: var(--accent); background: var(--accent-dim); }
.mobile-menu__link--active { color: var(--accent); }
.mobile-menu__cta { margin-top: 2rem; justify-content: center; }
.mobile-overlay { display: none; position: fixed; inset: 0; z-index: 299; background: rgba(0,0,0,0.28); backdrop-filter: blur(4px); }
.mobile-overlay.open { display: block; }

/* ═══ SECTION LABEL ═════════════════════════════════════════ */
.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.9rem;
}
.section-heading {
  font-weight: 800; font-size: clamp(2rem, 3.8vw, 3.2rem);
  letter-spacing: -0.035em; line-height: 1.0; color: var(--text);
}
.section-sub { font-size: 1rem; line-height: 1.8; color: var(--text-2); }

/* ═══ CONTAINER ═════════════════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ═══ FOOTER ════════════════════════════════════════════════ */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 4.5rem 0 0; }
.footer__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem;
  padding-bottom: 3.5rem;
}
.footer__logo-img { height: 80px; width: auto; margin-left: -35px; }
.footer__tagline { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; margin-top: 1rem; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 0.6rem; }
.footer__social-link { width: 34px; height: 34px; border-radius: var(--r-sm); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-3); transition: color 0.2s, border-color 0.2s, background 0.2s; }
.footer__social-link:hover { border-color: transparent; }
.footer__social-link[aria-label="YouTube"]:hover { color: #FF0000; background: rgba(255,0,0,0.08); border-color: rgba(255,0,0,0.25); }
.footer__social-link[aria-label="Instagram"]:hover { color: #E1306C; background: rgba(225,48,108,0.08); border-color: rgba(225,48,108,0.25); }
.footer__social-link[aria-label="WhatsApp"]:hover { color: #25D366; background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.25); }
.footer__col-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 1.25rem; }
.footer__list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__link { font-size: 0.875rem; color: var(--text-2); transition: color 0.2s; }
.footer__link:hover { color: var(--accent); }
.footer__contact-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; color: var(--text-2); }
.footer__contact-item svg { color: var(--accent); flex-shrink: 0; }
.footer__bottom {
  border-top: 1px solid var(--border); padding: 1.25rem 2rem;
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
.footer__copy { font-size: 0.78rem; color: var(--text-3); }

/* Floating WhatsApp CTA */
.wa-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 260;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
}
.wa-float__hint {
  background: #0f1720;
  color: #e8f0fb;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease-io), transform 0.25s var(--ease-io);
}
.wa-float__icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #2fe269 0%, #1db954 100%);
  border: 1px solid rgba(7, 41, 18, 0.24);
  box-shadow: 0 10px 28px rgba(16, 70, 35, 0.32);
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s var(--ease-expo), filter 0.25s ease;
}
.wa-float__icon::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(47, 226, 105, 0.35);
  animation: waPulse 2.1s ease-out infinite;
}
.wa-float:hover .wa-float__hint,
.wa-float:focus-visible .wa-float__hint {
  opacity: 1;
  transform: translateX(0);
}
.wa-float:hover .wa-float__icon,
.wa-float:focus-visible .wa-float__icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 15px 34px rgba(16, 70, 35, 0.4);
  filter: saturate(1.08);
}
.wa-float:focus-visible {
  outline: none;
}
.wa-float:focus-visible .wa-float__icon {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.92), 0 0 0 6px rgba(52, 120, 246, 0.5);
}
@keyframes waPulse {
  0% { opacity: 0.8; transform: scale(0.78); }
  65% { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.08); }
}

.call-float {
  position: fixed;
  right: 1.15rem;
  /* place the call button above the WhatsApp float with a slightly smaller gap */
  bottom: calc(1.15rem + 62px + 0.35rem);
  z-index: 260;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
}
.call-float__hint {
  background: #0f1720;
  color: #e8f0fb;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease-io), transform 0.25s var(--ease-io);
}
.call-float__icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #1e5fd8 0%, #0F044A 100%);
  border: 1px solid rgba(11, 7, 58, 0.24);
  box-shadow: 0 10px 28px rgba(15, 4, 74, 0.32);
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s var(--ease-expo), filter 0.25s ease;
}
.call-float__icon::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(30, 95, 216, 0.35);
  animation: waPulse 2.1s ease-out infinite;
}
.call-float:hover .call-float__hint,
.call-float:focus-visible .call-float__hint {
  opacity: 1;
  transform: translateX(0);
}
.call-float:hover .call-float__icon,
.call-float:focus-visible .call-float__icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 15px 34px rgba(15, 4, 74, 0.4);
  filter: saturate(1.08);
}
.call-float:focus-visible {
  outline: none;
}
.call-float:focus-visible .call-float__icon {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.92), 0 0 0 6px rgba(52, 120, 246, 0.5);
}

@media (max-width: 640px) {
  .nav-tabs-indicator { display: none; }
  /* on small screens keep a slightly larger gap and avoid the bottom edge */
  .wa-float { right: 0.9rem; bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px)); }
  .call-float { right: 0.9rem; bottom: calc(0.9rem + 48px + 0.35rem + env(safe-area-inset-bottom, 0px)); }
  .call-float__icon {
    width: 52px;
    height: 52px;
  }
  .call-float__hint {
    display: none;
  }
}

/* ═══ REVEAL ANIMATION ══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo); }
.reveal-r { opacity: 0; transform: translateX(28px);  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo); }
.reveal-l.in-view, .reveal-r.in-view { opacity: 1; transform: translate(0); }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; } .d4 { transition-delay: 0.32s; }

/* ═══ RESPONSIVE SHARED ═════════════════════════════════════ */
@media (max-width: 900px) {
  .container { padding: 0 1.25rem; }
  .navbar__inner { padding: 0.8rem 1.25rem; }
  .navbar__links { display: none; }
  .navbar__actions .btn--enroll { display: none; }
  .hamburger { display: flex; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .container { padding: 0 1rem; }
  .navbar__inner { padding: 0.75rem 1rem; }
  .navbar__logo-img { height: 44px; }
  .mobile-menu { width: 100vw; border-left: none; }
  .btn { width: 100%; justify-content: center; }
  .wa-float {
    right: 0.9rem;
    bottom: 0.9rem;
  }
  .wa-float__icon {
    width: 52px;
    height: 52px;
  }
  .wa-float__hint {
    display: none;
  }
}

/* Ensure CTA sections align with navbar spacing and match across pages */
.enroll-cta > .container,
.cta-banner > .container,
.visit-banner > .container {
  padding-left: clamp(2rem, 7vw, 6rem);
  padding-right: clamp(2rem, 7vw, 6rem);
}

/* Normalize CTA button heights inside CTA bands so they match visually */
.enroll-cta .btn,
.cta-banner .btn,
.visit-banner .btn {
  padding: 0.95rem 2rem;
  font-size: 1rem;
  line-height: 1;
  border-radius: var(--r-xl);
}

/* Normalize CTA typography and exact vertical sizing across CTA sections */
.enroll-cta .btn--w,
.enroll-cta .btn--wo,
.enroll-cta .btn--white,
.enroll-cta .btn--white-outline,
.cta-banner .btn--w,
.cta-banner .btn--wo,
.cta-banner .btn--white,
.cta-banner .btn--white-outline,
.visit-banner .btn--w,
.visit-banner .btn--wo,
.visit-banner .btn--white,
.visit-banner .btn--white-outline {
  font-size: 1rem;           /* ensure same type scale */
  line-height: 1;           /* collapse to single-line height */
  padding: 0.95rem 2rem;    /* equal vertical rhythm */
  min-height: 48px;         /* force consistent vertical size */
  box-sizing: border-box;   /* include borders in height calculation */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Slightly increase outline button inner gap so text doesn't look cramped */
.enroll-cta .btn--wo, .cta-banner .btn--white-outline, .visit-banner .btn--wo {
  padding-left: 1.9rem;
  padding-right: 1.9rem;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE FOOTER — dedicated layout (≤560px only)
   Separate, self-contained block. Desktop/tablet footer untouched.
   Structure:
     Row 1  →  Brand (logo + tagline + socials), centered
     Row 2  →  Quick Links  |  Courses   (two aligned columns)
     Row 3  →  Contact Us   (full width)
     Bottom →  Copyright, centered
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 560px) {
  .footer { padding: 3rem 0 0; }

  .footer__inner {
    grid-template-columns: 1fr 1fr;     /* Quick Links | Courses */
    gap: 2.25rem 1.25rem;
    padding: 0 1.5rem 2.25rem;
  }

  /* Brand: full width, centered */
  .footer__brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__logo-img {
    height: 60px;
    margin-left: 0;                      /* cancel desktop -35px offset */
  }
  .footer__tagline {
    margin: 0.6rem 0 1.1rem;
    max-width: 22rem;
  }
  .footer__social { justify-content: center; }
  .footer__social-link { width: 40px; height: 40px; }   /* easier tap targets */

  /* Link columns: tidy, left-aligned within each */
  .footer__col { text-align: left; }
  .footer__col-title { margin-bottom: 0.9rem; }
  .footer__list { gap: 0.75rem; }
  .footer__link { font-size: 0.9rem; }

  /* Contact Us spans both columns on its own row */
  .footer__col--contact,
  .footer__inner > .footer__col:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
    padding-top: 1.75rem;
  }
  .footer__contact-item { font-size: 0.9rem; }

  /* Bottom bar: stacked + centered */
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    padding: 1.1rem 1.5rem 1.5rem;
  }
}

