/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000; /* Assuming body background is #000 from shared.css */
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__section-subtitle {
  font-size: 1.2em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
}

.page-about__text-block p {
  margin-bottom: 1em;
  color: #f0f0f0;
}

.page-about__hero-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #1E90FF 0%, #00008B 100%); /* Royal blue gradient */
  color: #ffffff;
  text-align: center;
  padding-top: var(--header-offset, 120px);
}

.page-about__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: 900;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #ffffff;
  opacity: 0.9;
}

.page-about__hero-button {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.page-about__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Royal Blue for contrast */
  border: 2px solid #FFD700;
}

.page-about__btn-primary:hover {
  background-color: #fff;
  color: #1E90FF;
  border-color: #fff;
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-about__btn-secondary:hover {
  background-color: #FFD700;
  color: #1E90FF;
}

.page-about__intro-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-about__intro-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-about__intro-content .page-about__text-block {
  flex: 1;
  min-width: 300px;
}

.page-about__intro-content .page-about__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__values-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-about__value-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-10px);
  background-color: #3a3a3a;
}

.page-about__value-icon {
  width: 150px; /* Increased size */
  height: 112px; /* Increased size, maintains aspect ratio */
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-about__value-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-about__value-card p {
  color: #ccc;
}

.page-about__products-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-about__products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-about__product-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-about__product-card:hover {
  transform: translateY(-5px);
}

.page-about__product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-about__product-title {
  font-size: 1.4em;
  padding: 15px 20px 5px;
}

.page-about__product-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-about__product-title a:hover {
  text-decoration: underline;
}

.page-about__product-card p {
  color: #ccc;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

.page-about__commitment-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-about__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-about__commitment-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__commitment-title {
  font-size: 1.6em;
  color: #1E90FF; /* Royal Blue */
  margin-bottom: 15px;
}

.page-about__commitment-item p {
  color: #ccc;
}

.page-about__video-section {
  padding: 80px 0;
  background-color: #0d0d0d;
  text-align: center;
}

.page-about__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 0 auto;
  border-radius: 10px;
}

.page-about__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-about__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.page-about__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-about__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-about__faq-item {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #3a3a3a;
  color: #FFD700;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
  background-color: #4a4a4a;
}

.page-about__faq-question h3 {
  margin: 0;
  color: #FFD700;
  font-size: 1.1em;
}

.page-about__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-about__faq-item.active .page-about__faq-toggle {
  transform: rotate(45deg);
}

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-about__faq-answer p {
  color: #ccc;
  margin-bottom: 15px;
}

.page-about__cta-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%); /* Gold to Orange gradient */
  color: #1a1a1a;
  text-align: center;
}

.page-about__cta-section .page-about__section-title {
  color: #1a1a1a;
}

.page-about__cta-section .page-about__section-subtitle {
  color: #333;
}

.page-about__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.page-about__cta-button.page-about__btn-primary {
  background-color: #1E90FF; /* Royal Blue */
  color: #ffffff;
  border: 2px solid #1E90FF;
}

.page-about__cta-button.page-about__btn-primary:hover {
  background-color: #00BFFF; /* Lighter Blue */
  border-color: #00BFFF;
}

.page-about__cta-button.page-about__btn-secondary {
  background-color: #ffffff;
  color: #FFD700; /* Gold */
  border: 2px solid #ffffff;
}

.page-about__cta-button.page-about__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

/* Dark background general styles */
.page-about__dark-section p,
.page-about__dark-section li {
  color: #ccc;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__hero-description {
    font-size: 1.3em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-about__btn-secondary {
    margin-left: 0;
    margin-top: 15px; /* Stack buttons on mobile */
  }
  .page-about__intro-content {
    flex-direction: column;
  }
  .page-about__values-grid,
  .page-about__products-grid,
  .page-about__commitment-grid {
    grid-template-columns: 1fr;
  }
  .page-about__video-wrapper {
    padding-bottom: 75%; /* Adjust aspect ratio for better mobile viewing if needed */
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__cta-button,
  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about a[class*="button"],
  .page-about a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__video-section,
  .page-about__video-container,
  .page-about__video-wrapper,
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__cta-buttons,
  .page-about__button-group,
  .page-about__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about video,
  .page-about__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-about p,
  .page-about li {
    font-size: 1em;
  }
  .page-about__value-icon {
    width: 120px; /* Adjust for mobile */
    height: 90px;
  }
  .page-about__product-image {
    height: 200px;
  }
  .page-about__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-about__faq-question h3 {
    font-size: 1em;
  }
  .page-about__faq-answer {
    padding: 0 20px;
  }
  .page-about__faq-item.active .page-about__faq-answer {
    padding: 10px 20px;
  }
}