/*---- footer ----*/
.main-footer {
  background: #18364c;
  color: #e8f1fa;
  border-radius: 48px;
  padding: 50px 32px 34px 32px;
  max-width: 98vw;
  margin: 40px auto 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #2f4c65;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-stars {
    margin-right: 10px;
    width: 110px;
    height: 20px
}
.footer-rating {
    font-size: 1.02rem;
    gap: 4px;
    margin-left: 8px;
}

.footer-pay {
    text-align: center;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-qr {
  display: block;
  margin: 8px auto 0;
  height: 93px;
}

.footer-mid {
    display: grid;
    gap: 38px;
    justify-content: space-between;
    margin: 70px 0 70px 0;
    grid-template-columns: repeat(auto-fit, minmax(184px, 1fr));
}

.footer-section {
  flex: 1 1 160px;
  min-width: 160px;
}

.footer-section .footer-heading {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section li, .footer-section p {
  margin-bottom: 8px;
  color: #e8f1fa;
}
.footer-section li {
    position: relative;   
    padding-left: 14px;
}
.footer-section li::before {
    content: "";
    background: url(../images/icons/angle-right-2.svg) no-repeat center;
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
}
.footer-section a {
  color: #e8f1fa;
  text-decoration: none;
  position: relative;
}
.footer-section a:hover {
  color: #ffae50;
}

.footer-icon {
    background: #ed1c24;
    font-weight: bold;
    width: 32px;
    height: 32px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    padding: 9px;
}

.newsletter form {
    margin-top: 8px;
    position: relative;
}

.newsletter input[type="email"] {
    padding: 10px 66px 10px 18px;
    border-radius: 22px 0 0 22px;
    border: none;
    margin-right: -2px;
    font-size: 14px;
    outline: none;
    width: 172px;
    background: #ffffff14;
    color: #fff;
}
.newsletter button {
    background: #FF8E47;
    color: #fff;
    font-weight: 400;
    padding: 10px 22px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    transition: all 0.4s ease;
}
.newsletter button:hover {
  background: var(--primary-color);
}
.newsletter p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px dashed #2f4c65;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 24px 0 0;
  color: #e8f1fa;
  font-size: 0.97rem;
}
.footer-social{
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: inline-block;
  margin: 0 4px;
}
.footer-social img {
  height: 24px;
  width: 24px;
  opacity: 0.84;
}

.footer-payment img {
  height: 46px;
  margin-left: 4px;
  opacity: 0.9;
  border-radius: 6px;
}
.footer-branding .footer-logo {
    background: #fff;
    padding: 18px;
    width: 110px;
    border-radius: 10px;
}
.footer-branding .govt-logo .icon {
    width: 78px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    padding: 2px;
}
.main-footer .govt-logo { display: flex; align-items: center; gap: 10px; width: 300px;}
.main-footer .govt-logo span img{flex-shrink:0;}
.main-footer .govt-logo p {
    font-size: 13px;
}
.main-footer .contact-info .contact-info-item { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 10px;}
.main-footer .contact-info p { font-size: 14px; margin-bottom: 25px;}
.main-footer .contact-info .contact-info-item .text {
    display: inline-block;
    width: 80%;
}
/*---- footer end ----*/