/* style/about.css */

/* Custom Colors */
:root {
  --page-about-bg: #08160F;
  --page-about-card-bg: #11271B;
  --page-about-text-main: #F2FFF6;
  --page-about-text-secondary: #A7D9B8;
  --page-about-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-about-border: #2E7A4E;
  --page-about-glow: #57E38D;
  --page-about-gold: #F2C14E;
  --page-about-divider: #1E3A2A;
  --page-about-deep-green: #0A4B2C;
}

.page-about {
  color: var(--page-about-text-main); /* Light text for dark body background */
  background-color: var(--page-about-bg);
}

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

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0; /* Adjust for spacing below header */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-about__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1;
}

.page-about__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--page-about-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-about__tagline {
  font-size: 1.15rem;
  color: var(--page-about-text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-video-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
}

.page-about__btn-primary {
  background: var(--page-about-btn-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-about__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__btn-secondary {
  background: transparent;
  color: var(--page-about-text-main);
  border: 2px solid var(--page-about-border);
}

.page-about__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--page-about-text-main);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-about__introduction-section,
.page-about__products-overview,
.page-about__team-section,
.page-about__conclusion-section {
  padding: 80px 0;
}

.page-about__video-section {
  padding: 60px 0;
  background-color: var(--page-about-deep-green);
  text-align: center;
  padding-top: 10px; /* Small top padding */
}

.page-about__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Max width for video container */
  margin: 0 auto 30px auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.page-about__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.page-about__video-description {
  font-size: 1rem;
  color: var(--page-about-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__text-block {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--page-about-text-secondary);
  margin-bottom: 25px;
  text-align: justify;
}

.page-about__highlight {
  color: var(--page-about-text-main);
  font-weight: 600;
}

.page-about__values-section {
  padding: 80px 0;
  background-color: var(--page-about-card-bg);
}

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

.page-about__value-card {
  background-color: var(--page-about-deep-green);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-about-border);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__value-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
}

.page-about__value-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--page-about-text-main);
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-about__value-description {
  font-size: 0.95rem;
  color: var(--page-about-text-secondary);
  line-height: 1.7;
  text-align: justify;
}

.page-about__product-category {
  background-color: var(--page-about-card-bg);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid var(--page-about-border);
}

.page-about__product-subtitle {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--page-about-gold);
  margin-bottom: 20px;
  text-align: center;
}

.page-about__product-category .page-about__text-block {
  margin-bottom: 20px;
}

.page-about__product-category .page-about__btn-secondary {
  margin-top: 15px;
  margin-right: 15px;
}

.page-about__security-section {
  padding: 80px 0;
  background-color: var(--page-about-deep-green);
}

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

.page-about__security-text {
  flex: 1;
}

.page-about__security-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--page-about-text-main);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__security-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__security-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

.page-about__faq-section {
  padding: 80px 0;
  background-color: var(--page-about-card-bg);
}

.page-about__faq-item {
  background-color: var(--page-about-deep-green);
  border: 1px solid var(--page-about-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-about-text-main);
}

.page-about__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
}

.page-about__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-about__faq-qtext {
  flex-grow: 1;
  color: var(--page-about-text-main);
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-about-gold);
}

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--page-about-text-secondary);
}

.page-about__faq-answer p {
  margin-bottom: 0;
}

.page-about__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-about__container {
    padding: 0 15px;
  }

  .page-about__hero-section {
    padding: 40px 0;
    padding-top: 10px !important;
  }

  .page-about__hero-content {
    padding: 30px 15px;
  }

  .page-about__main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-about__tagline {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about__btn-video-cta {
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-about__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-about__introduction-section,
  .page-about__products-overview,
  .page-about__team-section,
  .page-about__conclusion-section,
  .page-about__values-section,
  .page-about__security-section,
  .page-about__faq-section {
    padding: 40px 0;
  }

  /* Image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__hero-image-wrapper,
  .page-about__value-card,
  .page-about__product-category,
  .page-about__security-image-wrapper,
  .page-about__video-wrapper,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-about__values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__security-content {
    flex-direction: column;
  }

  .page-about__security-image {
    max-width: 100%;
    width: 100%;
  }

  .page-about__security-subtitle {
    margin-top: 20px;
  }

  .page-about__text-block {
    font-size: 0.95rem;
  }

  .page-about__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-about__faq-answer {
    padding: 0 20px 15px 20px;
  }
}