/* ═══════════════════════════════════════
   Spectrum Neurocare – style.css
   Brand palette: Teal, Sky Blue, Lavender,
   Coral, Mint, Deep Navy
   ═══════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --navy:        #2A3F6F;
  --navy-dark:   #1B2D4F;
  --steel:       #7A8DB8;
  --teal:        #6EC6CA;
  --teal-dark:   #4AACB8;
  --sky:         #89C4E1;
  --lavender:    #B8A9D9;
  --coral:       #F4A79D;
  --mint:        #85CBA8;
  --cloud:       #F4F9FC;
  --mist:        #E0E8F0;
  --white:       #ffffff;
  --text-dark:   #1B2D4F;
  --text-mid:    #4A5F80;
  --bubble1:     rgba(110,198,202,.22);
  --bubble2:     rgba(137,196,225,.18);
  --bubble3:     rgba(184,169,217,.15);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cloud);
  overflow-x: hidden;
}

/* ─── FLOATING PETALS / BUBBLES ─── */
.petal {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .5;
  animation: drift 8s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translateY(0) scale(1) rotate(0deg); }
  to   { transform: translateY(-22px) scale(1.07) rotate(8deg); }
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--mist);
  box-shadow: 0 2px 24px rgba(42,63,111,.07);
  transition: background .3s;
}

.nav-logo {
  display: flex; align-items: center; gap: 11px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 1.3rem;
  color: var(--navy); text-decoration: none;
}

.nav-logo svg { width: 40px; height: 40px; }

.nav-links { display: flex; gap: 30px; list-style: none; }

.nav-links a {
  text-decoration: none; font-size: .9rem; font-weight: 600;
  color: var(--text-mid); position: relative; padding-bottom: 3px;
  transition: color .25s;
}

.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--lavender));
  transition: width .25s;
}

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--navy)) !important;
  color: #fff !important;
  padding: 9px 22px; border-radius: 30px;
  box-shadow: 0 4px 16px rgba(110,198,202,.4);
  transition: transform .2s, box-shadow .2s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(110,198,202,.5) !important;
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--navy); border-radius: 3px; transition: .3s;
}

/* ─── COLOUR BAR (top accent) ─── */
.colour-bar {
  display: flex; height: 5px; position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
}
.colour-bar span { flex: 1; }
.colour-bar span:nth-child(1) { background: var(--teal); }
.colour-bar span:nth-child(2) { background: var(--sky); }
.colour-bar span:nth-child(3) { background: var(--lavender); }
.colour-bar span:nth-child(4) { background: var(--coral); }
.colour-bar span:nth-child(5) { background: var(--mint); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #EAF6F8 0%, #EDF0FA 55%, #FAF0F4 100%);
  padding-top: 77px;
}

#hero .petal:nth-child(1)  { width:200px;height:200px; top:6%;  left:3%;   background:var(--bubble1); animation-duration:9s; }
#hero .petal:nth-child(2)  { width:110px;height:110px; top:22%; left:16%;  background:var(--bubble3); animation-duration:6s; animation-delay:.7s; }
#hero .petal:nth-child(3)  { width:270px;height:270px; top:58%; left:-5%;  background:var(--bubble2); animation-duration:10s; animation-delay:.3s; }
#hero .petal:nth-child(4)  { width:140px;height:140px; top:78%; left:10%;  background:var(--bubble1); animation-duration:7s; animation-delay:1.1s; }
#hero .petal:nth-child(5)  { width:220px;height:220px; top:4%;  right:3%;  background:var(--bubble3); animation-duration:11s; animation-delay:.5s; }
#hero .petal:nth-child(6)  { width: 90px;height: 90px; top:32%; right:14%; background:var(--bubble1); animation-duration:5s; animation-delay:1.4s; }
#hero .petal:nth-child(7)  { width:320px;height:320px; bottom:-70px;right:-50px; background:var(--bubble2); animation-duration:12s; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.hero-text h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.18;
  color: var(--navy); margin-bottom: 20px;
}

.hero-text h1 span { color: var(--teal-dark); }

.hero-text p {
  font-size: 1.05rem; color: var(--text-mid);
  line-height: 1.75; margin-bottom: 32px; max-width: 490px;
}

.hero-badges {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px;
}

.badge {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(110,198,202,.3);
  border-radius: 30px; padding: 7px 17px;
  font-size: .82rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 7px;
}
.badge svg { width:15px;height:15px; fill:var(--teal-dark); }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff; padding: 14px 32px; border-radius: 40px;
  font-weight: 700; font-size: .95rem; text-decoration: none;
  box-shadow: 0 6px 24px rgba(110,198,202,.4);
  transition: transform .25s, box-shadow .25s;
}
.btn-primary svg { width:18px;height:18px;fill:white; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(110,198,202,.5); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.8); backdrop-filter: blur(8px);
  color: var(--navy); padding: 14px 32px; border-radius: 40px;
  font-weight: 700; font-size: .95rem; text-decoration: none;
  border: 2px solid var(--mist);
  transition: background .25s, transform .25s, border-color .25s;
}
.btn-secondary svg { width:18px;height:18px; }
.btn-secondary:hover { background:var(--cloud); border-color:var(--teal); transform:translateY(-3px); }

/* Hero illustration / bloom */
.hero-illustration {
  display: flex; justify-content: center; align-items: center;
}

.bloom-wrap {
  position: relative; width: 340px; height: 340px;
  animation: drift 7s ease-in-out infinite alternate;
}
.bloom-wrap svg { width: 100%; height: 100%; }

/* ─── WAVE DIVIDERS ─── */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }
.wave-white  { background: var(--white); }
.wave-cloud  { background: linear-gradient(150deg,#EAF6F8,#EDF0FA); }
.wave-navy   { background: var(--white); }

/* ─── SECTIONS COMMON ─── */
section { padding: 90px 5%; }

.section-header { text-align: center; margin-bottom: 62px; }

.section-header .label {
  display: inline-block; background: rgba(110,198,202,.15);
  color: var(--teal-dark); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 20px; margin-bottom: 14px;
  border: 1px solid rgba(110,198,202,.3);
}

.section-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700; color: var(--navy); line-height: 1.2;
}

.section-header h2 span { color: var(--teal-dark); }

.section-header p {
  color: var(--text-mid); max-width: 560px;
  margin: 14px auto 0; line-height: 1.75;
}

/* ─── SERVICES ─── */
#services {
  background: var(--white);
  position: relative; overflow: hidden;
}

#services::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(110,198,202,.12) 0%, transparent 70%);
}

#services::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,169,217,.12) 0%, transparent 70%);
}

.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.service-card {
  background: linear-gradient(145deg, var(--cloud), #EFF0FA);
  border: 1.5px solid var(--mist);
  border-radius: 22px; padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  cursor: default;
}

.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, var(--teal), var(--lavender), var(--coral));
  opacity: 0; transition: opacity .3s;
}

.service-card:hover { transform: translateY(-8px); box-shadow: 0 18px 44px rgba(42,63,111,.11); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 60px; height: 60px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(42,63,111,.15);
}

/* Each icon gets a different brand colour */
.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, var(--sky), #5BA8D4); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, var(--lavender), #9B85C8); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, var(--coral), #EE8B80); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, var(--mint), #5DB88A); }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, var(--teal), var(--sky)); }

.service-icon svg { width: 28px; height: 28px; fill: white; }

.service-card h3 {
  font-family: 'Quicksand', sans-serif; font-weight: 700;
  font-size: 1.15rem; color: var(--navy); margin-bottom: 10px;
}

.service-card p { color: var(--text-mid); font-size: .9rem; line-height: 1.68; }

.service-tag {
  display: inline-flex; align-items: center;
  font-size: .8rem; font-weight: 700; color: var(--teal-dark);
  margin-top: 16px; background: rgba(110,198,202,.12);
  padding: 4px 14px; border-radius: 20px;
  border: 1px solid rgba(110,198,202,.25);
}

/* ─── ABOUT ─── */
#about {
  background: linear-gradient(150deg, #EAF6F8 0%, #EDF0FA 100%);
  position: relative; overflow: hidden;
}

.about-wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

.about-graphic { display: flex; justify-content: center; }

.about-ring-wrap {
  position: relative; width: 350px; height: 350px;
}

.about-ring-wrap .ring {
  position: absolute; border-radius: 50%;
  border: 2px dashed rgba(110,198,202,.3);
}
.about-ring-wrap .ring:nth-child(1) { inset: 0; animation: spin 20s linear infinite; }
.about-ring-wrap .ring:nth-child(2) { inset: 32px; border-color:rgba(184,169,217,.3); animation: spin 14s linear infinite reverse; }
.about-ring-wrap .ring:nth-child(3) { inset: 64px; border-color:rgba(244,167,157,.2); animation: spin 9s linear infinite; }

.about-centre {
  position: absolute; inset: 70px;
  background: linear-gradient(145deg, var(--white), var(--cloud));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  box-shadow: 0 12px 44px rgba(42,63,111,.13);
}
.about-centre svg { width: 90px; height: 90px; }
.about-centre p {
  font-family: 'Quicksand', sans-serif;
  font-size: .78rem; font-weight: 700;
  color: var(--navy); text-align: center; line-height: 1.4;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.about-text .label {
  display: inline-block; background: rgba(110,198,202,.15);
  color: var(--teal-dark); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 20px; margin-bottom: 16px;
  border: 1px solid rgba(110,198,202,.3);
}

.about-text h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--navy);
  margin-bottom: 20px; line-height: 1.2;
}
.about-text h2 span { color: var(--teal-dark); }
.about-text > p { color: var(--text-mid); line-height: 1.78; margin-bottom: 32px; }

.features-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}

.features-list li {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,.7); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 16px 20px;
  border: 1px solid rgba(110,198,202,.2);
  transition: transform .25s;
}
.features-list li:hover { transform: translateX(6px); }

.feat-icon {
  width: 42px; height: 42px; min-width: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.features-list li:nth-child(1) .feat-icon { background: linear-gradient(135deg,var(--teal),var(--teal-dark)); }
.features-list li:nth-child(2) .feat-icon { background: linear-gradient(135deg,var(--sky),#5BA8D4); }
.features-list li:nth-child(3) .feat-icon { background: linear-gradient(135deg,var(--lavender),#9B85C8); }
.features-list li:nth-child(4) .feat-icon { background: linear-gradient(135deg,var(--mint),#5DB88A); }

.feat-icon svg { width: 20px; height: 20px; fill: white; }
.feat-text strong {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--navy); display: block; margin-bottom: 3px;
}
.feat-text span { font-size: .85rem; color: var(--text-mid); }

/* ─── STATS ─── */
#stats {
  background: linear-gradient(135deg, var(--navy-dark), #243B60);
  color: white; padding: 64px 5%;
}

.stats-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 30px; text-align: center;
}

.stat-item { padding: 20px; }

.stat-num {
  font-family: 'Quicksand', sans-serif;
  font-size: 3rem; font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block; margin-bottom: 6px;
}
.stat-label { font-size: .9rem; opacity: .75; font-weight: 500; }

/* ─── CONTACT ─── */
#contact { background: var(--white); }

.contact-wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: start;
}

.contact-info h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--navy); margin-bottom: 18px;
}
.contact-info > p { color: var(--text-mid); line-height: 1.78; margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 18px; }

.contact-item {
  display: flex; align-items: center; gap: 18px;
  background: linear-gradient(135deg, var(--cloud), #EFF0FA);
  border-radius: 16px; padding: 16px 20px;
  border: 1px solid var(--mist);
  transition: transform .25s;
}
.contact-item:hover { transform: translateX(6px); }

.ci-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 22px; height: 22px; fill: white; }
.ci-text strong {
  font-family: 'Quicksand', sans-serif;
  font-size: .85rem; font-weight: 700;
  color: var(--navy); display: block;
}
.ci-text a, .ci-text span {
  font-size: .95rem; color: var(--text-mid); text-decoration: none; font-weight: 500;
}
.ci-text a:hover { color: var(--teal-dark); }

/* Contact form */
.contact-form-wrap {
  background: linear-gradient(145deg, var(--cloud), #EFF0FA);
  border-radius: 26px; padding: 42px 38px;
  border: 1.5px solid var(--mist);
  box-shadow: 0 8px 44px rgba(42,63,111,.07);
}
.contact-form-wrap h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: 26px;
}

.form-row { display: grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--navy); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border-radius: 12px;
  border: 1.5px solid var(--mist);
  background: rgba(255,255,255,.85);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; color: var(--text-dark);
  outline: none; transition: border-color .25s, box-shadow .25s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(110,198,202,.2);
}
.form-group textarea { min-height: 110px; }

.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: white; border: none; border-radius: 14px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 6px 22px rgba(110,198,202,.4);
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(110,198,202,.5); }

.form-success {
  display: none; text-align: center; padding: 30px;
  background: rgba(133,203,168,.1);
  border-radius: 14px; border: 1.5px solid var(--mint);
  color: #3A7A5A; font-weight: 700; font-size: 1rem;
}

/* ─── DOT ROW ACCENT ─── */
.dot-row {
  display: flex; gap: 8px; align-items: center;
}
.dot-row span {
  width: 10px; height: 10px; border-radius: 50%; display: block;
}

/* ─── FOOTER ─── */
footer {
  background: linear-gradient(135deg, var(--navy-dark), #1B3050);
  color: rgba(255,255,255,.75);
  padding: 64px 5% 30px;
}

.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 50px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo { color: white !important; margin-bottom: 16px; display: inline-flex; }

.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }

.footer-colour-bar {
  display: flex; height: 3px; border-radius: 2px; overflow: hidden;
  margin-top: 20px; max-width: 200px;
}
.footer-colour-bar span { flex: 1; }
.footer-colour-bar span:nth-child(1) { background: var(--teal); }
.footer-colour-bar span:nth-child(2) { background: var(--sky); }
.footer-colour-bar span:nth-child(3) { background: var(--lavender); }
.footer-colour-bar span:nth-child(4) { background: var(--coral); }
.footer-colour-bar span:nth-child(5) { background: var(--mint); }

.footer-col h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: white; margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  text-decoration: none; font-size: .88rem;
  color: rgba(255,255,255,.6); transition: color .2s;
}
.footer-col ul li a:hover { color: var(--teal); }

.footer-bottom {
  max-width: 1200px; margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; flex-wrap: wrap; gap: 10px;
}

/* ─── SCROLL TOP ─── */
#scrollTop {
  position: fixed; bottom: 30px; right: 30px; z-index: 99;
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(110,198,202,.4);
  opacity: 0; transition: opacity .3s, transform .3s;
  pointer-events: none;
}
#scrollTop.show { opacity: 1; pointer-events: auto; }
#scrollTop:hover { transform: translateY(-4px); }
#scrollTop svg { width: 22px; height: 22px; fill: white; }

/* ─── SCROLL ANIMATIONS ─── */
.animate-on-scroll {
  opacity: 0; transform: translateY(32px);
  transition: opacity .55s ease, transform .55s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin: 0 auto 30px; }
  .hero-badges { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-illustration { order: -1; }
  .bloom-wrap { width: 230px; height: 230px; }
  .about-wrap { grid-template-columns: 1fr; }
  .about-graphic { display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  nav { padding: 0 4%; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: white;
    border-bottom: 2px solid var(--mist);
    padding: 20px 5%; gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
