/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #333;
  background: #fafafa;
}

/* Container */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav .logo {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #111;
}

.nav .menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav .menu a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

.nav .menu a.active {
  color: #000;
  font-weight: bold;
}

.auth-links a {
  font-size: 14px;
  color: #0073e6;
  text-decoration: none;
}

/* Intro */
.intro {
  text-align: center;
  padding: 30px 0;
  background-image: url(../img/contact-us-hero-head.jpg);
  color: white;
  min-height: 50vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.intro p {
  font-size: 16px;
}


/* Form */
.contact-form-section {
  max-width: 832px;
  height: auto;
  border: solid 1px #ddd;
  border-radius: 6px;
  display: block;
  margin: auto;
  top: -80px;
  position: relative;
  background-color: #fff;
  padding-block: 30px;
}

.contact-form {
  background: #fff;
  /* padding: 25px; */
  border-radius: 8px;
}

.contact-form label {
  display: block;
  margin: 12px 0 6px;
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 14px;
}

.name-group {
  display: flex;
  gap: 15px;
}

.name-group .form-field {
  flex: 1;
}

.phone-field {
  display: flex;
  align-items: center;
}

.phone-field .country-code {
  padding: 10px;
  background: #eee;
  border: 1px solid #bbb;
  border-right: none;
  font-size: 14px;
}

.phone-field input {
  border-left: none;
  flex: 1;
  min-height: 44px;
}

.btn-submit {
  margin-top: 18px;
  background: #1B358F;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #1B358F;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  text-align: center;
  padding: 15px 0;
  background: #fff;
  border-top: 1px solid #ddd;
}

.site-footer p {
  font-size: 14px;
  color: #555;
}


@media (max-width:768px) {
  .contact-form-section {
    top: 0;
    padding-block: 20px;
  }

  .intro {
    min-height: auto;
  }
}

.input-with-dropdown {
  display: flex;
  border: solid 1px #bbb;
  gap: 10px;
  border-radius: 4px;
}

.input-with-dropdown input,
.input-with-dropdown select {
  border: none;
  border-radius: 0px;
  background-color: transparent;
}

.input-with-dropdown select {}

.input-with-dropdown input {
  padding-left: 10px;
  border-left: solid 1px #bbb;
}

.phone-code {
  padding: 2px;
}