/* =========================
   HERO REFINED
========================= */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Subtle gold accent glow */
.hero-bg-accent {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.15), transparent 70%);
  top: 20%;
  left: 10%;
  filter: blur(80px);
  z-index: 0;
}

/* TEXT */
.hero-left {
  position: relative;
  z-index: 2;
}

.hero h1 span {
  color: #C8A96A;
}

.hero p {
  font-size: 17px;
  max-width: 520px;
}

/* VIDEO */
.hero-video {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 500px;
}

.hero-video video,
.hero-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay */
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left,
      rgba(11, 11, 11, 0.1),
      rgba(11, 11, 11, 0.7));
}

.hero-video video {
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero:hover .hero-video video {
  transform: scale(1.1);
}

/* Video loader */
.video-loader {
  position: absolute;
  inset: 0;
  background: #111;
  z-index: 1;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.6;
  }
}

/* Fade-in animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: revealAnim 1s ease forwards;
}

@keyframes revealAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator span {
  display: block;
  width: 2px;
  height: 30px;
  background: #C8A96A;
  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}





/* =========================
   TRUST BAR
========================= */
.trust-bar {
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  background: #0B0B0B;
}

.trust-text {
  text-align: center;
  margin-bottom: 40px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
}

/* Logos layout */
.trust-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* Individual logo */
.logo {
  flex: 1;
  text-align: center;
  min-width: 120px;
}

/* Logo styling */
.logo img {
  max-height: 40px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

/* Hover effect */
.logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .trust-logos {
    justify-content: center;
  }

  .logo {
    flex: unset;
  }
}


/* =========================
   SCROLL REVEAL SYSTEM
========================= */

/* Default hidden state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* Visible state */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Variations */
.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-zoom {
  transform: scale(0.95);
}

/* Active states for variations */
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active {
  transform: none;
}

/* Stagger effect */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* =========================
   TRUST BAR MARQUEE
========================= */
.trust-bar {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  background: #0B0B0B;
}

/* Marquee wrapper */
.trust-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 30px;
}

/* Gradient fade edges (premium touch) */
.trust-marquee::before,
.trust-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trust-marquee::before {
  left: 0;
  background: linear-gradient(to right, #0B0B0B, transparent);
}

.trust-marquee::after {
  right: 0;
  background: linear-gradient(to left, #0B0B0B, transparent);
}

/* Track animation */
.trust-track {
  display: flex;
  width: max-content;
  gap: 80px;
  animation: scrollLogos 25s linear infinite;
}

/* Pause on hover */
.trust-marquee:hover .trust-track {
  animation-play-state: paused;
}

/* Logos */
.trust-track .logo img {
  max-height: 40px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.trust-track .logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Animation */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Mobile tweak */
@media (max-width: 768px) {
  .trust-track {
    gap: 40px;
    animation-duration: 18s;
  }
}


/* =========================
   SECTION TRANSITIONS
========================= */

.section {
  position: relative;
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

/* Active state */
.section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Slight overlap effect between sections */
.section+.section {
  margin-top: -60px;
  padding-top: 120px;
}

/* Layering depth */
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02), transparent 70%);
  opacity: 0;
  transition: opacity 1.2s ease;
}

.section.in-view::before {
  opacity: 1;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #C8A96A, transparent);
  opacity: 0.3;
  margin: 60px 0;
}

.section .reveal {
  transition-delay: 0.2s;
}


/* =========================
   PILLARS SECTION
========================= */
.pillars-section {
  position: relative;
}

/* Header */
.pillars-header {
  max-width: 600px;
  margin-bottom: 80px;
}

.pillars-header p {
  font-size: 17px;
}

/* Layout */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* Individual pillar */
.pillar {
  position: relative;
  cursor: pointer;
}

/* Inner card */
.pillar-inner {
  padding: 40px;
  border: 1px solid #1a1a1a;
  background: rgba(255, 255, 255, 0.01);
  transition: all 0.4s ease;
  height: 100%;
}

/* Index number */
.pillar-index {
  font-size: 14px;
  color: #C8A96A;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

/* Title */
.pillar h3 {
  margin-bottom: 15px;
  font-size: 26px;
}

/* Hover effect (cinematic lift) */
.pillar:hover .pillar-inner {
  transform: translateY(-10px);
  border-color: #C8A96A;
  background: rgba(255, 255, 255, 0.03);
}

/* Subtle divider line animation */
.pillar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #C8A96A;
  transition: width 0.5s ease;
}

.pillar:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .pillars {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}



/* =========================
   PILLAR BACKGROUND IMAGES
========================= */

/* Ensure layering */
.pillar-inner {
  position: relative;
  overflow: hidden;
}

/* Background container */
.pillar-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Image styling */
.pillar-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.2s ease;
  filter: grayscale(100%) brightness(0.5);
}

/* Overlay for readability */
.pillar-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.6);
}

/* Content above image */
.pillar-content {
  position: relative;
  z-index: 2;
}

/* Hover: reveal image */
.pillar:hover .pillar-bg {
  opacity: 1;
}

/* Hover: cinematic zoom */
.pillar:hover .pillar-bg img {
  transform: scale(1.05);
}

/* Hover: enhance content contrast */
.pillar:hover .pillar-inner {
  border-color: #C8A96A;
}

/* Optional subtle text lift */
.pillar:hover .pillar-content {
  transform: translateY(-5px);
  transition: transform 0.4s ease;
}


/* =========================
   HIGHLIGHTS SECTION
========================= */
.highlights-header {
  max-width: 600px;
  margin-bottom: 80px;
}

/* Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

/* Card */
.highlight-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  background: #0B0B0B;
  transition: all 0.5s ease;
}

/* Image */
.highlight-image {
  height: 400px;
  overflow: hidden;
}

.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.2s ease;
  filter: brightness(0.75);
}

/* Content */
.highlight-content {
  padding: 30px;
}

.highlight-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.highlight-content p {
  max-width: 500px;
}

/* Hover cinematic effect */
.highlight-card:hover {
  border-color: #C8A96A;
}

.highlight-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.9);
}

/* Subtle gradient overlay */
.highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(11, 11, 11, 0.8),
      rgba(11, 11, 11, 0.2));
  pointer-events: none;
}

/* Responsive */
@media (min-width: 992px) {
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .highlight-card:first-child {
    grid-column: span 2;
  }
}


/* =========================
   WHY SECTION
========================= */

.why-section {
  position: relative;
}

/* Header */
.why-header {
  margin-bottom: 80px;
}

/* Grid layout */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 800px;
}

/* Individual item */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  cursor: default;
}

/* Gold line indicator */
.why-line {
  width: 2px;
  height: 0;
  background: #C8A96A;
  transition: height 0.6s ease;
}

/* Text */
.why-item p {
  font-size: 20px;
  line-height: 1.6;
  color: #ddd;
  transition: color 0.4s ease;
}

/* On reveal: animate line */
.why-item.active .why-line {
  height: 100%;
}

/* Hover interaction */
.why-item:hover p {
  color: #FFFFFF;
}

/* Subtle divider between items */
.why-item::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1a1a1a;
}

/* Remove last divider */
.why-item:last-child::after {
  display: none;
}


/* =========================
   TESTIMONIALS
========================= */

.testimonials-section {
  text-align: center;
}

/* Header */
.testimonials-header {
  margin-bottom: 80px;
}

/* Stage */
.testimonial-stage {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Each testimonial */
.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

/* Active */
.testimonial.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* Quote */
.quote {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #fff;
}

/* Author */
.author strong {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
}

.author span {
  font-size: 13px;
  color: #aaa;
}

/* Subtle divider */
.testimonial-stage::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #C8A96A;
  margin: 40px auto 0;
  opacity: 0.5;
}

/* =========================
   FINAL CTA
========================= */

.final-cta {
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Background glow */
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(200, 169, 106, 0.12), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

/* Content */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #ccc;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Subtle hover lift */
.cta-buttons .btn {
  transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
  transform: translateY(-3px);
}

/* Optional divider above CTA */
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, #C8A96A, transparent);
  opacity: 0.3;
}

.hero {
  /* height: 50vh; */
  background: linear-gradient(rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.9)),
    url('../../img/profile/wef_conversation.jpg') right/cover no-repeat !important;
}