@import url("https://fonts.cdnfonts.com/css/satoshi");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  margin: 0;
  padding: 0;
  background-color: #040114;
  color: white;
  font-family: Satoshi, Roboto;
  background-image: radial-gradient(
    85.64% 44.64% at 104% 22%,
    rgba(23, 164, 219, 0.3) 0%,
    rgba(21, 163, 218, 0) 154%
  );
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1 {
  font-size: 50px;
  margin: 56px 0 30px 0;
}

p {
  font-size: 15px;
  font-weight: 350;
}

a {
  color: white;
  text-decoration: none;
}

svg {
  border: 1px solid white;
  padding: 4px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}

.navbar .logo {
  width: 160px;
}

.navbar-links {
  display: flex;
  gap: 30px;
  padding-right: 26px;
}

.bar-icon {
  display: none;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background-color: #333;
  transition: all 0.3s ease;
}

.side-menu a {
  display: block;
  padding: 20px;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.section-1 {
  display: flex;
  padding: 0 6%;
  margin: 2% 0 7% 0;
}

.section-1-left {
  flex: 5;
}
.section-1-right {
  flex: 4;
}

.section-1-left {
  background-image: url("../assets/contact-us/watermark.png");
  background-repeat: no-repeat;
  background-position: 85%;
  background-size: contain;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-1-left img {
  width: 60%;
}

footer {
  margin-top: 50px;
}

.footer-line-1,
.footer-line-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}

.footer-line-1 div,
.footer-line-2 div {
  display: flex;
  justify-content: flex-end;
  flex-flow: wrap;
  gap: 20px;
  padding: 0;
}

.footer-line-2 p {
  color: whitesmoke;
  font-size: 13px;
}

.footer-logo {
  height: 60px;
}

h1 span {
  background-image: linear-gradient(90deg, #099ccf 0%, #00ffff 123.36%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   2025 Contact redesign — contact form
   ============================================================ */
.section-contact-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 6% 40px;
}
.contact-form-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 26px;
}
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="url"],
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  box-sizing: border-box;
  margin: 8px 0 16px;
  padding: 14px 18px;
  font-size: 15px;
  color: #fff;
  background: rgba(8, 247, 246, 0.04);
  border: 1px solid rgba(8, 247, 246, 0.25);
  border-radius: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form-wrap textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus,
.contact-form-wrap select:focus {
  border-color: #08f7f6;
  box-shadow: 0 0 0 3px rgba(8, 247, 246, 0.15);
}
.contact-form-wrap label {
  font-size: 14px;
  color: #cfeaf2;
}
.contact-form-wrap input[type="submit"] {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 40px;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  color: #011a1f;
  background: linear-gradient(90deg, #08f7f6 0%, #099dd0 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-form-wrap input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -14px rgba(8, 247, 246, 0.7);
}
.contact-form-wrap .wpcf7-not-valid-tip {
  color: #ff9a9a;
  font-size: 13px;
}
.contact-form-wrap .wpcf7-response-output {
  margin: 10px 0;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .cover-container {
    background-position: right;
  }
  .navbar-links a {
    display: none;
  }

  .bar-icon {
    display: block;
  }
}

@media (max-width: 750px) {
  h1,
  p {
    text-align: center;
  }

  .section-1 {
    width: 100%;
    padding: 0;
    flex-direction: column;
    justify-content: end;
    align-items: center;
  }

  .section-1-left {
    background-position: 60%;
    min-height: 200px;
  }

  footer a {
    font-size: 12px;
  }

  footer p {
    font-size: 11px;
  }
}

@media (max-width: 530px) {
  .navbar-links a {
    display: none;
  }

  .bar-icon {
    display: block;
  }
}
