/* =========================================================================
   PRIME PROPERTIES — Component Library (v2.0 Overhaul)
   Adapted from My UIverse (https://component-library-bff.pages.dev/)
   Recolored from orange/dark to navy/gold for the Prime Properties brand.
   Load AFTER styles.css to layer new component styles on top.
   ========================================================================= */

/* --------------------------- 1. GLOW BUTTON ---------------------------- */
/* Source: Glow Button — green CTA with hover glow */
.glow-btn {
  background: #10B981;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.glow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.6), 0 0 48px rgba(16, 185, 129, 0.3);
}
.glow-btn:active { transform: scale(1.02); }
.glow-btn svg { width: 18px; height: 18px; }

/* --------------------------- 2. SHINE SWEEP BUTTON --------------------- */
/* Source: Shine Sweep Button — premium CTA with shine sweep on hover */
.btn-shine {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: none;
}
.btn-shine:hover { transform: translateY(-3px) scale(1.03); }
.btn-shine:active { transform: translateY(0) scale(0.99); }

.btn-shine-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.35);
}
.btn-shine-gold:hover {
  background: var(--gold-deep);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.55);
}
.btn-shine-gold::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.btn-shine-gold:hover::after { left: 100%; }

.btn-shine-navy {
  background: var(--navy);
  color: var(--gold);
  box-shadow: 0 6px 18px rgba(15, 42, 71, 0.35);
}
.btn-shine-navy:hover {
  background: #1a3a5c;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(15, 42, 71, 0.5);
}
.btn-shine-navy::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  transition: left 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.btn-shine-navy:hover::after { left: 100%; }

@media (prefers-reduced-motion: reduce) {
  .btn-shine, .btn-shine-gold::after, .btn-shine-navy::after {
    transition-duration: 0.001ms !important;
  }
  .btn-shine:hover { transform: none; }
}

/* --------------------------- 3. ARROW SLIDE BUTTON --------------------- */
.btn-arrow-slide {
  padding: 12px 28px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-btn);
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease, background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}
.btn-arrow-slide:hover {
  gap: 16px;
  background: var(--gold);
  color: var(--navy);
}
.btn-arrow-slide .arrow {
  transition: transform 0.3s ease;
  font-size: 1.05rem;
}
.btn-arrow-slide:hover .arrow { transform: translateX(4px); }

/* --------------------------- 4. GLASSMORPHISM BUTTON ------------------- */
.btn-glass {
  padding: 13px 32px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: var(--radius-btn);
  background: rgba(201, 168, 76, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-glass:hover {
  background: rgba(201, 168, 76, 0.25);
  border-color: var(--gold);
  color: var(--white);
}

/* --------------------------- 5. 3D TILT CARD --------------------------- */
/* Source: 3D Tilt Card — perspective tilt that follows mouse */
.card-tilt {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  color: var(--navy);
  transform-style: preserve-3d;
  transition: transform 0.1s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: 1px solid transparent;
  position: relative;
}
.card-tilt:hover {
  box-shadow: 0 20px 50px rgba(15, 42, 71, 0.15);
  border-color: var(--gold);
}
.card-tilt .tilt-inner {
  transform: translateZ(40px);
}
.card-tilt .tilt-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: inline-block;
  color: var(--gold-deep);
}

/* --------------------------- 6. GLOW BORDER CARD ----------------------- */
/* Source: Glow Border Card — animated gradient border on hover */
.card-glow-border {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}
.card-glow-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-card);
  padding: 1px;
  background: linear-gradient(135deg, var(--gold), transparent 50%, var(--gold-deep));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.card-glow-border:hover::before { opacity: 1; }
.card-glow-border:hover {
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.25), var(--shadow-lg);
  transform: translateY(-4px);
}

/* --------------------------- 7. FLIP CARD ------------------------------ */
/* Source: Flip Card — 3D flip on hover */
.card-flip {
  perspective: 1200px;
  width: 100%;
  height: 320px;
}
.card-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  transform-style: preserve-3d;
}
.card-flip:hover .card-flip-inner,
.card-flip:focus-within .card-flip-inner { transform: rotateY(180deg); }
.card-flip-front, .card-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.card-flip-front {
  background: var(--navy);
  color: var(--white);
}
.card-flip-back {
  background: var(--gold);
  color: var(--navy);
  transform: rotateY(180deg);
}
.card-flip-front .flip-icon { font-size: 3rem; margin-bottom: 16px; color: var(--gold); }
.card-flip-front h3 { color: var(--white); margin-bottom: 10px; }
.card-flip-front p { color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.card-flip-back h3 { color: var(--navy); margin-bottom: 14px; }
.card-flip-back p { color: var(--navy); font-size: 0.95rem; line-height: 1.6; }
.card-flip-back .btn-navy {
  margin-top: 18px;
  background: var(--navy);
  color: var(--gold);
}

/* --------------------------- 8. WHY US CARD ---------------------------- */
/* Source: Why Us Card — dark card with glow on hover */
.why-card-premium {
  background: var(--navy);
  color: var(--white);
  border-top: 4px solid var(--gold);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px 28px;
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  height: 100%;
}
.why-card-premium::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(201, 168, 76, 0.2), transparent 70%);
  transition: height 0.6s ease;
  pointer-events: none;
  z-index: 0;
}
.why-card-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.3), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}
.why-card-premium:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 40px rgba(15, 42, 71, 0.4), 0 0 30px rgba(201, 168, 76, 0.25);
  border-top-color: var(--gold);
}
.why-card-premium:hover::before { height: 100%; }
.why-card-premium:hover::after { opacity: 1; }
.why-card-premium > * { position: relative; z-index: 1; }
.why-card-premium .card-title { color: var(--white); font-family: var(--font-head); font-size: 1.35rem; }
.why-card-premium .card-text { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.6; }
.why-card-premium .card-icon-large {
  width: 80px; height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  margin-bottom: 6px;
  color: var(--gold);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), background 0.4s ease;
}
.why-card-premium .card-icon-large svg { width: 36px; height: 36px; }
.why-card-premium:hover .card-icon-large {
  transform: scale(1.15) rotate(-6deg);
  background: rgba(201, 168, 76, 0.2);
}

/* --------------------------- 9. STAFF/AGENT CARD ----------------------- */
/* Source: Staff Card — team member card with image zoom on hover */
.staff-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 42, 71, 0.10);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid transparent;
}
.staff-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(15, 42, 71, 0.25), 0 0 0 1px var(--gold);
  border-color: var(--gold);
}
.staff-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy);
  position: relative;
}
.staff-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: grayscale(100%);
}
.staff-card:hover .staff-card-img img {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.staff-card-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.staff-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  margin: 0 0 6px;
}
.staff-role {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.staff-rera {
  font-size: 0.78rem;
  color: var(--slate);
  margin-bottom: 16px;
}
.staff-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.staff-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-deep);
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.staff-quote {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  margin-top: auto;
  position: relative;
  padding-left: 16px;
}
.staff-quote::before {
  content: '\201C';
  position: absolute;
  left: 0; top: -6px;
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
}
.staff-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* --------------------------- 10. STATS BAR ----------------------------- */
/* Source: Stats Bar — gradient banner with stat cards (recolored navy+gold) */
.stats-bar-premium {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  color: var(--white);
  padding: 50px 32px;
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
}
.stats-bar-premium::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15), transparent 60%);
  pointer-events: none;
  animation: statsGlow 8s ease-in-out infinite;
}
@keyframes statsGlow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(40%); }
}
.stats-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item-premium {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 12px;
  border-radius: var(--radius-card);
  transition: transform 0.4s ease, background 0.4s ease;
}
.stat-item-premium:hover {
  transform: translateY(-6px);
  background: rgba(201, 168, 76, 0.08);
}
.stat-number-premium {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1;
  color: var(--gold);
}
.stat-label-premium {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.85);
}
@media (max-width: 768px) {
  .stats-grid-premium { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
}
@media (max-width: 480px) {
  .stats-grid-premium { grid-template-columns: 1fr; }
}

/* --------------------------- 11. HERO TRUST BUBBLE --------------------- */
/* Source: Hero Trust Bubble — frosted glass trust indicator */
.hero-trust-bubble {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  background: rgba(15, 42, 71, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 168, 76, 0.35);
}
.hero-trust-bubble .stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.95rem;
}
.hero-trust-bubble strong { color: var(--gold); font-weight: 700; }
.hero-trust-bubble .sep {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
  flex-shrink: 0;
}
.hero-trust-bubble .group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: trustPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes trustPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

/* --------------------------- 12. OPEN NOW BADGE ------------------------ */
/* Source: Open Now Badge — pulsing status indicator */
.open-now-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: var(--green);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}
.open-now-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: openNowPulse 2s ease-in-out infinite;
}
@keyframes openNowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}
@media (prefers-reduced-motion: reduce) {
  .open-now-badge .dot { animation: none; }
}

/* --------------------------- 13. PROMO MARQUEE ------------------------- */
/* Source: Promo Marquee — infinite scrolling banner */
.promo-banner {
  background: var(--navy);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  width: 100%;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}
.promo-marquee {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  padding-left: 28px;
}
.promo-marquee .dot-sep {
  color: var(--gold);
  font-size: 0.6rem;
}
.promo-marquee svg {
  width: 14px; height: 14px;
  vertical-align: middle;
  margin-right: 6px;
  color: var(--gold);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .promo-marquee { animation: none; }
}

/* --------------------------- 14. FINAL CTA GLOW ------------------------ */
/* Source: Final CTA Glow — gradient with radial glow animation */
.final-cta-glow {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--navy);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-glow::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
  animation: ctaGlow 6s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(40%); }
}
.final-cta-glow-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: -0.5px;
  position: relative;
}
.final-cta-glow-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 30px;
  opacity: 0.85;
  position: relative;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-glow-btn {
  position: relative;
  background: var(--navy);
  color: var(--gold);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 38px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15, 42, 71, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.final-cta-glow-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(15, 42, 71, 0.4);
}
.final-cta-glow-call {
  margin-top: 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
}
.final-cta-glow-call a { color: var(--navy); text-decoration: underline; }

/* --------------------------- 15. TIMELINE HOVER SCALE ----------------- */
/* Source: Timeline Hover Scale — horizontal timeline with scaling nodes */
.timeline-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.timeline-premium::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  z-index: 0;
}
.timeline-node-premium {
  position: relative;
  text-align: center;
  z-index: 1;
  transition: transform 0.35s ease;
  cursor: pointer;
  padding: 0 8px;
}
.timeline-node-premium:hover { transform: scale(1.08); }
.timeline-circle-premium {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(15, 42, 71, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.timeline-node-premium:hover .timeline-circle-premium {
  transform: scale(1.15);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.5);
  background: var(--gold);
  color: var(--navy);
}
.timeline-year-premium {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}
.timeline-node-premium:hover .timeline-year-premium { color: var(--gold-deep); }
.timeline-title-premium {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-desc-premium {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
  padding: 0 4px;
}
@media (max-width: 768px) {
  .timeline-premium { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .timeline-premium::before { display: none; }
}
@media (max-width: 480px) {
  .timeline-premium { grid-template-columns: 1fr; }
}

/* --------------------------- 16. TESTIMONIAL SPOTLIGHT ----------------- */
/* Source: Testimonial Spotlight — quote card with hover lift */
.testimonial-spotlight {
  position: relative;
  background: var(--white);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-card);
  padding: 36px 30px;
  box-shadow: 0 8px 30px rgba(15, 42, 71, 0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-spotlight:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 14px 40px rgba(15, 42, 71, 0.18), 0 0 0 1px rgba(201, 168, 76, 0.3);
}
.testimonial-spotlight::before {
  content: '\201C';
  position: absolute;
  top: 12px; left: 22px;
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.testimonial-spotlight:hover::before {
  opacity: 0.5;
  transform: scale(1.15);
}
.testimonial-spotlight-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.testimonial-spotlight-quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.7;
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.testimonial-spotlight-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-deep);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.testimonial-spotlight-detail {
  font-size: 0.82rem;
  color: var(--slate);
  position: relative;
  z-index: 1;
}
.testimonial-spotlight-g {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--slate);
  position: relative;
  z-index: 1;
}
.testimonial-spotlight-g .g-mark {
  width: 22px; height: 22px;
  background: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--gold-deep);
}

/* --------------------------- 17. SECTION DIVIDER DIAMOND --------------- */
/* Source: Section Divider with Diamond */
.divider-diamond-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px auto 28px;
}
.divider-diamond-premium .line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}
.divider-diamond-premium .diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
  opacity: 0.9;
  transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
}
.divider-diamond-premium:hover .diamond {
  transform: rotate(225deg) scale(1.4);
  opacity: 1;
}

/* --------------------------- 18. ACCORDION FAQ ------------------------ */
/* Source: Accordion FAQ — smooth expand/collapse via max-height */
.faq-accordion {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item-premium {
  border: 1px solid var(--navy-10);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item-premium:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.faq-item-premium.is-active {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.faq-q-premium {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.faq-q-premium:hover { background-color: var(--soft-blue); }
.faq-icon-premium {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-deep);
  transition: transform 0.3s ease;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item-premium.is-active .faq-icon-premium { transform: rotate(45deg); }
.faq-a-premium {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item-premium.is-active .faq-a-premium { max-height: 280px; }
.faq-a-premium p {
  margin: 0;
  padding: 0 24px 20px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--slate);
}

/* --------------------------- 19. SOCIAL LINKS ------------------------- */
/* Source: Social Links — hover color-fill icons */
.social-links-row {
  display: flex;
  gap: 12px;
}
.social-link-premium {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.social-link-premium svg { width: 18px; height: 18px; }
.social-link-premium:hover { transform: translateY(-5px) scale(1.1); }
.social-link-premium.social-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(220,39,67,0.45);
}
.social-link-premium.social-fb:hover {
  background: #1877F2;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(24,119,242,0.45);
}
.social-link-premium.social-li:hover {
  background: #0A66C2;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(10,102,194,0.45);
}
.social-link-premium.social-wa:hover {
  background: #25D366;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(37,211,102,0.45);
}
.social-link-premium.social-yt:hover {
  background: #FF0000;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(255,0,0,0.45);
}

/* --------------------------- 20. GALLERY LIGHTBOX --------------------- */
/* Source: Gallery Lightbox — click to enlarge */
.gallery-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-thumb-premium {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-card);
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  display: block;
}
.gallery-thumb-premium:hover {
  transform: scale(1.03);
  opacity: 0.92;
  box-shadow: 0 12px 30px rgba(15, 42, 71, 0.25);
}
@media (max-width: 768px) {
  .gallery-grid-premium { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid-premium { grid-template-columns: 1fr; }
}
.lightbox-premium {
  position: fixed;
  inset: 0;
  background: rgba(15, 42, 71, 0.96);
  backdrop-filter: blur(8px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-premium.open { opacity: 1; pointer-events: auto; }
.lightbox-img-premium {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 3px solid var(--gold);
}
.lightbox-close-premium {
  position: absolute;
  top: 24px; right: 32px;
  color: var(--white);
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease, transform 0.25s ease;
}
.lightbox-close-premium:hover {
  color: var(--gold);
  transform: rotate(90deg);
}
.lightbox-nav-premium {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.lightbox-nav-premium:hover { background: var(--gold); color: var(--navy); }
.lightbox-nav-premium.prev { left: 24px; }
.lightbox-nav-premium.next { right: 24px; }

/* --------------------------- 21. CUSTOM SORT DROPDOWN ----------------- */
/* Source: Custom Sort Dropdown — pill trigger with slide-down menu */
.catalog-sort-premium {
  position: relative;
  display: inline-block;
  font-family: var(--font-body);
}
.sort-trigger-premium {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--navy-10);
  border-radius: var(--radius-pill);
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.sort-trigger-premium:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}
.catalog-sort-premium.open .sort-trigger-premium {
  border-color: var(--gold);
  background: var(--white);
  color: var(--gold-deep);
}
.sort-trigger-arrow-premium {
  width: 14px; height: 14px;
  transition: transform 0.3s ease;
}
.catalog-sort-premium.open .sort-trigger-arrow-premium { transform: rotate(180deg); }
.sort-menu-premium {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--navy-10);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 40px rgba(15, 42, 71, 0.15);
  padding: 6px;
  list-style: none;
  margin: 0;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}
.catalog-sort-premium.open .sort-menu-premium {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sort-option-premium {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  padding: 10px 14px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}
.sort-option-premium:hover {
  background: var(--soft-blue);
  color: var(--navy);
}
.sort-option-premium.active {
  background: var(--soft-blue);
  color: var(--gold-deep);
  font-weight: 600;
}
.sort-option-icon-premium {
  width: 16px;
  text-align: center;
  color: var(--gold-deep);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.sort-check-premium {
  margin-left: auto;
  color: var(--gold-deep);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.sort-option-premium.active .sort-check-premium { opacity: 1; }

/* --------------------------- 22. FILTER CHIP -------------------------- */
/* Source: Filter Chip Variants — selectable chip with active state */
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--navy-10);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.filter-chip:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateY(-1px);
}
.filter-chip.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.filter-chip svg {
  width: 14px; height: 14px;
}

/* --------------------------- 23. FORM STYLING ------------------------- */
/* Source: Form Styling — inputs, selects, textareas with focus states */
.styled-form-premium {
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row-premium {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row-premium label {
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-row-premium input,
.form-row-premium select,
.form-row-premium textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--navy-10);
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  min-height: 44px;
}
.form-row-premium input:focus,
.form-row-premium select:focus,
.form-row-premium textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.form-row-premium textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row-premium select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B08D4F' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-grid-2-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .form-grid-2-premium { grid-template-columns: 1fr; }
}

/* --------------------------- 24. FLOATING LABEL ----------------------- */
/* Source: Floating Label Input */
.floating-label-premium {
  position: relative;
}
.floating-label-premium input,
.floating-label-premium textarea {
  width: 100%;
  padding: 18px 14px 10px;
  border: 1.5px solid var(--navy-10);
  border-radius: var(--radius-btn);
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.floating-label-premium input:focus,
.floating-label-premium textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.floating-label-premium label {
  position: absolute;
  left: 14px;
  top: 14px;
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.25s ease;
  pointer-events: none;
  background: var(--white);
  padding: 0 4px;
}
.floating-label-premium input:focus ~ label,
.floating-label-premium input:not(:placeholder-shown) ~ label,
.floating-label-premium textarea:focus ~ label,
.floating-label-premium textarea:not(:placeholder-shown) ~ label {
  top: -8px;
  left: 10px;
  font-size: 0.72rem;
  color: var(--gold-deep);
  font-weight: 600;
}

/* --------------------------- 25. BADGE -------------------------------- */
/* Source: Badge — colored pill badges */
.badge-premium {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.badge-green-premium {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.badge-amber-premium {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.badge-red-premium {
  background: rgba(220, 38, 38, 0.15);
  color: var(--red);
  border: 1px solid rgba(220, 38, 38, 0.3);
}
.badge-gold-premium {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-deep);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

/* --------------------------- 26. SKELETON LOADER --------------------- */
/* Source: Skeleton Loader — shimmer placeholder */
.skeleton-premium {
  background: linear-gradient(90deg, #eef2f6 25%, #dde4ec 50%, #eef2f6 75%);
  background-size: 200% 100%;
  animation: shimmerPremium 1.5s infinite;
  border-radius: var(--radius-btn);
}
@keyframes shimmerPremium {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .skeleton-premium { animation: none; }
}

/* --------------------------- 27. DOT PULSE LOADER --------------------- */
/* Source: Dot Pulse Loader */
.dot-loader-premium {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
.dot-loader-premium span {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotPulsePremium 1.4s infinite ease-in-out;
}
.dot-loader-premium span:nth-child(2) { animation-delay: 0.2s; }
.dot-loader-premium span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulsePremium {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

/* --------------------------- 28. STEP INDICATOR ----------------------- */
/* Source: Step Indicator (Vertical Timeline) */
.step-indicator-premium {
  position: relative;
  padding-left: 44px;
  list-style: none;
}
.step-indicator-premium::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
}
.step-item-premium {
  position: relative;
  padding-bottom: 28px;
}
.step-item-premium:last-child { padding-bottom: 0; }
.step-dot-premium {
  position: absolute;
  left: -44px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 1;
  transition: all 0.3s ease;
}
.step-item-premium:hover .step-dot-premium {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
}
.step-title-premium {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.step-desc-premium {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.5;
}

/* --------------------------- 29. BREADCRUMB NAV ----------------------- */
/* Source: Breadcrumb Navigation */
.breadcrumb-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--soft-blue);
  letter-spacing: 0.5px;
  justify-content: center;
  margin-top: 18px;
}
.breadcrumb-premium a {
  color: var(--soft-blue);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb-premium a:hover { color: var(--gold); }
.breadcrumb-premium .sep { color: var(--gold); }
.breadcrumb-premium .current { color: var(--gold); font-weight: 600; }

/* --------------------------- 30. FEATURE GRID CARD ------------------- */
/* Source: Feature Grid Card — icon + title + description */
.feature-card-premium {
  text-align: center;
  padding: 36px 26px;
  border-radius: var(--radius-card);
  background: var(--white);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border: 1px solid var(--navy-10);
  height: 100%;
}
.feature-card-premium:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.feature-icon-premium {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: 50%;
  color: var(--gold-deep);
  transition: transform 0.4s ease, background 0.4s ease;
}
.feature-card-premium:hover .feature-icon-premium {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(201, 168, 76, 0.25);
}
.feature-icon-premium svg { width: 30px; height: 30px; }
.feature-card-premium h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card-premium p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.6;
}

/* --------------------------- 31. SUCCESS CHECKMARK -------------------- */
/* Source: Success Checkmark Animation */
.success-check-premium {
  display: inline-block;
}
.success-check-premium svg {
  width: 60px;
  height: 60px;
}
.success-check-premium circle {
  stroke: var(--green);
  stroke-width: 2;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: checkCirclePremium 0.6s ease forwards;
}
.success-check-premium path {
  stroke: var(--green);
  stroke-width: 3;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkPathPremium 0.3s 0.6s ease forwards;
}
@keyframes checkCirclePremium { to { stroke-dashoffset: 0; } }
@keyframes checkPathPremium { to { stroke-dashoffset: 0; } }

/* --------------------------- 32. EMPTY STATE -------------------------- */
/* Source: Empty State */
.empty-state-premium {
  text-align: center;
  padding: 80px 20px;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px dashed var(--navy-10);
}
.empty-state-premium .es-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  color: var(--slate-light);
}
.empty-state-premium h4 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.empty-state-premium p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 22px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------- 33. TOOLTIP ------------------------------ */
/* Source: Tooltip Popup */
.tooltip-premium {
  position: relative;
  display: inline-block;
}
.tooltip-premium .tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--navy);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius-btn);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  z-index: 50;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: var(--shadow-md);
}
.tooltip-premium .tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--navy);
}
.tooltip-premium:hover .tooltip-text,
.tooltip-premium:focus-within .tooltip-text {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* --------------------------- 34. PROPERTY CARD PREMIUM ---------------- */
/* Custom: enhanced property card combining Product Card + Why Us Card */
.property-card-v2 {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  position: relative;
}
.property-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 42, 71, 0.18), 0 0 0 1px var(--gold);
  border-color: var(--gold);
}
.property-card-v2 .property-media {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--soft-blue);
}
.property-card-v2 .property-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.property-card-v2:hover .property-media img {
  transform: scale(1.08);
}
.property-card-v2 .property-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 42, 71, 0.5) 100%);
  pointer-events: none;
}
.property-card-v2 .property-body {
  padding: 28px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.property-card-v2 .property-price-tag {
  position: absolute;
  top: -24px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.5);
  z-index: 3;
  letter-spacing: 0.2px;
}
.property-card-v2 .property-title-row {
  margin-top: 14px;
  margin-bottom: 14px;
}
.property-card-v2 .property-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.25;
}
.property-card-v2 .property-loc-line {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--slate);
  font-weight: 500;
}
.property-card-v2 .property-loc-line svg {
  color: var(--gold-deep);
  flex-shrink: 0;
}
.property-card-v2 .loc-sep {
  color: var(--slate-light);
  margin: 0 3px;
}
.property-card-v2 .property-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.property-card-v2 .property-actions .btn-whatsapp {
  grid-column: 1 / -1;
  justify-content: center;
}

/* --------------------------- 35. PROPERTY GALLERY MODAL --------------- */
/* Custom: enhanced modal using glassmorphism + lightbox */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 42, 71, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.gallery-modal.open { opacity: 1; visibility: visible; }
.gallery-modal-inner {
  background: var(--white);
  border-radius: var(--radius-card);
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  border: 1px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.gallery-modal.open .gallery-modal-inner {
  transform: scale(1);
  opacity: 1;
}

/* --------------------------- 36. RERA BADGE --------------------------- */
.rera-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(15, 42, 71, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--navy);
}
.rera-seal svg {
  width: 14px;
  height: 14px;
  color: var(--gold-deep);
}

/* --------------------------- 37. SCROLL PROGRESS ---------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  z-index: 200;
  width: 0%;
  transition: width 0.1s ease;
}

/* --------------------------- 38. BACK TO TOP -------------------------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-4px);
}
.back-to-top svg { width: 20px; height: 20px; }

/* --------------------------- 39. NOTIFICATION TOAST ------------------- */
.toast-premium {
  position: fixed;
  top: 90px;
  right: 30px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-card);
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow-lg);
  z-index: 250;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  max-width: 360px;
}
.toast-premium.show { transform: translateX(0); }
.toast-premium.toast-success { border-left-color: var(--green); }
.toast-premium.toast-error { border-left-color: var(--red); }
.toast-premium.toast-info { border-left-color: var(--gold); }
.toast-premium svg { width: 22px; height: 22px; flex-shrink: 0; }
.toast-premium.toast-success svg { color: var(--green); }
.toast-premium.toast-error svg { color: var(--red); }
.toast-premium.toast-info svg { color: var(--gold); }

@media (max-width: 768px) {
  .toast-premium {
    top: auto;
    bottom: 100px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
  .back-to-top {
    left: 16px;
    bottom: 95px;
    width: 42px;
    height: 42px;
  }
}

/* --------------------------- 40. TYPEWRITER --------------------------- */
/* Source: Typewriter Effect */
.typewriter-text {
  display: inline-block;
  border-right: 2px solid var(--gold);
  animation: caretBlink 0.8s step-end infinite;
}
@keyframes caretBlink {
  0%, 50% { border-color: var(--gold); }
  51%, 100% { border-color: transparent; }
}
@media (prefers-reduced-motion: reduce) {
  .typewriter-text { border-right: none; animation: none; }
}
