/* ============================================================
   about.css — Page-specific styles for /about
   Zion Property Management
   Depends on: pearl.css (variables, base, buttons, reveals)
   Colors: --blue #1e398f | --pink #c7007e | --gold #f0b429
============================================================ */

/* =============================================
   ABOUT PAGE HERO
============================================= */
.about-hero {
  background: linear-gradient(135deg, #0d1a3a 0%, #1e398f 55%, #2a0845 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px; /* room for slant */
}
.why-card-icon i {
  display: inline-block;
  font-size: 2rem;

  background: linear-gradient(135deg, #1e398f 0%, #c7007e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}
/* Grid background lines */
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

/* Decorative blobs — defined here, positioned by blob-wrapper in HTML */
.about-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.about-blob--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(199, 0, 126, 0.22), transparent 70%);
  animation: blobPulse1 14s ease-in-out infinite;
}
.about-blob--2 {
  width: 380px;
  height: 380px;
  bottom: -80px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(240, 180, 41, 0.18),
    transparent 70%
  );
  animation: blobPulse2 11s ease-in-out infinite;
}
.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.about-badge-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: livePulse 2s infinite;
  flex-shrink: 0;
}
.about-hero-inner {
  max-width: 1300px;
  margin: auto;
  padding: 180px 40px 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 28px 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 12px 0 18px;
}

.about-hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
}

/* Chips / pills */
.about-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 20px;
  transition: background 0.3s;
}
.chip:hover {
  background: rgba(255, 255, 255, 0.18);
}
.chip--gold {
  background: rgba(240, 180, 41, 0.18);
  border-color: rgba(240, 180, 41, 0.4);
  color: #f0b429;
}
.chip i {
  font-size: 0.78rem;
}

/* Hero stat cards (right side) */
.about-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ahs-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  transition:
    transform 0.3s,
    background 0.3s;
}
.ahs-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}
.ahs-card--pink {
  background: rgba(199, 0, 126, 0.12);
  border-color: rgba(199, 0, 126, 0.25);
}
.ahs-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #f0b429, #c7007e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ahs-card sup {
  font-size: 1rem;
  color: #f0b429;
  vertical-align: super;
}
.ahs-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  margin-top: 6px;
}

/* Slanted bottom edge */
.about-hero-slant {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.about-hero-slant svg {
  display: block;
  width: 100%;
}

/* =============================================
   SECTION 1 — WHO WE ARE
============================================= */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.who-paras {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 28px;
}
.who-paras p {
  font-size: 0.97rem;
  color: #374151;
  line-height: 1.75;
}
.who-paras strong {
  color: var(--blue);
}

/* Trust badges row */
.who-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.who-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(30, 57, 143, 0.07),
    rgba(199, 0, 126, 0.07)
  );
  border: 1px solid rgba(30, 57, 143, 0.12);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s;
}
.who-badge:hover {
  background: var(--gradient-main);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
.who-badge i {
  color: var(--pink);
  transition: color 0.3s;
}
.who-badge:hover i {
  color: #fff;
}

/* Video card */
.who-video-wrap {
  position: relative;
}
.video-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 57, 143, 0.08);
  position: relative;
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1a3a, #1e398f);
}
.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.video-thumb:hover .video-thumb-img {
  transform: scale(1.04);
}

/* Fallback when no thumb image */
.video-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #0d1a3a, #1e398f);
}
.vf-icon {
  font-size: 3rem;
}
.video-fallback p {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.video-fallback small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* Play button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
  padding-left: 4px; /* visual center for play icon */
}
.play-btn:hover {
  background: var(--gradient-main);
  border-color: transparent;
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 0 12px rgba(199, 0, 126, 0.15);
}
.video-duration {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
}

/* YouTube iframe */
.video-iframe-wrap {
  position: relative;
  aspect-ratio: 16/9;
}
.video-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Card footer label */
.video-label {
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 57, 143, 0.03);
  border-top: 1px solid rgba(30, 57, 143, 0.06);
}

/* Floating accent card */
.video-accent-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--gradient-main);
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(199, 0, 126, 0.35);
  font-size: 0.82rem;
  animation: floatCard 4s ease-in-out infinite;
  z-index: 3;
}
.video-accent-card i {
  font-size: 1.3rem;
}
.video-accent-card strong {
  display: block;
  font-size: 0.95rem;
}
.video-accent-card span {
  color: rgba(255, 255, 255, 0.7);
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

/* =============================================
   SECTION 2 — VISION & MISSION
============================================= */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0;
}
.vm-card {
  background: linear-gradient(135deg, #0d1a3a 0%, #1e398f 100%);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}
.vm-card:hover {
  transform: translateY(-8px);
}
.vm-card--mission {
  background: linear-gradient(135deg, #1e398f 0%, #c7007e 100%);
}
.vm-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
}
.vm-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
}
.vm-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}
.vm-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

/* Values */
.values-section {
  margin-top: 60px;
}
.values-title {
  font-size: 1.4rem;
  margin-bottom: 32px;
  font-family: "Playfair Display", serif;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.value-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(30, 57, 143, 0.08);
  transition: all 0.4s;
  cursor: default;
}
.value-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pink);
  border-color: rgba(199, 0, 126, 0.2);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 12px;
    color: linear-gradient(135deg, #1e398f 0%, #c7007e 100%);
}
.value-icon i {
 font-size: 2rem;

  background: linear-gradient(135deg, #1e398f 0%, #c7007e 100%);
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}
.value-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 6px;
  color: var(--blue);
}
.value-item p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
}

/* =============================================
   SECTION 3 — FOUNDER
============================================= */
#founder {
  position: relative;
  overflow: hidden;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.4fr);
  gap: 70px;
  align-items: center;
}

.founder-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* Photo with decorative ring */
.founder-photo-wrap {
  position: relative;
}

.founder-photo-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e398f 0%, #c7007e 100%);
  opacity: 0.28;
  animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.28;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.48;
  }
}

.founder-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 18px 45px rgba(199, 0, 126, 0.18);
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #1e398f, #c7007e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-fallback {
  font-size: 4rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

.founder-name-wrap {
  text-align: center;
  max-width: 320px;
}

.founder-name {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.founder-title {
  font-size: 0.88rem;
  color: var(--gray);
  margin-top: 6px;
  line-height: 1.6;
}

.founder-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 14px;
  flex-wrap: wrap;
}

.founder-social a {
  width: 38px;
  height: 38px;
  background: rgba(30, 57, 143, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.founder-social a:hover {
  background: linear-gradient(135deg, #1e398f 0%, #c7007e 100%);
  color: #fff;
  transform: translateY(-3px);
}

/* Pull quote */
.founder-pullquote {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(135deg, #0d1a3a, #1e398f);
  color: #fff;
  border-radius: 22px;
  padding: 26px 28px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  position: relative;
  border: none;
  margin: 0;
}

.founder-pullquote strong {
  display: block;
  font-style: normal;
  background: linear-gradient(90deg, #f0b429, #c7007e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.1rem;
  margin-top: 8px;
}

.founder-pullquote::before {
  content: '"';
  font-size: 4rem;
  line-height: 1;
  color: rgba(199, 0, 126, 0.28);
  position: absolute;
  top: 10px;
  left: 16px;
  font-family: "Playfair Display", serif;
}

/* Right side */
.founder-right {
  min-width: 0;
}

.founder-right .section-tag {
  margin-bottom: 12px;
}

.founder-right .section-title {
  margin-bottom: 0;
}

.founder-message {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 30px;
}

.founder-message p {
  font-size: 0.98rem;
  color: #374151;
  line-height: 1.9;
  margin: 0;
}

.founder-message em {
  color: var(--blue);
  font-style: italic;
  font-weight: 500;
}

/* Signature */
.founder-sig {
  padding-top: 20px;
  border-top: 1px solid rgba(30, 57, 143, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sig-text {
  display: block;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.45rem;
  color: var(--blue);
  line-height: 1.2;
}

.sig-role {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}


/* =============================================
   SECTION 4 — TIMELINE
============================================= */
.timeline-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.timeline-blob--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(199, 0, 126, 0.18), transparent 70%);
  animation: blobPulse1 15s ease-in-out infinite;
}
.timeline-blob--2 {
  width: 300px;
  height: 300px;
  bottom: -60px;
  left: -60px;
  background: radial-gradient(
    circle,
    rgba(240, 180, 41, 0.12),
    transparent 70%
  );
  animation: blobPulse2 12s ease-in-out infinite;
}

.timeline {
  position: relative;
  margin-top: 60px;
  padding: 0 20px;
}

/* Central vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(199, 0, 126, 0.5),
    rgba(30, 57, 143, 0.5)
  );
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 32px;
  align-items: center;
  margin-bottom: 56px;
  position: relative;
}

/* Left-aligned cards: card | dot | year */
.tl-item--left .tl-year {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
}
.tl-item--left .tl-dot {
  grid-column: 2;
  grid-row: 1;
}
.tl-item--left .tl-card {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

/* Right-aligned cards: year | dot | card */
.tl-item--right .tl-year {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}
.tl-item--right .tl-dot {
  grid-column: 2;
  grid-row: 1;
}
.tl-item--right .tl-card {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
}

.tl-year {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(90deg, #f0b429, #c7007e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.tl-year--future {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.6)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Dot */
.tl-dot {
  width: 52px;
  height: 52px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 0 0 6px rgba(199, 0, 126, 0.15);
  flex-shrink: 0;
  transition: transform 0.3s;
  z-index: 2;
}
.tl-item:hover .tl-dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 10px rgba(199, 0, 126, 0.2);
}
.tl-dot--future {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

/* Timeline card */
.tl-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.4s;
}
.tl-item:hover .tl-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(199, 0, 126, 0.3);
  transform: translateY(-4px);
}
.tl-card--future {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.15);
}
.tl-card-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.tl-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.tl-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  line-height: 1.6;
}

.tl-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240, 180, 41, 0.15);
  border: 1px solid rgba(240, 180, 41, 0.3);
  color: #f0b429;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 12px;
}
.tl-stat--future {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   SECTION 5 — PREMISES
============================================= */
.premises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
/* First card (HQ) larger */
.premises-grid .premises-card:first-child {
  grid-column: span 1;
}

.premises-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s;
}
.premises-card:hover {
  transform: translateY(-8px);
}

.premises-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1e398f, #0d1a3a);
  overflow: hidden;
}
.premises-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.premises-card:hover .premises-img {
  transform: scale(1.06);
}
.premises-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #1e398f, #c7007e);
}

.premises-hq-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f0b429;
  color: #0d1a3a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hover overlay */
.premises-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 26, 58, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.premises-card:hover .premises-overlay {
  opacity: 1;
}
.premises-overlay h4 {
  color: #fff;
  font-size: 1rem;
}
.premises-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-top: 4px;
}

.premises-caption {
  padding: 14px 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 3px solid transparent;
  border-image: var(--gradient-main) 1;
  transition: background 0.3s;
}
.premises-card:hover .premises-caption {
  background: var(--offwhite);
}
.premises-caption strong {
  font-size: 0.9rem;
  color: var(--dark);
}
.premises-caption span {
  font-size: 0.75rem;
  color: var(--gray);
}

/* =============================================
   SECTION 6 — TEAM
============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(30, 57, 143, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-pink);
  border-color: rgba(199, 0, 126, 0.15);
}

.team-photo-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #1e398f, #c7007e);
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.team-card:hover .team-photo {
  transform: scale(1.05);
}

.team-photo-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 2.5rem;
  /*padding: 20px;*/
}
.team-photo-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Overlay icon on photo */
.team-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(199, 0, 126, 0.4);
}

.team-info {
  padding: 24px 22px;
}
.team-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.team-info p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 14px;
}
.team-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    rgba(30, 57, 143, 0.07),
    rgba(199, 0, 126, 0.07)
  );
  border: 1px solid rgba(30, 57, 143, 0.1);
  color: var(--blue);
  padding: 6px 12px;
  border-radius: 8px;
}
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

.about-hero-gradient {
  background: linear-gradient(90deg, #f0b429, #c7007e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* =============================================
   SECTION 7 — WHY CHOOSE
============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 22px;
  border: 1px solid rgba(30, 57, 143, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: default;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pink);
}
.premises-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-card:hover .why-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 8px;
  color: var(--dark);
}
.why-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.65;
}

/* About CTA blobs */
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.cta-blob--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: rgba(255, 255, 255, 0.08);
  animation: blobPulse1 12s ease-in-out infinite;
}

/* CTA shared styles (from pearl.css) */
.cta-inner {
  text-align: center;
  padding: 90px 40px;
  max-width: 800px;
  margin: auto;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--blue);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* Floating WhatsApp + Back to Top (from pearl.css pattern) */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 100px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  z-index: 900;
  animation: waFloat 3s ease-in-out infinite;
  transition: transform 0.3s;
}
.float-wa:hover {
  transform: scale(1.15);
}
@keyframes waFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.back-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: var(--shadow);
  border: none;
}
.back-top.show {
  opacity: 1;
  transform: translateY(0);
}
.back-top:hover {
  transform: translateY(-4px);
}

/* =============================================
   RESPONSIVE
============================================= */

@media (min-width: 1201px) {
  .founder-grid {
    grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.45fr);
    gap: 80px;
  }

  .founder-photo {
    width: 260px;
    height: 260px;
  }

  .founder-message p {
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-hero-inner {
    gap: 40px;
    padding: 140px 30px 60px;
  }
    .founder-grid {
    gap: 50px;
    grid-template-columns: 0.95fr 1.2fr;
  }

  .founder-photo {
    width: 220px;
    height: 220px;
  }

  .founder-pullquote {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
    padding: 160px 24px 50px;
    align-items: start;
  }
  .about-hero-stats {
    max-width: 420px;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
   .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }

  .founder-left {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
  }

  .founder-name-wrap {
    text-align: left;
    max-width: 320px;
    padding-top: 50px;
  }

  .founder-social {
    justify-content: flex-start;
  }

  .founder-pullquote {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .founder-right {
    text-align: left;
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .premises-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
    
  .about-hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
    padding: 150px 20px 40px;
    align-items: start;
  }
  .about-hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .timeline::before {
    left: 28px;
  }
  .tl-item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .tl-item--left .tl-year,
  .tl-item--right .tl-year {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    font-size: 1.6rem;
  }
  .tl-item--left .tl-dot,
  .tl-item--right .tl-dot {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
    margin-top: 4px;
  }
  .tl-item--left .tl-card,
  .tl-item--right .tl-card {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .premises-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
    .founder-grid {
    gap: 32px;
  }

  .founder-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .founder-name-wrap {
    text-align: center;
    max-width: 100%;
    padding-top: 0;
  }

  .founder-social {
    justify-content: center;
  }

  .founder-photo {
    width: 190px;
    height: 190px;
  }

  .founder-photo-ring {
    inset: -8px;
  }

  .founder-pullquote {
    padding: 22px 20px;
    font-size: 0.94rem;
    line-height: 1.65;
    border-radius: 18px;
  }

  .founder-pullquote strong {
    font-size: 1rem;
  }

  .founder-pullquote::before {
    font-size: 3rem;
    top: 8px;
    left: 12px;
  }

  .founder-right .section-title {
    line-height: 1.2;
  }

  .founder-message {
    gap: 14px;
    margin: 20px 0 24px;
  }

  .founder-message p {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .sig-text {
    font-size: 1.25rem;
  }

  .sig-role {
    font-size: 0.8rem;
  }

  .wave-divider svg {
    height: 42px !important;
  }
  .section-inner {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .about-hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .about-hero-inner {
    padding: 150px 16px 36px;
    gap: 20px;
  }
  .about-hero-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
   .founder-grid {
    gap: 26px;
  }

  .founder-photo {
    width: 165px;
    height: 165px;
    border-width: 4px;
  }

  .founder-name {
    font-size: 1.15rem;
  }

  .founder-title {
    font-size: 0.8rem;
  }

  .founder-social a {
    width: 36px;
    height: 36px;
    font-size: 0.88rem;
  }

  .founder-pullquote {
    padding: 20px 16px;
    font-size: 0.9rem;
  }

  .founder-message p {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .founder-sig {
    padding-top: 16px;
  }

  .sig-text {
    font-size: 1.1rem;
  }

  .sig-role {
    font-size: 0.76rem;
  }

  .wave-divider svg {
    height: 32px !important;
  }
}
/* =============================================
   SECTION 5.5 — GALLERY
============================================= */

/* Filter Tabs */
.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 36px;
}

.gallery-filter {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(30, 57, 143, 0.15);
  background: #fff;
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.28s;
  font-family: "DM Sans", sans-serif;
}

.gallery-filter:hover {
  border-color: rgba(30, 57, 143, 0.35);
  color: var(--blue);
  transform: translateY(-2px);
}

.gallery-filter.active {
  background: var(--gradient-main);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(199, 0, 126, 0.25);
}

/* Masonry grid — 3 equal columns */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 8px;
}

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Individual item */
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover {
  transform: translateY(-6px);
  z-index: 2;
}

/* Item hidden during filter */
.gallery-item.gallery-hidden {
  display: none;
}

.gallery-item.gallery-fade-in {
  animation: galleryFadeIn 0.35s ease forwards;
}

@keyframes galleryFadeIn {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Image wrapper — variable heights create the masonry illusion */
.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1e398f, #c7007e);
}

.gallery-img-wrap--tall {
  aspect-ratio: 3 / 4;
}

.gallery-img-wrap--short {
  aspect-ratio: 16 / 9;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.07);
}

/* Hover overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 26, 58, 0.88) 0%,
    rgba(13, 26, 58, 0.35) 55%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}

.gallery-overlay-inner h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.gallery-overlay-inner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.4;
}

/* Category tag chips on overlay */
.gallery-cat-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: rgba(30, 57, 143, 0.75);
  color: #b8ccff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 6px;
  width: fit-content;
}

.gallery-cat-tag--pink {
  background: rgba(199, 0, 126, 0.75);
  color: #ffb8e0;
}

.gallery-cat-tag--gold {
  background: rgba(180, 120, 10, 0.8);
  color: #ffe196;
}

.gallery-cat-tag--teal {
  background: rgba(0, 140, 130, 0.75);
  color: #a8f0ea;
}

/* Expand button (top-right corner on hover) */
.gallery-expand-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.gallery-item:hover .gallery-expand-btn {
  opacity: 1;
  transform: scale(1);
}

.gallery-expand-btn:hover {
  background: var(--gradient-main);
  border-color: transparent;
  transform: scale(1.12) !important;
}

/* =============================================
   LIGHTBOX
============================================= */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox.lb-open {
  display: flex !important;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 36, 0.94);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: min(88vw, 960px);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: lbIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes lbIn {
  from { opacity: 0; transform: scale(0.93) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.lightbox-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  max-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.lightbox-img.lb-loading {
  opacity: 0;
}

/* Spinner */
.lightbox-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.lightbox-loader.lb-visible {
  opacity: 1;
}

.lb-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #c7007e;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Caption */
.lightbox-caption {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.lb-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f0b429;
}

.lightbox-caption strong {
  font-size: 1.05rem;
  color: #fff;
  font-family: "Playfair Display", serif;
}

.lightbox-caption p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* Counter badge */
.lightbox-counter {
  position: absolute;
  top: -48px;
  right: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

/* Navigation buttons */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.lightbox-close {
  top: -52px;
  right: 0;
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 0.85rem;
}

.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gradient-main);
  border-color: transparent;
  transform: translateY(-50%) scale(1.08);
}

.lightbox-close:hover {
  transform: scale(1.08);
}
/* Order badge */
.gallery-item {
  position: relative; /* ensure badge positions relative to item */
}

.gallery-order-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(13, 26, 58, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f0b429;
  font-size: 0.68rem;
  font-weight: 800;
  font-family: "DM Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
  pointer-events: none;
}

.gallery-item:hover .gallery-order-badge {
  opacity: 0; /* hide badge on hover so overlay reads clean */
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(40px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.video-modal-player {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-modal-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: #ff4d4d;
    color: white;
    transform: rotate(90deg);
}

/* Make play button on thumbnail nicer */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    color: #c7007e;
    border: none;
    border-radius: 50%;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(199, 0, 126, 0.4);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    background: white;
}
/* =============================================
   GALLERY — RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Move col-3 items into col-1 and col-2 on tablet */
  .gallery-col:nth-child(3) {
    display: none;
  }

  .lightbox-prev { left: -52px; }
  .lightbox-next { right: -52px; }
}

@media (max-width: 768px) {
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-col:nth-child(3) {
    display: none;
  }

  .lightbox-content {
    max-width: 95vw;
  }

  .lightbox-prev { left: -4px; bottom: -64px; top: auto; transform: none; }
  .lightbox-next { right: -4px; bottom: -64px; top: auto; transform: none; }

  .lightbox-prev:hover,
  .lightbox-next:hover {
    transform: scale(1.08);
  }

  .lightbox-img {
    max-height: 60vh;
  }

  .lightbox-img-wrap {
    max-height: 60vh;
  }

  .gallery-filters {
    gap: 8px;
    margin: 30px 0 28px;
  }

  .gallery-filter {
    padding: 8px 16px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .gallery-col:nth-child(2),
  .gallery-col:nth-child(3) {
    display: none;
  }

  .gallery-img-wrap--tall {
    aspect-ratio: 4 / 3;
  }

  .lightbox-close {
    top: -48px;
    right: 0;
  }

  .lightbox-counter {
    top: -48px;
    left: 0;
    right: auto;
  }
}