/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #FFFFFF;
  background-color: #121212;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: inherit;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 43px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 21px;
}

h5 {
  font-size: 17px;
}

h6 {
  font-size: 16px;
}

p {
  font-weight: 300;
  line-height: 1.8;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.hero {
  padding: 92px 0;
  background-color: #121212;
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scroll-indicator {
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  animation: bounce 2s infinite;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.scroll-indicator:hover {
  opacity: 1;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-text h1 {
  margin-bottom: 0;
  color: #FFFFFF;
  line-height: 1.2;
  text-align: left;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.hero-text {
  display: flex;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 0;
  color: #FFFFFF;
  line-height: 1.2;
}

/* Contact Form Section */
.contact-form-section {
  padding: 96px 0;
  background-color: #121212;
  color: #FFFFFF;
}

.contact-form-section .container {
  max-width: 800px;
  background-color: #1a1a1a;
  padding: 48px;
  border-radius: 12px;
}

.contact-form-section h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
  text-align: left;
  font-family: "Playfair Display", serif;
}

.form-instruction {
  color: #CCCCCC;
  font-size: 16px;
  margin-bottom: 32px;
  font-weight: 300;
}

/* Form Styles */
.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 300;
  color: #FFFFFF;
}

.required {
  color: #ff0000;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  background-color: #2a2a2a;
  color: #FFFFFF;
  border: 1px solid #404040;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #596292;
  background-color: #333333;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Open Sans", sans-serif;
}

.phone-input-group {
  display: flex;
  gap: 12px;
}

.country-code {
  flex: 0 0 100px;
  padding: 12px 8px;
  border-radius: 8px;
}

.phone-input-group input {
  flex: 1;
}

/* Buyer/Seller Buttons */
.buyer-seller-buttons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.type-button {
  flex: 1;
  padding: 14px 24px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  background-color: #2a2a2a;
  color: #FFFFFF;
  border: 1px solid #404040;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
}

.type-button:hover {
  background-color: #333333;
  border-color: #596292;
}

.type-button.active {
  background-color: #596292;
  border-color: #596292;
  color: #FFFFFF;
}

/* Captcha Styles */
.captcha-container {
  margin: 24px 0;
  display: flex;
  justify-content: flex-start;
}

/* Privacy Section */
.privacy-section {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid #404040;
}

.privacy-section p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #CCCCCC;
  font-weight: 300;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 14px;
  line-height: 1.6;
  color: #FFFFFF;
  font-weight: 300;
  cursor: pointer;
}

.privacy-note {
  margin-top: 24px;
  font-size: 13px;
  color: #999999;
}

/* Submit Button */
.submit-button {
  width: 100%;
  padding: 20px 46px;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 32px;
  text-transform: none;
  border-radius: 0;
}

.submit-button:hover {
  background-color: #FFFFFF;
  color: #000000;
}

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

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image {
    order: 1;
  }

  .hero-text {
    order: 2;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-section .container {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 21px;
  }

  .hero {
    padding: 64px 0 100px;
    min-height: 95vh;
  }

  .scroll-indicator {
    display: flex;
  }

  .contact-form-section {
    padding: 64px 0;
  }

  .hero-content {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .contact-form-section .container {
    padding: 32px 20px;
  }

  .buyer-seller-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 30px;
    letter-spacing: 2px;
  }

  h2 {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .submit-button {
    padding: 16px 32px;
    font-size: 14px;
    letter-spacing: 2px;
  }
}