/* ===============================
   New Visual System
   =============================== */

:root {
  --sb-bg: #f5f5f7;
  --sb-bg-soft: #ffffff;
  --sb-surface: #ffffff;
  --sb-card: #ffffff;
  --sb-card-soft: #f9fafb;

  /* Brand accents: #ff9c00, #fc6500, #78d840, black */
  --sb-primary: #fc6500;
  --sb-primary-soft: rgba(252, 101, 0, 0.1);
  --sb-accent: #ff9c00;
  --sb-accent-secondary: #78d840;

  --sb-text: #111827;
  --sb-text-muted: #6b7280;

  --sb-border-subtle: #e5e7eb;
  --sb-border-strong: #d1d5db;

  --sb-radius-xl: 26px;
  --sb-radius-lg: 18px;
  --sb-radius-md: 12px;
  --sb-radius-pill: 999px;

  --sb-shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.06);
  --sb-shadow-subtle: 0 16px 40px rgba(15, 23, 42, 0.04);

  --sb-nav-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--sb-text);
  background: var(--sb-bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--sb-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.4em;
  letter-spacing: 0.03em;
}

p {
  margin: 0 0 0.8em;
  line-height: 1.7;
  color: var(--sb-text-muted);
}

.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

/* ===============================
   Header & Navigation
   =============================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.7rem;
  min-height: var(--sb-nav-height);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  object-fit: contain;
  padding: 4px;
  background: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.4), rgba(248, 250, 252, 1));
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.brand-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #000000;
}

.brand-pill {
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ff9c00, #fc6500);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: #6b7280;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.nav-link {
  position: relative;
  padding: 0.55rem 1.1rem;
  border-radius: var(--sb-radius-pill);
  color: var(--sb-text-muted);
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.3), rgba(248, 113, 113, 0.2));
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  color: var(--sb-text);
  background: rgba(252, 101, 0, 0.06);
  border-color: rgba(252, 101, 0, 0.18);
  text-decoration: none;
}

.nav-link:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, #ff9c00, #fc6500);
  border-color: transparent;
  box-shadow:
    0 10px 25px rgba(252, 101, 0, 0.3),
    0 0 0 1px rgba(15, 23, 42, 0.02);
}

.nav-link.active::after {
  display: none;
}

.nav-cta {
  padding-inline: 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9c00, #fc6500);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(252, 101, 0, 0.28);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at 40% 0%, rgba(56, 189, 248, 0.35), rgba(15, 23, 42, 0.95));
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background-color: #e5e7eb;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background-color: #e5e7eb;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

/* Nav collapsed state only on small screens (see media query) */

/* ===============================
   Buttons
   =============================== */

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.7rem;
  border-radius: var(--sb-radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background-color 0.12s ease,
    filter 0.12s ease;
}

.btn-primary {
  background-color: var(--sb-primary);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(252, 101, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  text-decoration: none;
}

.btn-secondary {
  background: #ffffff;
  color: var(--sb-text);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn-secondary:hover {
  background: #f3f4f6;
  text-decoration: none;
}

.btn-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(252, 101, 0, 0.45);
  background: linear-gradient(90deg, rgba(255, 156, 0, 0.12), #ffffff);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sb-text);
}

.btn-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #fc6500, #78d840);
}

.full-width {
  width: 100%;
}

/* ===============================
   Home Hero
   =============================== */

.hero {
  position: relative;
  padding: 3.3rem 0 3.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2.8rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 3.3vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title span {
  color: #111827;
}

.hero-lede {
  margin-top: 0.75rem;
  font-size: 0.98rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
  margin-bottom: 1.6rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--sb-radius-pill);
  background: #ffffff;
  border: 1px solid var(--sb-border-subtle);
  box-shadow: none;
  font-size: 0.86rem;
}

.meta-item-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sb-text-muted);
}

.meta-item-value {
  font-weight: 600;
  color: var(--sb-text);
}

.hero-right {
  position: relative;
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(245, 245, 247, 0.96) 10%,
    rgba(255, 156, 0, 0.12) 45%,
    rgba(120, 216, 64, 0.12) 80%
  );
  animation: heroGradientShift 18s ease-in-out infinite alternate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes heroGradientShift {
  0% {
    background: linear-gradient(
      120deg,
      rgba(245, 245, 247, 0.96) 10%,
      rgba(255, 156, 0, 0.12) 45%,
      rgba(120, 216, 64, 0.12) 80%
    );
  }
  50% {
    background: linear-gradient(
      130deg,
      rgba(245, 245, 247, 0.96) 5%,
      rgba(252, 101, 0, 0.14) 40%,
      rgba(120, 216, 64, 0.18) 90%
    );
  }
  100% {
    background: linear-gradient(
      140deg,
      rgba(245, 245, 247, 0.96) 15%,
      rgba(252, 101, 0, 0.16) 55%,
      rgba(120, 216, 64, 0.14) 100%
    );
  }
}

.hero-panel {
  position: relative;
  border-radius: var(--sb-radius-xl);
  padding: 1.35rem 1.4rem 1.5rem;
  background: linear-gradient(145deg, #ffffff, #f9fafb);
  border: 1px solid var(--sb-border-subtle);
  box-shadow: var(--sb-shadow-soft);
  overflow: hidden;
}

.hero-panel-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sb-text-muted);
  margin-bottom: 0.5rem;
}

.hero-panel-heading {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.hero-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  display: grid;
  gap: 0.4rem;
}

.hero-panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.hero-panel-bullet {
  margin-top: 0.35rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #78d840, #22c55e);
  box-shadow: 0 0 0 4px rgba(120, 216, 64, 0.2);
}

.hero-panel-label {
  color: var(--sb-text);
}

/* ===============================
   Shared Sections
   =============================== */

.section-shell {
  padding: 2.4rem 0 2.7rem;
}

.section-shell.alt {
  padding-top: 0.8rem;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.section-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sb-text-muted);
  margin-bottom: 0.35rem;
}

.section-heading {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.pillar-card {
  padding: 1rem 1.1rem;
  border-radius: var(--sb-radius-lg);
  border: 1px solid var(--sb-border-subtle);
  background: linear-gradient(145deg, #ffffff, #f9fafb);
  box-shadow: var(--sb-shadow-subtle);
}

.pillar-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.pillar-card p {
  font-size: 0.88rem;
}

.section-dark {
  padding: 2.8rem 0 3.1rem;
}

.section-dark-headline {
  text-align: center;
  margin-bottom: 1.8rem;
}

.section-dark-kicker {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sb-text-muted);
  margin-bottom: 0.4rem;
}

.section-dark-title {
  font-size: 1.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.15rem;
}

.service-card {
  padding: 1.05rem 1.1rem;
  border-radius: var(--sb-radius-lg);
  border: 1px solid var(--sb-border-subtle);
  background: var(--sb-card);
}

.service-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--sb-text-muted);
}

/* Main service cards (image + info + Know more) */
.main-service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.main-service-card {
  border-radius: var(--sb-radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #f9fafb);
  border: 1px solid var(--sb-border-subtle);
  box-shadow: var(--sb-shadow-soft);
  display: flex;
  flex-direction: column;
}

.main-service-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.main-service-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.main-service-card-title {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.main-service-card-desc {
  font-size: 0.9rem;
  color: var(--sb-text-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
}

.main-service-card .btn-primary {
  align-self: flex-start;
  margin-top: auto;
}

.centered-cta {
  text-align: center;
  margin-top: 2rem;
}

.section-cta {
  padding: 2.7rem 0 3rem;
}

.section-cta-inner {
  border-radius: var(--sb-radius-xl);
  padding: 2.3rem 1.8rem 2.4rem;
  background: linear-gradient(135deg, #ffffff, #f9fafb);
  border: 1px solid var(--sb-border-subtle);
  box-shadow: var(--sb-shadow-soft);
  text-align: center;
}

.section-cta-inner h2 {
  margin-bottom: 0.45rem;
}

.section-cta-inner p {
  margin-bottom: 1.3rem;
  color: var(--sb-text-muted);
}

/* ===============================
   Inner Page Hero
   =============================== */

.page-hero {
  padding: 2.5rem 0 2.6rem;
}

.page-hero-inner {
  border-radius: var(--sb-radius-xl);
  padding: 1.9rem 1.8rem 2rem;
  background: linear-gradient(135deg, #ffffff, #f9fafb);
  border: 1px solid var(--sb-border-subtle);
  box-shadow: var(--sb-shadow-subtle);
}

.page-hero-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sb-text-muted);
  margin-bottom: 0.35rem;
}

.page-hero h1 {
  font-size: 1.7rem;
}

.page-hero p {
  max-width: 40rem;
  margin-top: 0.6rem;
}

/* ===============================
   Services Detail
   =============================== */

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.7rem;
}

.service-detail-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail {
  padding: 1.2rem 1.3rem 1.3rem;
  border-radius: var(--sb-radius-lg);
  background: linear-gradient(145deg, #ffffff, #f9fafb);
  border: 1px solid var(--sb-border-subtle);
  box-shadow: var(--sb-shadow-subtle);
}

.service-detail h2 {
  font-size: 1.05rem;
}

.service-detail h3 {
  font-size: 1rem;
}

.service-detail ul {
  margin: 0.6rem 0 0;
  padding-left: 1.3rem;
  font-size: 0.9rem;
  color: var(--sb-text-muted);
}

.image-strip {
  margin-top: 0.8rem;
}

.image-strip img {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background-color: #ffffff;
  object-fit: cover;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16 / 10;
  display: block;
}

.image-strip img:not(:first-child) {
  display: none;
}

/* ===============================
   About
   =============================== */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.05fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.leader-card {
  padding: 0.95rem 1.1rem;
  border-radius: var(--sb-radius-lg);
  background: var(--sb-card);
  border: 1px solid var(--sb-border-subtle);
  box-shadow: var(--sb-shadow-subtle);
  margin-bottom: 0.95rem;
}

.leader-card h3 {
  margin-bottom: 0.15rem;
}

.leader-role {
  font-size: 0.86rem;
  color: var(--sb-text-muted);
  margin-bottom: 0.25rem;
}

/* ===============================
   Contact
   =============================== */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.05fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-form {
  margin-top: 1rem;
  padding: 1.35rem 1.4rem 1.55rem;
  border-radius: var(--sb-radius-lg);
  background: var(--sb-card);
  border: 1px solid var(--sb-border-subtle);
  box-shadow: var(--sb-shadow-subtle);
}

.form-row {
  margin-bottom: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.form-row label {
  font-weight: 500;
  color: var(--sb-text);
}

.form-row input,
.form-row textarea {
  padding: 0.64rem 0.75rem;
  border-radius: 11px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background-color: #ffffff;
  color: var(--sb-text);
  font: inherit;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.45);
}

.contact-card {
  padding: 1.3rem 1.4rem 1.5rem;
  border-radius: var(--sb-radius-lg);
  background: var(--sb-card);
  border: 1px solid var(--sb-border-subtle);
  box-shadow: var(--sb-shadow-soft);
}

.contact-card h2 {
  margin-bottom: 0.5rem;
}

.contact-line {
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

.contact-line .label {
  margin-bottom: 0.08rem;
}

/* ===============================
   Footer
   =============================== */

.site-footer {
  padding: 1.9rem 0 1.3rem;
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  color: var(--sb-text-muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-grid h4 {
  margin-bottom: 0.3rem;
}

.footer-contact p {
  margin-bottom: 0.25rem;
}

.footer-bottom {
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.8rem;
  text-align: center;
  color: #6b7280;
}

/* ===============================
   Floating Buttons (WhatsApp & Call)
   =============================== */

.whatsapp-float,
.call-float {
  position: fixed;
  right: 1.35rem;
  z-index: 50;
}

.whatsapp-float {
  bottom: 1.35rem;
}

.call-float {
  bottom: 5.7rem;
}

.whatsapp-float a,
.call-float a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.95);
}

.whatsapp-float a {
  background: radial-gradient(circle at 0% 0%, #22c55e, #16a34a);
  border: 1px solid rgba(187, 247, 208, 0.65);
}

.call-float a {
  background: radial-gradient(circle at 0% 0%, #38bdf8, #0ea5e9);
  border: 1px solid rgba(191, 219, 254, 0.8);
}

.whatsapp-float a:hover,
.call-float a:hover {
  transform: translateY(-1px);
}

.whatsapp-icon,
.call-icon {
  font-size: 26px;
  line-height: 1;
}

.whatsapp-tooltip,
.call-tooltip {
  position: absolute;
  right: 64px;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background-color: #111827;
  color: #f9fafb;
  font-size: 0.75rem;
  white-space: nowrap;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

/* ===============================
   Utilities & Responsive
   =============================== */

.stack-md {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 960px) {
  .header-shell {
    gap: 0.75rem;
  }

  .nav-shell.is-collapsed {
    display: none;
  }

  .nav-shell {
    position: absolute;
    inset-inline: 0;
    top: calc(var(--sb-nav-height) - 0.4rem);
    padding: 0.6rem 1.5rem 0.9rem;
    justify-content: flex-start;
    background: radial-gradient(circle at 0% 0%, rgba(219, 234, 254, 0.9), rgba(255, 255, 255, 0.98));
    border-bottom: 1px solid rgba(209, 213, 219, 0.9);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header.nav-open .nav-shell {
    display: flex;
    flex-wrap: wrap;
  }

  .site-header.nav-open .nav-shell.is-collapsed {
    display: flex;
  }

  .hero-grid,
  .section-grid,
  .about-grid,
  .contact-grid,
  .service-detail-grid-two {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.4rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 2rem, 100%);
  }

  .header-shell {
    padding-block: 0.6rem;
  }

  .brand-title {
    font-size: 0.78rem;
  }

  .brand-subtitle {
    font-size: 0.74rem;
  }

  .hero-grid {
    gap: 1.9rem;
  }

  .hero-panel {
    padding-inline: 1.2rem;
  }

  .section-shell {
    padding-block: 2.1rem;
  }

  .page-hero-inner {
    padding-inline: 1.25rem;
  }

  .footer-grid {
    flex-direction: column;
  }
}

