/* ==========================================================================
   Professional Membership & Industry Leadership - Executive Gallery Feature
   Apple, Stripe, Framer, Antigravity Luxury B2B Editorial Aesthetic (Zero Cards)
   ========================================================================== */

:root {
  --pml-bg-gradient: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 50%, #F5F7FA 100%);
  --pml-text-heading: #0F172A;
  --pml-text-accent: #2563EB;
  --pml-text-body: #475569;
  --pml-font-heading: 'Syne', 'Outfit', 'Plus Jakarta Sans', -apple-system, sans-serif;
  --pml-font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
}

.pml-section {
  position: relative;
  background: var(--pml-bg-gradient);
  color: var(--pml-text-heading);
  padding: 150px 0 160px;
  overflow: hidden;
  font-family: var(--pml-font-body);
}

/* Curved Wave Top Divider */
.pml-top-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.pml-top-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
  fill: #FFFFFF;
}

/* Ambient Lighting Orbs & Mesh Backgrounds */
.pml-bg-glow-1 {
  position: absolute;
  top: 15%;
  left: -5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
  filter: blur(85px);
  pointer-events: none;
}

.pml-bg-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(212, 161, 57, 0.045) 0%, transparent 75%);
  filter: blur(90px);
  pointer-events: none;
}

.pml-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* Asymmetric 45/55 Split Composition */
.pml-asymmetric-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: center;
}

/* Left Side: Executive Gallery (45% Visual Focus) */
.pml-gallery-stage {
  position: relative;
  height: 540px;
  width: 100%;
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.9s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pml-gallery-stage.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.pml-gallery-card {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 65px -12px rgba(15, 23, 42, 0.14), 0 0 35px rgba(37, 99, 235, 0.05);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pml-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pml-gallery-card:hover img {
  transform: scale(1.03);
}

/* 1 Large Vertical Hero + 2 Overlapping Floating Supporting Images */
.pml-card-hero {
  top: 0;
  left: 0;
  width: 72%;
  height: 380px;
  z-index: 1;
  animation: pmlFloatHero 7.5s ease-in-out infinite alternate;
}

.pml-card-overlap-1 {
  bottom: 0;
  right: 0;
  width: 60%;
  height: 250px;
  z-index: 2;
  animation: pmlFloat1 8.5s ease-in-out infinite alternate 1s;
}

.pml-card-overlap-2 {
  bottom: 30px;
  left: 8%;
  width: 46%;
  height: 190px;
  z-index: 3;
  animation: pmlFloat2 6.8s ease-in-out infinite alternate 0.5s;
}

@keyframes pmlFloatHero {
  0% { transform: translateY(0); }
  100% { transform: translateY(-9px); }
}

@keyframes pmlFloat1 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-11px); }
}

@keyframes pmlFloat2 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}

/* Right Side: Editorial Content (55%) */
.pml-content-col {
  max-width: 630px;
  position: relative;
  padding-left: 32px;
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.9s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s, transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s;
}

.pml-content-col.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Thin Vertical Gradient Line on Left */
.pml-vertical-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2563EB 0%, #D4A139 100%);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
}

.pml-heading {
  position: relative;
  font-family: var(--pml-font-heading);
  font-size: clamp(2.3rem, 4.2vw, 3.7rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--pml-text-heading);
  margin: 0 0 12px;
  padding-bottom: 16px;
  display: inline-block;
}

/* Minimalist Luxury Line Accent Indicator */
.pml-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, #2563EB 0%, #D4A139 100%);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.pml-subheading {
  font-family: var(--pml-font-heading);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 700;
  color: var(--pml-text-accent);
  line-height: 1.35;
  margin: 0 0 28px;
  display: block;
}

.pml-paragraph {
  font-family: var(--pml-font-body);
  font-size: clamp(1.05rem, 1.22vw, 1.18rem);
  line-height: 1.85;
  color: var(--pml-text-body);
  margin: 0 0 24px;
}

.pml-paragraph:last-child {
  margin-bottom: 0;
}

/* Responsive Adaptations */
@media (max-width: 991px) {
  .pml-section {
    padding: 110px 0 120px;
  }
  .pml-asymmetric-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .pml-gallery-stage {
    height: 450px;
  }
  .pml-content-col {
    max-width: 100%;
    padding-left: 24px;
  }
}

@media (max-width: 575px) {
  .pml-section {
    padding: 85px 0 95px;
  }
  .pml-heading {
    margin-bottom: 12px;
  }
  .pml-subheading {
    margin-bottom: 20px;
  }
  .pml-gallery-stage {
    height: 360px;
  }
  .pml-card-hero {
    height: 240px;
    width: 82%;
  }
  .pml-card-overlap-1 {
    height: 170px;
    width: 62%;
  }
  .pml-card-overlap-2 {
    height: 140px;
    width: 48%;
  }
}
