/* ========== ABOUT US PAGE SPECIFIC STYLES ========== */

/* About Hero Section with Three.js Background */
.about-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #003366 0%, #001f3f 100%);
}

#aboutHeroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1.2s ease;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 14px;
  letter-spacing: 1px;
}

.breadcrumbs a {
  color: var(--white);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs .separator {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs .current {
  color: var(--gold);
  font-weight: 600;
}

.about-hero-title {
  font-size: 64px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 
    2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(212, 162, 74, 0.5);
  letter-spacing: 3px;
}

.about-hero-subtitle {
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* About Sections */
.about-section {
  padding: 100px 20px;
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Who We Are Section */
.who-we-are {
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.08);
}

/* Our Mission Section */
.our-mission {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.mission-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.mission-content h2 {
  color: var(--white);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}

.mission-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.mission-text {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* Why Choose Us Section */
.why-choose {
  background: var(--light-gray);
}

.section-title.centered {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-title.centered::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title.white {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-bottom: 4px solid transparent;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-bottom-color: var(--gold);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, #c49440 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--white);
  transition: all 0.4s ease;
}

.why-card:hover .why-icon {
  transform: rotateY(360deg);
  box-shadow: 0 8px 25px rgba(212, 162, 74, 0.4);
}

.why-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: 700;
}

.why-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Our Values Section */
.our-values {
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#valuesCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.value-item {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  transform: translateY(-8px);
}

.value-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.8;
}

.value-item h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 700;
}

.value-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Services Overview Section */
.services-overview {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  background: var(--light-gray);
  padding: 50px 40px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 5px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-top-color: var(--gold);
  background: var(--white);
}

.service-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 40px;
  color: var(--gold);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
}

.service-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 700;
}

.service-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
}

.btn-service {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-service:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

/* Scroll Animations */
[data-scroll] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 42px;
  }

  .about-hero-subtitle {
    font-size: 16px;
  }

  .about-section {
    padding: 60px 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mission-text {
    font-size: 17px;
  }

  .service-card {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 60vh;
    min-height: 400px;
  }

  .breadcrumbs {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .about-hero-title {
    font-size: 32px;
  }

  .about-hero-subtitle {
    font-size: 14px;
  }

  .about-section {
    padding: 50px 15px;
  }

  .mission-text {
    font-size: 16px;
  }

  .why-card {
    padding: 30px 20px;
  }

  .value-item {
    padding: 30px 15px;
  }

  .service-card {
    padding: 35px 25px;
  }

  .service-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
}
