/* Luxury Hero Section with Video Background */
.luxury-hero-section {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-foreground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-foreground iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Overlay for better text readability */
.luxury-hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0 / 42%));
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--spacing-md);
  color: var(--color-bg);
}

.hero-content-wrapper h1 {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-tight);
  margin-top: 200px;
  margin-bottom: var(--spacing-xl);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--color-bg-light);
}

.hero-content-wrapper .nikki-btn {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.hero-content-wrapper .nikki-btn:hover {
  background-color: #a81520;
  border-color: #a81520;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content-wrapper h1 {
    margin-top: 40px;
    font-size: 32px;
  }
  
  .luxury-hero-section {
    height: 50vh;
    min-height: 400px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 120px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(0, 123, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .title {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 500;
  color: var(--color-headings);
  letter-spacing: -1px;
}

.hero .title .highlight {
  color: var(--color-primary);
  position: relative;
}

.hero .title .highlight::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(207, 27, 36, 0.15);
  z-index: -1;
}

@media (max-width: 991px) {
  .hero .title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .hero .title {
    font-size: 2.5rem;
  }
}

/* Image wrapper */
.image-wrapper {
  border-radius: 20px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.top-left {
  top: -20px;
  left: -20px;
  animation-delay: 0.5s;
}

.bottom-right {
  bottom: -20px;
  right: -20px;
  animation-delay: 1.5s;
}

.experience-badge {
  bottom: 30px;
  left: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.client-counter {
  top: 30px;
  right: -30px;
  background-color: var(--color-bg);
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 140px;
}

.client-counter .counter-number span,
.experience-badge .years {
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 700;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}


/*.carousel-control-next-icon, .carousel-control-prev-icon {*/
/*    background-color: rgba(80, 80, 80, .6);*/

/*}*/

/* Why Choose Us — feature icon colour (A15 — was inline style) */
.why-choose-us .icon i {
    color: var(--color-primary, #cf1b24);
}


