::selection {
  background-color: black;
  color: white;
}

html {
  scroll-behavior: smooth;
}

#footer {
  cursor: auto;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* ===========================
   NAVBAR
=========================== */

.navbar {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);

  width: 92%;
  max-width: 1400px;

  display: flex;
  justify-content: flex-end;
  align-items: center;

  padding: 18px 40px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);

  z-index: 1000;

  transition: all 0.35s ease;
}

/* ===========================
   LOGO
=========================== */

.logo {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.logo a {
  text-decoration: none;
  color: #111;

  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 12px;

  transition: opacity 0.3s ease;
}

.logo a:hover {
  opacity: 0.7;
}

/* ===========================
   NAV LINKS
=========================== */

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  position: relative;

  text-decoration: none;
  color: #111;

  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2.5px;

  padding: 10px;

  padding-left: 20px;
  padding-right: 20px;

  border-radius: 999px;

  transition: all 0.3s ease;
}

/* Active Page */

.nav-links a.active {
  background: #111;

  color: white;
}

/* Hover */

.nav-links a:hover {
  background: #111;

  color: white;

  transform: translateY(-2px);
}

/* ===========================
   MOBILE MENU BUTTON
=========================== */

.menu-toggle {
  display: none;

  background: none;
  border: none;

  font-size: 24px;

  cursor: pointer;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 20px);
    max-width: 85dvw;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 20px;

    border-radius: 18px;
  }

  .logo {
    position: static;
    left: auto;
    top: auto;
    transform: none;

    margin: 0;
  }

  .logo a {
    margin: 0;
    font-size: 22px;
    letter-spacing: 8px;
  }

  .menu-toggle {
    display: block;

    background: none;
    border: none;

    font-size: 22px;

    cursor: pointer;
  }

  .nav-links {
    position: absolute;
    margin-top: -5px;

    top: calc(100% + 12px);
    left: 0;

    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 24px;

    padding: 28px 0;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 18px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);

    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0.35s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 13px;
  }
}

/* ===================================
   SECTION HEADINGS
=================================== */

.heading {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 80px;
  text-align: center;
}

.heading .small-title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3mm;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
}

.heading h2 {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 30px;
  text-transform: capitalize;
  color: #111;
}

.heading .description {
  width: 90%;
  margin: 0 auto;

  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;

  color: #555;
}

/* Mobile */

@media (max-width: 768px) {
  .heading {
    margin-bottom: 50px;
    padding: 0 20px;
  }

  .heading .small-title {
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    letter-spacing: 2mm;
    margin-bottom: 15px;
  }

  .heading h2 {
    font-size: 26px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px !important;
    text-transform: capitalize;
  }

  .description {
    width: 100% !important;
    font-family: "Poppins", sans-serif;
    font-size: 14px !important;
    font-weight: 300;
    line-height: 1.8;
    margin-top: 0;
  }
}

/* ===================================
   HERO
=================================== */

.contact-hero {
  position: relative;

  width: 100%;
  min-height: 100dvh;

  display: flex;
  align-items: center;

  background: #000;

  overflow: hidden;
}

/* Optional subtle gradient */

.contact-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background: black;
}

/* ==========================
   CONTENT
========================== */

.hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 90%;

  margin: auto;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Small Title */

.hero-content .small-title {
  font-family: "Poppins", sans-serif;

  font-size: 14px;
  font-weight: 500;

  letter-spacing: 4mm;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.65);

  margin-top: 250px !important;
}

/* Main Heading */

.hero-content h1 {
  font-family: "Poppins", sans-serif;

  font-size: 65px;

  font-weight: 400;

  line-height: 1.08;

  letter-spacing: 1mm;

  color: #fff;

  max-width: 1600px;

  margin-bottom: 0px;
}

/* Description */

.hero-description {
  font-family: "Poppins", sans-serif;

  width: 800px;
  max-width: 100%;

  font-size: 18px;
  font-weight: 300;

  line-height: 2;

  color: rgba(255, 255, 255, 0.72);

  margin-bottom: 20px;
}

/* ==========================
   BUTTONS
========================== */

.hero-buttons {
  display: flex;
  gap: 18px;
  padding-bottom: 150px;
}

.primary-btn,
.secondary-btn {
  font-family: "Poppins", sans-serif;

  text-decoration: none;

  padding: 16px 34px;

  border-radius: 999px;

  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.2mm;

  transition: 0.35s ease;
}

/* Primary */

.primary-btn {
  background: #fff;
  color: #000;

  border: 1px solid white;
}

.primary-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.18);
}

/* Secondary */

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);

  color: white;

  background: transparent;
}

.secondary-btn:hover {
  background: white;
  color: black;

  transform: translateY(-4px);
}

/* The bottom row */
.contact-hero .bottom-row {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0px;
  text-align: center;
  margin-top: 100px;
}

.contact-hero .bottom-row > .box {
  grid-area: 2 / 1;
  background-color: white;
  width: 30px;
  height: 30px;
  margin-left: 0px;
  transition: all ease-in-out 0.3s;
  border-radius: 100%;
}

.contact-hero .bottom-row > .box:hover {
  transform: scale(1.2) !important;
}

.contact-hero .bottom-row > .apps {
  grid-area: 2 / 2;
  text-align: center;
}

.contact-hero .bottom-row > .apps > p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 1.2mm;
  color: white;
}

.contact-hero .bottom-row > .socials {
  grid-area: 2 / 3;
  text-align: end;
  margin-right: 0px;
}

.contact-hero .bottom-row > .socials {
  display: flex;
  justify-content: end; /* centers icons horizontally */
  align-items: end;
  gap: 0.5rem; /* space between icons */
  margin-bottom: 15px;
}

.contact-hero .bottom-row > .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.contact-hero .bottom-row > .socials a:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.contact-hero .bottom-row > .socials img {
  width: 30px;
  height: 30px;
}

/* ==========================
   MOBILE
========================== */

/* ===================================
   HERO - MOBILE
=================================== */

@media (max-width: 768px) {
  .contact-hero {
    min-height: 100dvh;
    padding-top: 0px;

    display: flex;
    align-items: center;
  }

  .hero-content {
    width: 90%;
    max-width: 100%;
  }

  .hero-content .small-title {
    font-family: "Poppins", sans-serif;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 2mm;

    margin-bottom: 20px;

    text-align: center;

    margin: 0 auto;
  }

  .hero-content h1 {
    font-family: "Poppins", sans-serif;

    font-size: 32px;
    font-weight: 400;

    line-height: 1.2;

    letter-spacing: -1px;

    margin: auto;

    margin-bottom: 25px;

    margin-top: 20px;

    text-align: center;
  }

  .hero-description {
    width: 100%;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    font-weight: 300;

    line-height: 1.9;

    margin-bottom: 35px;
    text-align: center;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;

    gap: 15px;

    width: 100%;

    padding-bottom: 0px !important;
  }

  .primary-btn,
  .secondary-btn {
    width: 80%;

    text-align: center;

    padding: 15px 20px;

    font-size: 12px;
    margin: 0 auto;
  }

  .scroll-indicator {
    display: none;
  }

  /* The bottom row */
  .contact-hero .bottom-row {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    padding: 0px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
  }

  .contact-hero .bottom-row > .box {
    grid-area: 2 / 1;
    background-color: white;
    width: 10px;
    height: 10px;
    transition: all ease-in-out 0.3s;
    border-radius: 100%;
    margin: auto;
    display: none;
  }

  .contact-hero .bottom-row > .box:hover {
    transform: scale(1.2) !important;
  }

  .contact-hero .bottom-row > .apps {
    grid-area: 1 / 1;
    text-align: center;
    margin: 0 auto;
  }

  .contact-hero .bottom-row > .apps > p {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    letter-spacing: 1.2mm;
    margin-bottom: 25px !important;
    color: white;

    margin: 0 auto;
  }

  .contact-hero .bottom-row > .socials {
    grid-area: 3 / 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 10px;
  }

  .contact-hero .bottom-row > .socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4px;
    height: 4px;
    transition: all 0.3s ease;
  }

  .contact-hero .bottom-row > .socials a:hover {
    transform: scale(1.2);
  }

  .contact-hero .bottom-row > .socials img {
    width: 25px;
    height: 25px;
  }
}

/* ===================================
   CONTACT INFO
=================================== */

.contact-info {
  width: 90%;
  max-width: 90%;
  margin: 140px auto;
}

/* Grid */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 70px;
}

/* Card */

.info-card {
  background: #fff;

  border: 1px solid #e8e8e8;
  border-radius: 24px;

  padding: 45px;

  transition: all 0.35s ease;

  position: relative;

  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-8px);

  border-color: #111;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Number */

.info-card span {
  display: block;

  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 200 !important;

  color: #bdbdbd;

  margin-bottom: 10px;
}

/* Heading */

.info-card h3 {
  font-family: "Poppins", sans-serif;

  font-size: 28px;
  font-weight: 400;

  color: #111;

  margin-bottom: 18px;
}

/* Description */

.info-card p {
  font-family: "Poppins", sans-serif;

  font-size: 16px;
  font-weight: 300;

  color: #666;

  line-height: 1.9;
}

/* Decorative Line */

.info-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;
  height: 4px;

  background: #111;

  transition: width 0.4s ease;
}

.info-card:hover::before {
  width: 100%;
}

/* ===================================
   CONTACT INFO - MOBILE
=================================== */

@media (max-width: 768px) {
  .contact-info {
    width: 95%;
    max-width: 100%;

    margin: 80px auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 20px;

    margin-top: 50px;
  }

  .info-card {
    padding: 30px 25px;

    border-radius: 18px;
  }

  .info-card:hover {
    transform: translateY(-4px);
  }

  .info-card span {
    font-size: 28px !important;

    margin-bottom: 12px;

    text-align: center;
  }

  .info-card h3 {
    font-size: 18px !important;

    line-height: 1.3;

    margin-bottom: 14px;

    text-align: center;
  }

  .info-card p {
    font-size: 14px !important;

    line-height: 1.8;

    text-align: center;
  }

  .info-card::before {
    height: 3px;
  }
}

/* ===========================
   CONTACT INFO TYPOGRAPHY
=========================== */

.info-card span {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #bbb;
  line-height: 1;
}

.info-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #111;
  margin: 18px 0;
}

.info-card p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
}

/* ===========================
   CONTACT US
=========================== */

/* Medium devices (tablets, 768px and up) */
#contactUs {
  width: 95dvw;
  height: auto;
  padding: 120px 0;
}

.contactPageContainer {
  width: 90%;
  margin: auto;
}

.contactForm {
  margin-top: 80px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;

  align-items: start;
}

/* LEFT */

.contactFormLeft h3 {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 400;

  margin-bottom: 20px;
}

.contactIntro {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;

  margin-bottom: 50px;
}

.contactInfo {
  display: flex;
  flex-direction: column;
  gap: 25px;

  margin-bottom: 60px;
}

.infoCard {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.infoCard span {
  font-size: 24px;
}

.infoCard h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
}

.infoCard p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

/* PROCESS */

.process h4 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  font-weight: 500;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;

  padding: 18px 0;

  border-bottom: 1px solid #e5e5e5;
}

.step span {
  font-size: 28px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #bbb;

  min-width: 40px;
}

.step p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

/* RIGHT */

#contactForm {
  display: flex;
  flex-direction: column;
}

#contactForm label {
  margin-bottom: 10px;

  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

#contactForm input,
#contactForm textarea {
  margin-bottom: 25px;

  padding: 18px;

  font-family: "Poppins", sans-serif;

  border: 1px solid #ddd;
  border-radius: 14px;

  transition: 0.3s;
}

#contactForm input {
  height: 58px;
}

#contactForm textarea {
  min-height: 180px;
  resize: vertical;
}

#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: #000;

  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.05);
}

#sendBtn {
  height: 58px;

  border: none !important;
  border-radius: 50px !important;

  background: #000;
  color: #fff;

  font-family: "Poppins", sans-serif;
  letter-spacing: 2px;

  cursor: pointer;

  transition: 0.3s;
}

#sendBtn:hover {
  background: #fff;
  color: #000;

  border: 1px solid #000 !important;

  transform: translateY(-2px);
}

/* SweetAlert2 custom styles */
.swal-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #000; /* CAM primary color */
}

.swal-text {
  font-family: "Poppins", sans-serif !important;
  font-weight: 300 !important;
  font-size: 16px !important;
  color: black !important;
}

.swal-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  background-color: black;
  color: white !important;
  border-radius: 50px;
  width: 200%;
}

@media (max-width: 768px) {
  #contactUs {
    padding: 80px 0;
    height: auto !important;
  }

  .contactPageContainer {
    width: 90%;
    margin: 0 auto;
  }

  .contactForm {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* Left Side */

  .contactFormLeft {
    width: 100%;
    text-align: center;
  }

  .contactFormLeft h3 {
    font-size: 22px;
    margin-bottom: 20px;
    display: none;
  }

  .contactIntro {
    width: 100%;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 14px;
    margin-top: -55px;
  }

  .contactInfo {
    margin-bottom: 40px;
    gap: 25px;
  }

  .infoCard {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .infoCard span {
    font-size: 28px;
  }

  .process h4 {
    text-align: center;
  }

  .step {
    justify-content: start;
    text-align: start;
    gap: 15px;
  }

  .step p {
    font-size: 14px;
  }

  /* Right Side */

  .contactFormRight {
    width: 100%;
  }

  #contactForm {
    width: 100%;
  }

  #contactForm input,
  #contactForm textarea {
    width: 100%;
    box-sizing: border-box;
  }

  #sendBtn {
    width: 100%;
  }
}

/* ===================================
   CTA
=================================== */

.cta {
  width: 90%;
  max-width: 90%;

  margin: 140px auto;

  padding: 100px 80px;

  background: black;
  color: #fff;

  border-radius: 30px;

  text-align: center;

  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 140%;
  height: 100%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );

  pointer-events: none;
}

.cta .heading {
  position: relative;
  z-index: 2;

  max-width: 700px;
  margin: 0 auto;
}

.cta .small-title {
  font-family: "Poppins", sans-serif;

  font-size: 14px;
  font-weight: 500;

  letter-spacing: 4px;
  text-transform: uppercase;

  color: #bdbdbd;

  margin-bottom: 20px;
}

.cta h2 {
  font-family: "Poppins", sans-serif;

  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;

  line-height: 1.15;

  margin-bottom: 25px;

  color: #fff;
}

.cta .description {
  font-family: "Poppins", sans-serif;

  font-size: 18px;
  font-weight: 300;

  line-height: 1.9;

  color: rgba(255, 255, 255, 0.75);

  margin-bottom: 45px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 42px;

  background: #fff;
  color: #111;

  border-radius: 999px;

  text-decoration: none;

  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;

  letter-spacing: 1px;

  transition: all 0.35s ease;
}

.cta-btn:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.18);
}

/* ===================================
   CTA - MOBILE
=================================== */

@media (max-width: 768px) {
  .cta {
    width: 85%;

    margin: 100px auto;

    padding: 70px 25px;

    border-radius: 24px;
  }

  .cta .description {
    width: 100%;

    margin: 25px auto 35px;
  }

  .cta-btn {
    width: 80%;

    padding: 16px 25px;

    font-size: 14px;
  }

  .cta::before {
    width: 260px;
    height: 260px;

    top: -100px;
    right: -100px;
  }
}

/* ===========================
   FOOTER
=========================== */

#footer {
  width: auto;
  background: #000;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-container {
  width: 90%;
  margin: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand h3 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #d6d6d6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
}

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

.footer-column a {
  color: #d6d6d6;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #fff;
  padding-left: 8px;
}

.footer-bottom {
  margin-top: 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: "Poppins", sans-serif;
  color: #bdbdbd;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: #bdbdbd;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: 0.3s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  #footer {
    padding: 60px 0 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-column a {
    font-size: 14px;
  }

  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px !important;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom-links a {
    font-size: 12px;
  }
}
