/* Contact Page Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.contact-page {
  position: relative;
  width: 100%;
  max-width: 1241px;
  margin: 0 auto;
  padding-top: 0;
}

/* Header styles matching index.html */
.contact-page .group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #ff5a28;
  z-index: 1000;
}

@media (max-width: 768px) {
  .contact-page .group {
    height: 80px;
  }
}

.contact-page .group-9 {
  position: absolute;
  top: 40px;
  left: 5%;
  width: 153px;
  height: 21px;
  background-image: url(header_logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  z-index: 1001;
  display: block;
  cursor: pointer;
}

@media (max-width: 768px) {
  .contact-page .group-9 {
    top: 30px;
    width: 120px;
    height: 17px;
  }
}

.contact-page .group-15 {
  position: absolute;
  top: 26px;
  right: 5%;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 1001;
}

.contact-page .group-15 .social-icon {
  display: block;
  width: 48px;
  height: 48px;
}

.contact-page .group-15 .social-icon:nth-child(2) {
  width: 37px;
  height: 42px;
}

.contact-page .group-15 .social-icon:nth-child(3) {
  width: 44px;
  height: 42px;
}

.contact-page .group-15 .social-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .contact-page .group-15 {
    top: 20px;
    right: 4%;
    gap: 14px;
  }

  .contact-page .group-15 .social-icon {
    width: 40px;
    height: 40px;
  }

  .contact-page .group-15 .social-icon:nth-child(2) {
    width: 32px;
    height: 36px;
  }

  .contact-page .group-15 .social-icon:nth-child(3) {
    width: 36px;
    height: 35px;
  }
}

.contact-page .navbar {
  position: absolute;
  top: 41px;
  left: calc(5% + 190px);
  transform: none;
  width: auto;
  height: auto;
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  z-index: 1001;
}

@media (max-width: 1024px) {
  .contact-page .navbar {
    left: 50%;
    transform: translateX(-50%);
    gap: clamp(16px, 5vw, 28px);
  }
}

@media (max-width: 768px) {
  .contact-page .navbar {
    display: none;
  }
}

.contact-page .text-wrapper-13,
.contact-page .text-wrapper-14,
.contact-page .text-wrapper-15,
.contact-page .text-wrapper-16 {
  width: auto;
  height: auto;
  font-family: "Tilt Warp", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(11px, 2vw, 14px);
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.contact-container {
  margin-top: 0;
  padding-top: 180px;
  min-height: calc(100vh - 200px);
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 60px;
  box-sizing: border-box;
  width: 100%;
}

.contact-title {
  color: white;
  font-size: 56px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 40px 0;
  letter-spacing: 0.05em;
}

.contact-description {
  color: white;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
  transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 200px;
  font-family: inherit;
}

.privacy-policy {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  padding: 20px;
  color: white;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-height: 150px;
  overflow-y: auto;
}

.checkbox-group {
  margin-bottom: 40px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: white;
}

.submit-button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 18px 40px;
  background: transparent;
  border: 3px solid white;
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
}

.submit-button:hover {
  background: white;
  color: #ff6633;
}

.submit-button:active {
  transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    padding-top: 160px;
  }

  .contact-title {
    font-size: 40px;
  }

  .contact-description {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }

  .submit-button {
    font-size: 16px;
  }
}
