/* ================= SERVICE AREA ================= */
.service-area {
  position: relative;
 /* background: url("../img/map1.png") center / cover no-repeat;*/
 background: #000;
  padding: 50px 20px 0;
  color: #fff;
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.service-area::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  width: 100%;
  flex: 1;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

.service-content {
  max-width: 600px;
  margin-bottom: 50px;
  width: 100%;
}

.service-content h2 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ccc;
  word-wrap: break-word;
}

.service-content p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.6;
  word-wrap: break-word;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 720px;
  width: 100%;
}

.service-tags span {
    flex: 0 0 calc(25% - 9px);
    padding: 10px 0;
    text-align: center;
    border-radius: 30px;
    background: linear-gradient(to bottom, #7fc3f3, #489fda);
    border: 1px solid rgba(0, 0, 0, 0.35);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-sizing: border-box;
    font-weight: 700;     
    color:#000;
}

.footer {
  position: relative;
  width: 100%;
  padding: 20px 20px 20px;
  z-index: 2;
  margin-top: auto;
  border-top: 1px solid rgba(255, 180, 70, 0.2);
  box-sizing: border-box;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
  display: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

/* Footer typography */
.footer h3,
.footer h4 {
  font-weight: 500;
  line-height: 1;
  word-wrap: break-word;
}

.footer h3.brand {
  font-size: 28px;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}

.footer h4 {
  font-size: 20px;
  color: #489fda;
  font-weight: 500;
}

.footer p,
.footer li,
.footer a {
  font-size: 18px;
  color: #ccc;
  line-height: 1.7;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.3;
  word-wrap: break-word;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer a:hover {
  color: #489fda;
}

/* Quick Links - Two Columns */
.footer .quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 15px;
}

.mv-icon img {
  width: 48px;
  /* adjust size */
  height: 48px;
  /* keep square */
  object-fit: contain;
}

/* ================= NEWSLETTER ================= */
.newsletter {
  display: flex;
  margin-top: 10px;
  width: 100%;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 4px 0 0 4px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.newsletter input::placeholder {
  color: #ccc;
}

.newsletter button {
  background: linear-gradient(to bottom, #fcae4e 0%, #7fc3f3 100%);
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 0 4px 4px 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter button:hover {
  background: linear-gradient(to bottom, #7fc3f3 0%, #fcae4e 100%);
}

/* Service Area & Footer Responsive */
@media (max-width: 992px) {
  .service-content h2 {
    font-size: 38px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .service-tags span {
    flex: 0 0 calc(33.33% - 8px);
  }
}

@media (max-width: 768px) {
  .service-area {
    padding: 40px 15px 0;
  }

  .service-content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .service-content h2 {
    font-size: 32px;
  }

  .service-content p {
    font-size: 15px;
  }

  .service-tags {
    gap: 10px;
  }

  .service-tags span {
    flex: 0 0 calc(50% - 5px);
    padding: 8px 0;
    font-size: 13px;
  }

  .footer-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }

  .footer h3.brand {
    font-size: 24px;
  }

  .footer h4 {
    font-size: 18px;
  }

  .footer p,
  .footer li,
  .footer a {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .service-area {
    padding: 30px 12px 0;
  }

  .service-content h2 {
    font-size: 26px;
  }

  .service-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .service-tags span {
    flex: 0 0 calc(50% - 6px);
    padding: 10px 0;
    font-size: 14px;
  }

  .footer-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .footer {
    text-align: left;
  }

  .footer .quick-links {
    justify-content: flex-start;
  }

  .newsletter {
    max-width: 100%;
    margin: 10px 0 0;
  }

  .footer h3.brand {
    font-size: 22px;
  }

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

  .footer p,
  .footer li,
  .footer a {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .service-content h2 {
    font-size: 22px;
  }

  .service-tags span {
    flex: 0 0 calc(50% - 6px);
    font-size: 12px;
    padding: 8px 0;
  }

  .footer-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .newsletter {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
    border-radius: 4px;
  }
}

/* Global fixes for all sections */
* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow-x: hidden;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}