/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Hero Section */
.page-about__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0A192F 0%, #1a304e 100%); /* Dark blue gradient */
  padding: 80px 20px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  max-width: 800px;
  z-index: 1;
}

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

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-about__hero-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-about__hero-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-about__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 900px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

/* Mission & Vision Section */
.page-about__mission-vision {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-about__grid-item {
  background-color: #1a2a47; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-about__grid-item:hover {
  transform: translateY(-10px);
}

.page-about__grid-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-about__grid-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for grid titles */
  margin-bottom: 15px;
}

.page-about__grid-text {
  font-size: 1em;
  color: #CCCCCC;
}

/* History Section */
.page-about__history {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-about__history-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-about__history-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-about__history-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Values Section */
.page-about__values {
  padding: 80px 0;
  background-color: #1a2a47;
}

.page-about__values-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-about__values-list li {
  background-color: #0A192F;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
}

.page-about__values-list li strong {
  color: #FFD700;
  font-size: 1.2em;
}

.page-about__icon {
  font-size: 2em;
  color: #FFD700;
  min-width: 40px;
  text-align: center;
}

/* Placeholder icons - in a real project, these would be SVG or font icons */
.page-about__icon--trust::before { content: '✓'; }
.page-about__icon--security::before { content: '🔒'; }
.page-about__icon--innovation::before { content: '✨'; }
.page-about__icon--customer::before { content: '📞'; }

/* Team Section */
.page-about__team {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-about__team-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

.page-about__team-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Call to Action Section */
.page-about__cta {
  padding: 80px 0;
  background: linear-gradient(45deg, #FFD700, #e6c200); /* Gold gradient */
  color: #0A192F; /* Dark blue text on gold background */
  text-align: center;
}

.page-about__cta-content {
  max-width: 800px;
}

.page-about__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0A192F;
}

.page-about__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #333333;
}

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

.page-about__cta-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__cta-btn--primary {
  background-color: #0A192F; /* Dark blue button */
  color: #FFD700; /* Gold text */
}

.page-about__cta-btn--primary:hover {
  background-color: #1a2a47;
  transform: translateY(-3px);
}

.page-about__cta-btn--secondary {
  background-color: #FFFFFF; /* White button */
  color: #0A192F; /* Dark blue text */
  border: 2px solid #0A192F;
}

.page-about__cta-btn--secondary:hover {
  background-color: #EEEEEE;
  transform: translateY(-3px);
}

/* Floating Ad Menu */
.page-about__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: #FFD700; /* Gold background */
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: none; /* Hidden by default, shown by JS */
  animation: page-about__fadeInUp 0.5s ease-out;
  color: #0A192F; /* Dark blue text on gold */
}

.page-about__floating-ad-content {
  padding: 20px;
  position: relative;
}

.page-about__floating-ad-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #0A192F;
  line-height: 1;
  padding: 0;
}

.page-about__floating-ad-close:hover {
  color: #333333;
}

.page-about__floating-ad-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #0A192F;
}

.page-about__floating-ad-text {
  font-size: 0.95em;
  margin-bottom: 15px;
  color: #333333;
}

.page-about__floating-ad-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #0A192F; /* Dark blue button */
  color: #FFD700; /* Gold text */
  padding: 12px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__floating-ad-btn:hover {
  background-color: #1a2a47;
}

@keyframes page-about__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__grid {
    grid-template-columns: 1fr;
  }
  .page-about__values-list {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-text {
    font-size: 1em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
  }
  .page-about__floating-ad {
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .page-about__hero {
    padding: 60px 15px;
  }
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__hero-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__grid-item, .page-about__values-list li {
    padding: 20px;
  }
  .page-about__floating-ad {
    bottom: 15px;
    left: 15px;
    right: 15px;
    width: auto;
  }
}