/* =====================
   HERO SECTION
===================== */
.page-hero {
  position: relative;
  height: 50vh;
  background: #D95427;
  display: flex;
  align-items: center;
  color: #fff;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.page-hero-content {
  position: relative;
  max-width: 700px;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1.2rem;
  color: #eaeaea;
}

/* =====================
   CONTENT SECTIONS
===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--primary-red);
}

p, li {
  color: var(--gray);
  line-height: 1.7;
}

ul {
  margin: 20px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

/* =====================
   GLOBAL PRESENCE
===================== */
.map-glass {
  border-radius: 25px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  margin-top: 30px;
}

.map-glass iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* =====================
   LEADERSHIP / TEAM
===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.team-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-card h4 {
  margin-bottom: 5px;
  color: var(--primary-red);
}

.team-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* =====================
   SERVICES SUMMARY
===================== */
.services-summary p {
  margin-bottom: 20px;
}

/* =====================
   CTA / QR CODE
===================== */
.cta {
  text-align: center;
  padding: 60px 20px;
}

.cta h3 {
  margin-bottom: 20px;
  color: var(--primary-red);
}

.qr-code img {
  max-width: 180px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .map-glass iframe {
    height: 300px;
  }
}
