/* ===================================
   ABOUT-HERO-FORM-1 Component Styles
   About Page Hero with Contact Form
   =================================== */

.about-hero-form-1 {
  padding: var(--spacing-3xl) var(--spacing-lg);
  margin-top: 80px;
  margin-bottom: 60px;
  background-color: var(--color-background-light);
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 58.33% 41.67%; /* 7/12 and 5/12 */
  gap: 40px;
  align-items: start;
}

/* ===================================
   Left Column - About Content
   =================================== */

.about-content {
  position: relative;
  z-index: 2;
}

/* Breadcrumb Navigation */
.breadcrumb {
  font-size: 16px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-dark);
}

.breadcrumb-item {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.breadcrumb-item:hover {
  color: var(--color-accent);
}

.breadcrumb-separator {
  color: var(--color-primary);
  font-weight: bold;
}

.breadcrumb-current {
  color: var(--color-primary);
  font-weight: bold;
}

/* Main Heading */
.about-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: 25px;
  text-align: left;
}

/* Description */
.about-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-dark);
  margin-bottom: 30px;
  text-align: left;
}

/* Services Section */
.services-heading {
  font-size: 16px;
  color: var(--color-text-dark);
  margin-bottom: 15px;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.checkmark-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.service-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--color-accent);
}

/* CTA Button */
.about-cta {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--color-primary);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  width: auto;
  max-width: fit-content;
}

.about-cta:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Right Column - Contact Form Card
   =================================== */

.about-form-card {
  background: white;
  padding: 40px 35px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

/* Form Headings */
.form-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
  line-height: 1.3;
}

.form-subheading {
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  font-size: 15px;
  font-family: inherit;
  background: transparent;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: var(--color-primary);
}

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

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

/* reCAPTCHA Container */
.g-recaptcha {
  margin-top: 10px;
}

/* Submit Button */
.form-submit {
  padding: 16px 40px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  align-self: center;
  min-width: 150px;
}

.form-submit:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Success/Error Messages */
.form-success,
.form-error {
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.form-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-heading {
    font-size: 36px;
    text-align: center;
  }

  .about-description {
    font-size: 15px;
    text-align: center;
  }

  .breadcrumb {
    justify-content: center;
  }

  .services-heading,
  .services-list {
    text-align: center;
  }

  .service-item {
    justify-content: center;
  }

  .about-cta {
    display: block;
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
  }

  .about-form-card {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .about-hero-form-1 {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .about-heading {
    font-size: 28px;
  }

  .about-description {
    font-size: 14px;
  }

  .form-heading {
    font-size: 20px;
  }

  .form-subheading {
    font-size: 14px;
  }

  .about-form-card {
    padding: 25px 20px;
  }
}
