/* ===== ABOUT US PAGE STYLES ===== */

/* Hero Section - Full width image, no text overlay */
.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 400px;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* filter: grayscale(30%); */
}

/* Section utilities */
.section-padding {
  padding: 5rem 4rem;
}

.section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  /* letter-spacing: 0.2em; */
  color: #333;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  font-size: 0.85rem;
  /* letter-spacing: 0.15em; */
  color: #888;
  margin-bottom: 3rem;
}

.section-dark .section-title {
  color: #fff;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ABOUT SV */
.about-sv {
  background: #fff;
}

.about-sv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  padding: 2rem 0;
}

.about-sv-image {
  overflow: hidden;
}

.about-sv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-sv-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #333;
  margin-bottom: 1.5rem;
}

.about-sv-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* OUR WORLD */
.about-world {
  background: #2a2a2a;
  padding: 5rem 4rem;
}

.about-world-map {
  width: 100%;
  /* max-width: 1400px; */
  margin: 0 auto 3rem;
  overflow: hidden;
}

.about-world-map img {
  width: 100%;
  height: auto;
  display: block;
  /* filter: grayscale(100%) brightness(0.6); */
}

.about-world-text {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-world-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

/* DESIGN & PROGRAM EXPERTISE */
.about-expertise {
  background: #fff;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.expertise-card {
  background: #fff;
  overflow: hidden;
  /* border: 1px solid #eee; */
}

.expertise-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.expertise-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(100%); */
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.expertise-card:hover .expertise-card-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.expertise-card-category {
  font-size: 1.2rem;
  font-weight: 600;
  /* letter-spacing: 0.15em; */
  color: #333;
  padding: 1.5rem 1.5rem 0.75rem;
  margin: 0;
  text-transform: uppercase;
}

.expertise-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  padding: 0 1.5rem 1.5rem;
}

/* INDUSTRY ACHIEVEMENT */
.about-achievement {
  background: #fff;
}

.achievement-images {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.achievement-img {
  /* width: 200px; */
  /* height: 200px; */
  overflow: hidden;
  /* border: 1px solid #eee; */
}

.achievement-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.achievement-text {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.achievement-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

/* OUR CLIENTS */
.about-clients {
  background: #fff;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #666;
  border: 1px solid #ddd;
  text-align: center;
}

.client-logo:hover {
  border-color: #a8a8a8;
  color: #333;
}

/* Leaflet Map */
#world-map {
  width: 100%;
  height: 680px;
  background: #1a1a1a;
  border-radius: 4px;
}
#world-map .leaflet-pane {
  z-index: 1;
}
#world-map .leaflet-marker-pane .lollipop-marker {
  background: none;
  border: none;
}
#world-map .lollipop-pin {
  position: relative;
  width: 24px;
  /* height: 36px; */
  margin-left: -12px;
  /* margin-top: -36px; */
}
#world-map .lollipop-pin .pin-stem {
  width: 3px;
  height: 12px;
  background: #e6b41e;
  margin: 0 auto;
}
#world-map .lollipop-pin .pin-head {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e6b41e;
  margin: -1px auto 0;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.3);
}
#world-map .lollipop-pin .pin-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11px;
  color: #fff;
  font-family: sans-serif;
  margin-top: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}
#world-map .lollipop-marker {
  cursor: pointer;
}
#world-map .lollipop-marker:hover .pin-head,
#world-map .lollipop-marker:hover .pin-stem {
  opacity: 0.9;
  filter: brightness(1.1);
}

.leaflet-touch .leaflet-control-attribution {
  display: none;
}

@media (max-width:1485px){
  .expertise-card-category {
    font-size: 1rem;
  }
}

@media (max-width:1299px){
  .expertise-card-category {
    font-size: 0.9rem;
  }
}

@media (max-width:1205px){
  .expertise-card-category {
    font-size: 0.8rem;
  }
}
@media (max-width:1104px){
  .expertise-card-category {
    font-size: 0.7rem;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

  .expertise-card-category {
    font-size: 1.2rem;
  }

  .section-padding {
    padding: 4rem 2rem;
  }

  .about-sv-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-world {
    padding: 4rem 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 45vh;
    min-height: 300px;
  }

  .section-padding {
    padding: 3rem 1.5rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .client-logo {
    font-size: 0.75rem;
    min-height: 60px;
  }

  .achievement-images {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  /* Leaflet Map */
#world-map {
    height: 380px;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
