* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Satoshi", sans-serif;
  background: #ffffff;
}

/* ================= NAVBAR ================= */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 100px;
  background: transparent;
}

.logo img {
  width: 202px;
  height: auto;
  display: block;
}

.logo img.desktop-logo {
  display: block;
}

.logo img.mobile-logo {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: #ffffff;
  transition: 0.3s;
}

/* .nav-links a:hover {
  color: #ffffff;
} */

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #3f3f3f;
  transition: all 0.3s ease-in-out;
}

.mobile-btn {
  display: none !important;
}

.contact-btn,
.nav-links a.contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 147px;
  height: 39px;
  padding: 10px 40px;
  border-radius: 40px;
  background: #00aae8;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s;
}

.contact-btn:hover,
.nav-links a.contact-btn:hover {
  background: #0096cf;
  color: #ffffff;
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px;
    height: auto;
    position: fixed;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #ffffff !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .logo img {
    width: 170px;
  }
  .logo img.desktop-logo {
    display: none;
  }
  .logo img.mobile-logo {
    display: block;
  }
  .menu-toggle {
    display: flex;
  }
  .desktop-btn {
    display: none;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 20;
    gap: 15px;
  }
  .nav-links a {
    color: #3f3f3f;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-btn {
    display: flex !important;
    margin-top: 10px;
  }
}

/* ================= FOOTER ================= */
.footer-section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 100px;
  gap: 20px;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  background: #ebfaff;
}

.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
  max-width: 1312px;
}

.footer-links a {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #424242;
  text-decoration: none;
  padding: 10px;
  transition: 0.2s;
}

.footer-disclaimer {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #424242;
  max-width: 1312px;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-section {
    padding: 30px 20px;
  }
  .footer-links {
    gap: 10px;
  }
  .footer-disclaimer {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ================= CONTACT PAGE SPECIFIC ================= */

.contact-hero {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.3));
}

.contact-hero-content h1 {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 54px;
  line-height: 73px;
  margin: -3px 0px;
}

.contact-hero-content p {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
}

.contact-content-area {
  width: 100%;
  min-height: 700px;
  background: #f4fcff;
  position: relative;
  display: flex;
  justify-content: center;
}

/* ================= CONTACT FORM ================= */

.contact-form-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 954px;
  height: 589px;
  filter: drop-shadow(0px 4px 44px rgba(0, 0, 0, 0.15));
  margin-top: -150px;
  margin-bottom: 100px;
  background: #ebfaff;
  position: relative;
  z-index: 10;
}

/* Left Side */
.contact-form-left {
  width: 429px;
  height: 590px;
  flex: none;
  background: url("../assets/callingBG.png") no-repeat center center;
  background-size: cover;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 40px 0px;
  box-sizing: border-box;
}

.contact-left-text {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  color: #424242;
  width: 349px;
  margin: 0 0 auto 0;
}

.contact-calling-img {
  width: 289px;
  height: auto;
  object-fit: contain;
}

/* Right Side */
.contact-form-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  gap: 20px;
  width: 525px;
  height: 589px;
  background: #ebfaff;
  box-sizing: border-box;
}

.contact-form-right h2 {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  margin: 0;
  width: 445px;
  text-align: left; /* Wait, Figma says text-align: center for "Send a Message", but visually in frame it might be centered */
}

/* Figma explicitly says text-align: center for "Send a Message" */
.contact-form-right h2 {
  text-align: center;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 445px;
}

.form-group {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  gap: 10px;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid rgba(66, 66, 66, 0.6);
}

.form-group.textarea-group {
  height: 140px;
  align-items: flex-start;
  padding-bottom: 110px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #424242;
}

.form-group textarea {
  resize: none;
  height: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(66, 66, 66, 0.5);
}

.submit-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 60px;
  gap: 10px;
  width: 100%;
  height: 50px;
  background: #00aae8;
  border-radius: 10px;
  border: none;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #0096cf;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .contact-form-wrapper {
    width: 90%;
    max-width: 600px;
    height: auto;
    flex-direction: column;
    margin-top: -50px;
  }

  .contact-form-left {
    display: none;
  }

  .contact-form-right {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .contact-hero-content h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .contact-hero-content p {
    font-size: 16px;
  }

  .contact-form-wrapper {
    width: 95%;
  }

  .contact-form-right {
    padding: 30px 20px;
  }

  .form-group {
    width: 100%;
  }

  .contact-form-right h2 {
    font-size: 16px;
  }
}
