@font-face {
  font-family: "Geomanist";
  src: url("/fonts/Urbanist.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Geomanist", sans-serif;
}

.capability-header {
  background: #fff;
  border-bottom: 3px solid #f97316;
  padding: 8px 0;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;

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

.export-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  background: #1e315c;
  color: #fff;

  padding: 6px 14px;
  border-radius: 50px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;

  margin-bottom: 8px;
}

.left-section h1 {
  margin: 0;
  color: #1e315c;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.subtitle {
  margin: 4px 0 0;
  color: #f97316;
  font-size: 16px;
  font-weight: 500;
}

.right-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.contact-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 8px;

  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;

  padding: 5px 10px;

  color: #475569;
  font-size: 12px;
  transition: 0.3s;
}

.chip-icon {
  width: 26px;
  height: 26px;

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

  border-radius: 50%;

  background: linear-gradient(135deg, #1e315c, #324b86);

  color: #fff;
  font-size: 11px;

  flex-shrink: 0;
}

.phone {
  background: linear-gradient(135deg, #059669, #10b981);
}

.mail {
  background: linear-gradient(135deg, #ea580c, #fb923c);
}

.address {
  max-width: 550px;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .right-section {
    align-items: center;
  }

  .contact-row {
    justify-content: center;
  }

  .left-section h1 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 14px;
  }

  .address {
    max-width: 100%;
  }
}

/* footer */

.export-footer {
  background: #101c35;
  color: #fff;
  position: relative;
}

.footer-top-border {
  height: 4px;
  background: #e05a22;
}

.export-footer .container {
  max-width: 1150px;
  margin: auto;
  padding: 60px 20px 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns:
    1.5fr
    1fr
    1fr
    1fr;

  gap: 40px;
}

.footer-col h3 {
  margin: 0 0 15px;

  font-size: 28px;
  font-weight: 800;
}

.footer-col h4 {
  margin: 0 0 18px;

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

  color: #fff;
}

.footer-col p {
  color: #cbd5e1;
  line-height: 1.8;
}

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

.footer-col ul li {
  margin-bottom: 12px;
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #e05a22;
}

.footer-col ul li i {
  color: #e05a22;
  margin-right: 10px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-badges span {
  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.08);

  padding: 8px 14px;

  border-radius: 30px;

  font-size: 12px;
  font-weight: 600;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
}

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

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

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

.footer-bottom p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
}

/* Responsive */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

.developer-credit {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
}

.developer-credit a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-left: 6px;

  text-decoration: none;

  color: #fff;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.08);

  padding: 8px 14px;

  border-radius: 50px;

  transition: 0.3s;
}

.developer-credit a:hover {
  transform: translateY(-2px);

  background: #e05a22;

  box-shadow: 0 10px 25px rgba(224, 90, 34, 0.25);
}

.bb-icon {
  width: 24px;
  height: 24px;

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

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  font-size: 11px;
}


.no-style {
  all: unset;
  cursor: pointer;
}
