.cta-button {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.3s;
  letter-spacing: 0.1em;
}

.cta-button:hover {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
  cursor: pointer;
}

/* Hero Section */
.hero {
  max-width: 1600px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size:clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  text-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.divider {
  width: 128px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto 2rem;
}

.hero p {
  font-size: 1.25rem;
  font-weight: 600;
  max-width: 62rem;
  margin: 0 auto 2rem;
  line-height: 1.4;
}

.hero .accent-text {
  color: var(--accent);
  font-weight: 700;
  margin: 0 auto 0;
  margin-top: 1rem;
}

.badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.2);
  color: var(--accent);
  border: 1px solid rgba(59, 130, 246, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 2rem;
}

/* Contact Cards */
.contact-section {
  background: linear-gradient(to right,
      var(--secondary),
      var(--shadow),
      var(--secondary));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 2rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.section-header p {
  font-size: 1.25rem;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.card {
  background: linear-gradient(135deg, #000000, var(--secondary), #475569);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  color: inherit;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  background: var(--accent);
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.card .subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.card .info {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.info.info-top-email {
  font-size: 1rem;
}

.card .details {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Form Section */
.form-section {
  background: linear-gradient(to right,
      var(--secondary),
      var(--shadow),
      var(--secondary));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 2rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.form-container h2 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.form-container p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #d1d5db;
  line-height: 1.4;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}

input,
textarea {
  background: #000000;
  color: white;
  border: 1px solid rgba(59, 130, 246, 0.5);
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  transition: border 0.3s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  letter-spacing: 0.05em;
}

.submit-button {
  background: var(--accent);
  color: white;
  border: 2px solid var(--accent);
  padding: 1rem 2rem;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);

}

.submit-button:hover {
  background: rgba(59, 130, 246, 0.9);
  border-color: white;
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.5);
}

.submit-button svg {
  width: 20px;
  height: 20px;
}

/* Info Cards */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: linear-gradient(135deg, #000000, var(--secondary), #475569);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card h3 svg {
  width: 24px;
  height: 24px;
}

.info-item {
  margin-bottom: 1rem;
}

.info-item h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.info-item p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
}

.info-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--accent);
  margin-top: 2px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, #000000, var(--secondary), #000000);
  border-top: 1px solid var(--border);
  padding: 3.5rem 2rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.cta-section p {
  font-size: 1.25rem;
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #d1d5db;
  line-height: 1.4;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(30, 41, 59, 0.5);
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  text-decoration: none;
  color: white;
  font-size: 1.125rem;
  transition: background-color 0.2s ease-in-out;
}

.contact-method svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  transition: transform 0.3s ease-in-out;
}

.contact-method span {
  font-weight: 500;
}

.contact-method:hover {
  background-color: #3b82f633;
  border-color: rgb(59, 130, 246);
  color: rgb(59, 130, 246);
}

.contact-method:hover svg {
  transform: scale(1.15);
  /* slightly increase size */
}

/* Responsive */
@media (max-width: 1024px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .section-header h2,
  .form-container h2,
  .cta-section h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .section-header h2,
  .form-container h2,
  .cta-section h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .card h3 {
    font-size: 1.25rem;
  } 

  .info-card h3 {
    font-size: 1.25rem;
  }

  .hero {
    padding: 1.5rem 1.5rem;
  }

  .hero p {
    margin-bottom: 0;
    font-size:1rem;
  }

  .contact-method {
    font-size: 1rem;
    padding: 0.75rem 0.75rem;
  }

  .contact-section {
    padding: 3rem 1rem;
  }

  .form-section {
    padding: 3rem 2rem;
    padding-top: 2rem;
  }

  .cards-grid {
    margin-bottom: 0;
  }

  .submit-button {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .cta-section {
    padding: 3rem 1rem;
  }
}

@media (max-width:460px) {
  .submit-button {
    font-size: 1rem;
    padding: 1rem 1rem;
  }

  .card .info-top-email {
    font-size: 0.80rem;
  }

  .form-container h2,
  .cta-section h2 {
    font-size: 1.75rem
  }
}