/* ===================================
   ABOUT US PAGE SPECIFIC STYLES
   =================================== */

/* Hero Section for About Us Page */
.about-us-hero {
  height: 60vh;
  min-height: 450px;
  position: relative;
}

/* Black Overlay */
.about-us-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.about-us-hero .hero-content {
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-us-hero .hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.about-us-hero .hero-text p {
  text-align: center;
  font-size: 18px;
  color: #dadada;
  max-width: 900px;
  margin: 0 auto;
}

/* About Us Section Styling */
.about-us-section .hero-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-us-section .hero-text p {
  text-align: justify;
  margin-bottom: 20px;
}

.about-us-section .hero-text p:last-of-type {
  margin-bottom: 30px;
}

/* ===================================
   EXPLORE SOLUTIONS SECTION
   =================================== */
.explore-solutions-section {
  padding: 80px 0;
  background: var(--white);
}

.explore-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.explore-heading h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}

.explore-description {
  max-width: 100%;
}

.explore-description p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

.explore-button {
  display: flex;
  align-items: center;
}

/* ===================================
   SOLUTIONS SECTION
   =================================== */
.solutions-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.solution-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.solution-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.solution-card:hover img {
  transform: scale(1.05);
}

.solution-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.solution-card h3 {
  color: var(--primary-navy);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.solution-card p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  flex: 1;
}

.solution-card .btn-primary {
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  margin-top: auto;
  align-self: flex-start;
}

/* Responsive */
@media (max-width: 992px) {
  .explore-header {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .explore-heading h2 {
    font-size: 36px;
  }

  .explore-description {
    text-align: center;
  }

  .explore-button {
    justify-content: center;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-us-hero {
    height: 50vh;
    min-height: 400px;
  }

  .about-us-hero .hero-text h1 {
    font-size: 36px;
  }

  .about-us-hero .hero-text p {
    font-size: 16px;
  }

  .about-us-section .hero-text h2 {
    font-size: 28px;
  }

  .explore-heading h2 {
    font-size: 32px;
  }

  .explore-description p {
    font-size: 14px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-us-hero {
    height: 45vh;
    min-height: 350px;
  }

  .about-us-hero .hero-text h1 {
    font-size: 28px;
  }

  .about-us-hero .hero-text p {
    font-size: 14px;
  }

  .explore-heading h2 {
    font-size: 28px;
  }
}