



/* HERO SECTION */
.hero {
  background: #161e32;
  color: #ffffff;
  padding: 100px 0 80px 0;
  text-align: center;
}

.hero .container {
  width: 96%;
  margin: auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero p {
  font-size: 19px;
  font-weight: 400;
  color: #cbd5f5;
  line-height: 1.6;
  max-width: 800px;
  margin: auto;
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 50px;
  background: #ffffff;
}

.contact-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* LEFT: CONTACT INFO */
.contact-info {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  flex: 0 0 30%;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.contact-info h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon img {
  width: 18px;
  height: 18px;
}

.info-icon.blue { background: #edf9ff; }
.info-icon.green { background: #effdf4; }
.info-icon.purple { background: #faf5fe; }

.info-item .address {
  max-width: 250px;
}

.info-item .address h6 {
  font-size: 15px;
  font-weight: 500;
  margin: 6px 0;
}

.info-item strong {
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.info-item p {
  font-size: 15px;
  color: #000000;
  line-height: 1.5;
}

.info-item span {
  font-size: 12px;
  color: #555;
}

/* RIGHT: CONTACT FORM */
.contact-form {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  flex: 1;
  min-width: 300px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.contact-form h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.form-sub {
  font-size: 14px;
  color: #555555;
  margin-bottom: 24px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  flex: 1 1 48%;
}

.form-field.full,
.form-field.full-width {
  flex: 1 1 100%;
  padding-top: 20px;
}

.form-field label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #111827;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #1e40af;
}

.form-field textarea {
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  background: #1e40af;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

.contact-form button:hover {
  background: #193cb8;
}

.form-note {
  text-align: center;
  font-size: 12px;
  margin-top: 14px;
  color: #00000099;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1024px) {
  .contact-flex {
    flex-direction: column;
    gap: 32px;
  }

  .contact-info {
    flex: 1 1 100%;
    text-align: justify;
  }

  .contact-form {
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .contact-info h3 {
    font-size: 24px;
  }

  .contact-form h3 {
    font-size: 24px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 14px;
  }

  .contact-form button {
    font-size: 15px;
    padding: 14px;
  }
}
