.wb-main-container {
  width: 100%;
  min-height: 100%;
  overflow-y: auto;
  padding-top: 80px;
}

.wb-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.wb-top-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.wb-contact-info {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.wb-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 16px;
  letter-spacing: 1px;
}

.wb-info-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #29610a, #38870c);
  border-radius: 2px;
}

.wb-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.wb-info-item:last-child {
  margin-bottom: 0;
}

.wb-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #29610a, #38870c);
}

.wb-info-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

.wb-info-content {
  flex: 1;
}

.wb-info-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.wb-info-value {
  font-size: 1rem;
  color: #1a1a2e;
  font-weight: 500;
  letter-spacing: 1px;
}

.wb-info-value-secondary {
  font-size: 0.95rem;
  color: #475569;
  font-weight: 400;
  letter-spacing: 1px;
}

.wb-social-links {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #e2e8f0;
}

.wb-social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.wb-social-link:hover {
  border-color: #6366f1;
  transform: translateY(-2px);
}

.wb-social-link svg {
  width: 20px;
  height: 20px;
  color: #64748b;
}

.wb-social-link:hover svg {
  color: #6366f1;
}

.wb-form-container {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.wb-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 16px;
  letter-spacing: 1px;
}

.wb-form-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #29610a, #38870c);
  border-radius: 2px;
}

.wb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.wb-form-group {
  margin-bottom: 20px;
}

.wb-form-group:last-of-type {
  margin-bottom: 0;
}

.wb-form-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.wb-form-label span {
  color: #ef4444;
}

.wb-form-input {
  width: 100% !important;
  padding: 14px 18px !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  font-size: 1rem !important;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
  color: #000 !important;
  letter-spacing: 1px;
}

.wb-form-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.wb-form-input::placeholder {
  color: #9ca3af;
}

.wb-form-input.wb-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.wb-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.wb-error-message {
  font-size: 0.85rem;
  color: #ef4444;
  margin-top: 6px;
  display: none;
}

.wb-error-message.wb-visible {
  display: block;
}

.wb-captcha-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.wb-captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  user-select: none;
}

.wb-captcha-code {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #1a1a2e;
  font-family: 'Courier New', monospace;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  padding: 8px 16px;
  border-radius: 8px;
}

.wb-captcha-refresh {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wb-captcha-refresh:hover {
  border-color: #6366f1;
  background: #f8fafc;
}

.wb-captcha-refresh svg {
  width: 18px;
  height: 18px;
  color: #64748b;
}

.wb-captcha-input-wrapper {
  flex: 1;
  min-width: 150px;
}

.wb-captcha-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
  letter-spacing: 2px;
}

.wb-captcha-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.wb-captcha-input.wb-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.wb-submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #29610a, #38870c);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  letter-spacing: 1px;
}

.wb-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.4);
}

.wb-submit-btn:active {
  transform: translateY(0);
}

.wb-bottom-section {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.wb-map-header {
  padding: 20px 28px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wb-map-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #29610a, #38870c);
}

.wb-map-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.wb-map-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: 1px;
}

.wb-map-container {
  width: 100%;
  height: 400px;
}

.wb-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.wb-success-message {
  display: none;
  padding: 16px 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 500;
  align-items: center;
  gap: 12px;
}

.wb-success-message.wb-visible {
  display: flex;
}

.wb-success-message svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .wb-top-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .wb-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wb-form-row .wb-form-group {
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .wb-content-wrapper {
    padding: 0 16px 40px;
  }

  .wb-contact-info,
  .wb-form-container {
    padding: 28px 24px;
  }

  .wb-info-title,
  .wb-form-title {
    font-size: 1.3rem;
  }

  .wb-captcha-container {
    flex-direction: column;
    align-items: stretch;
  }

  .wb-captcha-box {
    justify-content: center;
  }

  .wb-captcha-input-wrapper {
    width: 100%;
  }

  .wb-map-container {
    height: 300px;
  }

  .wb-social-links {
    justify-content: center;
  }
}
