* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
}
.contact-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
}

.get-in-touch-btn {
  margin-top: 50px;
  display: inline-block;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--primary-blue) 30%, transparent),
    color-mix(in srgb, var(--primary-pink) 30%, transparent)
  );
  color: #ffffff;
  padding: 10px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-description {
  text-align: center;
  font-size: 15px;
  color: #9ca3af;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

/* Left side - Contact Form */
.contact-form-wrapper {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #2a2a2a;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.form-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.form-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #e5e7eb;
  margin-bottom: 6px;
  text-align: left;
}

.form-group label span {
  color: #ffffff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #ffffff;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7c3aed;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6b7280;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}
.cf-turnstile{
  margin-left: 130px;
  margin-bottom: 20px;
}
.submit-btn {
  width: 100%;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

/* Right side - Contact Information */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-section-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  text-align: left;
}

.info-description {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

.contact-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: #3a3a3a;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.icon-email {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
}

.icon-phone {
  background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
}

.icon-location {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.contact-card-content {
  flex: 1;
}

.contact-card-label {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 3px;
  text-align: left;
}

.contact-card-value {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-align: left;
}

/* Office Hours Card */
.office-hours-card {
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
  border-radius: 20px;
  padding: 24px;
  margin-top: 24px;
}

.office-hours-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.day {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.time {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.response-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Quote Section */
.quote-section {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
  text-align: left;
}

.quote-text {
  font-size: 15px;
  font-style: italic;
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 12px;
}

.quote-author {
  font-size: 13px;
  color: #6b7280;
}
/* Responsive Design */
@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-section {
    padding: 60px 24px;
  }

  .section-title {
    font-size: 28px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }
}
.telegram-icon {
  font-size: 20px;
}
