/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f4f6f8;
  color: #222;
}

/* COMMON */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* INTRO */
.contact-intro {
  padding: 70px 0 40px;
  text-align: center;
}

.contact-intro h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-intro p {
  font-size: 16px;
  color: #555;
}

/* FORM SECTION */
.contact-form-section {
  padding-bottom: 60px;
}

.vip-contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.vip-contact-form label {
  display: block;
  margin-top: 18px;
  font-weight: 600;
}

.required {
  color: #d60000;
}

.optional {
  font-size: 13px;
  font-weight: normal;
  color: #777;
}

.vip-contact-form input,
.vip-contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  font-size: 15px;
}

.vip-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.vip-contact-form button {
  margin-top: 30px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: #0f2a44;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.vip-contact-form button:hover {
  background: #14395d;
}

/* SUCCESS MESSAGE */
.success-message {
  display: none;
  margin-top: 25px;
  padding: 16px;
  background: #e6f9f0;
  color: #0f5132;
  border: 1px solid #b6e7d8;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}

/* BUSINESS INFO */
.business-info-section {
  padding-bottom: 80px;
}

.business-info-section h3 {
  text-align: center;
  margin-bottom: 25px;
}

.business-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.business-card img {
  width: 90px;
  height: auto;
  margin-bottom: 15px;
}

.business-name {
  font-weight: 700;
  margin-bottom: 10px;
}

.business-card a {
  color: #0f2a44;
  text-decoration: none;
}

.business-card a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .vip-contact-form {
    padding: 30px 22px;
  }

  .contact-intro h2 {
    font-size: 26px;
  }
}

.success-message {
  display: none;
  margin-top: 25px;
  padding: 16px;
  background: #e6f9f0;
  color: #0f5132;
  border: 1px solid #b6e7d8;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}

