.contact-page {
    min-height: 100vh;
    background: #111113;
}

.contact-hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
}

.contact-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

.contact-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #dadada;
}

.contact-content-section {
  padding: 80px 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 120px;
}

.contact-info h2 {
margin-bottom: 16px;
font-size: 32px;
font-weight: 600;
margin-bottom: 32px;
color:#fff
}

.contact-info p.body-lg {
margin-bottom: 40px;
color: #dadada;
font-weight: 400;
line-height: 1.6;
font-size: 18px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgb(218, 255, 1, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #daff01;
    flex-shrink: 0;
}

.method-details {
  flex: 1;
}

.method-label {
    font-size: 14px;
    color: #a1a1aa;
    margin-bottom: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.method-value {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.office-hours {
  padding: 32px;
  background: #1a1c1e;
  border: 1px solid rgb(255, 255 ,255, .1);
  border-radius: 16px;
}

.office-hours h3 {
margin-bottom: 16px;
font-size: 20px;
font-weight: 600;
line-height: 1.4;
color:#fff
}

.office-hours p {
color: #dadada;
font-size: 16px;
font-weight: 400;
line-height: 1.6;
}

.contact-form-container {
    background: #1a1c1e;
    border: 1px solid rgb(255, 255,255, .1);
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.form-input,  .form-textarea {
    background: #111113;
    border: 2px solid #3f3f3f;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
    color: #fff;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #a1a1aa;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
outline: none;
border-color: #daff01;
box-shadow: 0 0 0 4px rgb(218, 255, 1, .1);
}

.form-select {
    background-color: #111113;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 2px solid #3f3f3f;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
    color: #fff;
    font-family: inherit;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.success-message {
    padding: 16px;
    background: rgba(218, 255, 1, 0.1);
    border: 1px solid #daff01;
    border-radius: 12px;
    color: #daff01;
    font-size: 14px;
    font-weight: 500;
}

.contact-form-container .btn {
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    gap: 8px;
    min-height: 52px;
    overflow: hidden;
    padding: 16px 32px;
    position: relative;
    letter-spacing: 0;
    text-transform: capitalize;
    text-decoration: none;
    transition: all .2s ease;
    justify-content: center;
}

.form-title {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.checkbox-grid {
    grid-gap: 16px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}
.checkbox-label {
    align-items: center;
    background: #1a1c1e;
    border: 2px solid #3f3f3f;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    transition: all .2s ease;
}
.checkbox-input {
    accent-color: #daff01;
    cursor: pointer;
    height: 20px;
    width: 20px;
}
.checkbox-text {
    color: #dadada;
    flex: 1 1;
    font-size: 14px;
}
.form-note {
    color: #a1a1aa;
    font-size: 13px;
    margin-top: 8px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
    margin: 0 0 40px 0;
    padding: 0;
}

.benefit-item {
display: flex;
align-items: flex-start;
gap: 16px;
font-size: 16px;
color: #dadada;
line-height: 1.6;
}

.benefit-item svg {
color: #daff01;
flex-shrink: 0;
margin-top: 2px;
}


.demo-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight-card {
    background: #111113;
    border: 1px solid rgb(255, 255, 255, .1);
    border-radius: 16px;
    padding: 32px;
}

    .highlight-card svg {
        color: #daff01;
        margin-bottom: 16px;
    }

    .highlight-card h3 {
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 8px;
    }

    .highlight-card p {
        font-size: 15px;
        color: #dadada;
        line-height: 1.6;
    }

@media only screen and (max-width: 1024px) {
    .contact-content-section {
        padding: 50px 0 30px;
    }
}

@media (max-width: 968px) {
  .contact-title {
    font-size: 36px;
  }

  .contact-subtitle {
    font-size: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info {
    position: static;
  }

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

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

@media (max-width: 768px) {
    .contact-content-section {
        padding: 70px 20px 20px;
    }
}

