.footer {
  padding: 2rem 6rem;
  background: #b18155;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

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

.sec1 {
  align-items: flex-start;
  text-align: right;
}

.sec2,
.sec3 {
  align-items: flex-start;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-direction: row-reverse;
}

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

.footer-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0 !important;
}

.footer-col p {
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  font-size: 1rem;
  flex-direction: row-reverse;
}

.footer-col p i {
  background: #d97706;
  color: white;
  padding: 0.5rem;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.footer h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer ul li a {
  text-decoration: none;
  transition: color 0.3s ease;
  color: #000;
  font-weight: 500;
}

.footer ul li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: none;
  padding-top: 1rem;
}

.payment-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.payment-icons img {
  height: 25px;
  width: auto;
  object-fit: contain;
}

.footer-bottom p {
  color: #000;
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .footer {
    padding: 2rem 3rem;
    gap: 2.5rem;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 2.5rem;
  }

  .footer-col {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 200px;
  }

  .footer-title {
    font-size: 1.8rem;
  }

  .footer-logo {
    width: 100px;
  }

  .footer h5 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
  }

  .footer-col p {
    font-size: 0.95rem;
  }

  .footer ul {
    gap: 0.875rem;
  }

  .footer ul li a {
    font-size: 0.95rem;
  }
}

@media (max-width: 820px) {
  .footer {
    padding: 2rem 2rem;
    gap: 2.5rem;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "a a"
      "b c";
    gap: 2.5rem;
  }

  .footer-col {
    flex: 1 1 100%;
    min-width: 100%;
    width: 100%;
  }

  .sec1 {
    grid-area: a;
    text-align: center;
  }
  .sec2 {
    grid-area: b;
  }
  .sec3 {
    grid-area: c;
  }

  .footer-col p {
    justify-content: center;
    font-size: 0.95rem;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 1.25rem;
    text-align: center;
  }

  .footer-title {
    font-size: 1.6rem;
  }

  .footer-logo {
    width: 90px;
  }

  .footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }

  .footer ul {
    gap: 0.875rem;
  }

  .footer ul li a {
    font-size: 0.95rem;
  }

  .payment-icons img {
    height: 23px;
  }
}

/* Mobile Responsive Design - Standard Breakpoint 768px */
@media (max-width: 768px) {
  .footer {
    padding: 1.75rem 1.5rem;
    gap: 2rem;
  }

  .footer-top {
    gap: 2rem;
    flex-direction: column;
  }

  /* Footer Brand Section */
  .footer-brand {
    justify-content: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .footer-title {
    font-size: 1.5rem;
  }

  .footer-logo {
    width: 90px;
  }

  /* Footer Columns */
  .footer-col {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }

  .footer-col p {
    font-size: 0.95rem;
    margin-bottom: 0.875rem;
    justify-content: center;
    gap: 0.75rem;
  }

  .footer-col p i {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    padding: 0.45rem;
  }

  .footer ul {
    gap: 0.875rem;
    align-items: center;
  }

  .footer ul li a {
    font-size: 0.95rem;
  }

  /* Footer Bottom */
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 1.25rem;
    text-align: center;
    padding-top: 1.25rem;
  }

  .footer-bottom p {
    font-size: 0.95rem;
    margin: 0;
  }

  .payment-icons {
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .payment-icons img {
    height: 24px;
    width: auto;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 1.5rem 1rem;
    gap: 1.75rem;
  }

  .footer-top {
    gap: 1.75rem;
  }

  .footer-brand {
    gap: 0.75rem;
    margin-bottom: 0.875rem;
  }

  .footer-title {
    font-size: 1.3rem;
  }

  .footer-logo {
    width: 75px;
  }

  .footer h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-col p {
    font-size: 0.85rem;
    margin-bottom: 0.625rem;
    gap: 0.7rem;
  }

  .footer-col p i {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    padding: 0.4rem;
  }

  .footer ul {
    gap: 0.625rem;
  }

  .footer ul li a {
    font-size: 0.85rem;
  }

  .payment-icons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .payment-icons img {
    height: 20px;
  }

  .footer-bottom {
    gap: 1rem;
    padding-top: 0.75rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

@media (max-width: 420px) {
  .footer {
    padding: 1.25rem 0.75rem;
    gap: 1.5rem;
  }

  .footer-top {
    gap: 1.5rem;
  }

  .footer-brand {
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-title {
    font-size: 1.2rem;
  }

  .footer-logo {
    width: 70px;
  }

  .footer h5 {
    font-size: 0.95rem;
    margin-bottom: 0.875rem;
  }

  .footer-col p {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    gap: 0.625rem;
  }

  .footer-col p i {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
    padding: 0.35rem;
  }

  .footer ul {
    gap: 0.5rem;
  }

  .footer ul li a {
    font-size: 0.8rem;
  }

  .payment-icons {
    gap: 0.625rem;
  }

  .payment-icons img {
    height: 18px;
  }

  .footer-bottom {
    gap: 0.875rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

.footer-col p {
  text-align: center;
}

.footer-col li {
  text-align: start;
}
