/* ============================================== */
/*     HOUSE OF VISIONS - LUXURY WEBSITE STYLES   */
/* ============================================== */

/* Skip Link for Accessibility */
.hov-skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--hov-color-accent);
  color: var(--hov-color-background);
  padding: 8px 16px;
  z-index: var(--hov-z-tooltip);
  text-decoration: none;
  font-weight: 600;
  transition: top 0.3s;
}

.hov-skip-link:focus {
  top: 0;
}

:root {
  /* Luxury color palette */
  --hov-color-text: #faf8f6;
  --hov-color-text-muted: rgba(250, 248, 246, 0.8);
  --hov-color-background: #2a2622;
  --hov-color-background-soft: #3d3833;
  --hov-color-background-deep: var(--hov-color-background-deep);
  --hov-color-background-light: #faf8f6;
  --hov-color-text-dark: #2a2622;
  --hov-color-accent: #c9a961;
  --hov-color-accent-readable: #d4b872;
  --hov-color-accent-light: #e4d4a8;
  --hov-color-accent-dark: #b8934a;
  --hov-color-accent-glow: rgba(201, 169, 97, 0.2);
  --hov-color-error: #e74c3c;
  --hov-color-success: #2ecc71;

  /* Spacing scale */
  --hov-space-1: 0.25rem;
  --hov-space-2: 0.5rem;
  --hov-space-3: 0.75rem;
  --hov-space-4: 1rem;
  --hov-space-5: 1.5rem;
  --hov-space-6: 2rem;
  --hov-space-7: 3rem;
  --hov-space-8: 4rem;
  --hov-space-9: 6rem;

  /* Border radius */
  --hov-radius-sm: 4px;
  --hov-radius-md: 8px;
  --hov-radius-lg: 16px;
  --hov-radius-full: 50%;

  /* Z-index scale */
  --hov-z-dropdown: 100;
  --hov-z-sticky: 200;
  --hov-z-modal-backdrop: 900;
  --hov-z-modal: 1000;
  --hov-z-tooltip: 1100;

  /* Typography */
  --hov-font-title: 'Playfair Display', Georgia, serif;
  --hov-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --hov-transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --hov-transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --hov-transition-luxury: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------------------------- */
/*         GLOBAL STYLES              */
/* ---------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--hov-font-body);
  color: var(--hov-color-text);
  background: var(--hov-color-background);
  line-height: 1.6;
  overflow: hidden;
  height: 100%;
  position: relative;
}

/* High-end Custom Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--hov-color-accent-dark) transparent;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--hov-color-accent-dark) 0%,
    var(--hov-color-accent) 50%,
    var(--hov-color-accent-dark) 100%
  );
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    var(--hov-color-accent) 0%,
    var(--hov-color-accent-light) 50%,
    var(--hov-color-accent) 100%
  );
  background-clip: padding-box;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

/* ---------------------------------- */
/*         HEADER SECTION             */
/* ---------------------------------- */
.hov-luxury-header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #2a2622 0%,
    #3d3833 25%,
    #2a2622 50%,
    #3d3833 75%,
    #2a2622 100%
  );
}

/* Animated gradient overlay */
.hov-header-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
  animation: hovGradientShift 20s ease-in-out infinite;
  opacity: 0.6;
  pointer-events: none;
}

@keyframes hovGradientShift {
  0%, 100% { transform: rotate(0deg) scale(1); }
  33% { transform: rotate(120deg) scale(1.1); }
  66% { transform: rotate(240deg) scale(1.05); }
}

/* Floating particles */
.hov-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hov-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--hov-color-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--hov-color-accent-glow);
  animation: hovFloat 15s infinite;
  opacity: 0;
}

.hov-particles span:nth-child(1) {
  top: 10%; left: 20%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.hov-particles span:nth-child(2) {
  top: 70%; left: 80%;
  animation-delay: 2s;
  animation-duration: 15s;
}

.hov-particles span:nth-child(3) {
  top: 40%; left: 60%;
  animation-delay: 4s;
  animation-duration: 18s;
}

.hov-particles span:nth-child(4) {
  top: 80%; left: 30%;
  animation-delay: 6s;
  animation-duration: 14s;
}

.hov-particles span:nth-child(5) {
  top: 20%; left: 90%;
  animation-delay: 8s;
  animation-duration: 16s;
}

@keyframes hovFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

/* Header content */
.hov-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hov-subtitle-top {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--hov-color-accent);
  margin-bottom: 1rem;
  opacity: 0;
  animation: hovFadeInDown 1s ease-out forwards;
}

/* Headline typography */
.hov-headline {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.4;
  margin-bottom: 0.8rem;
  opacity: 0;
  animation: hovFadeInUp 1.2s 0.3s ease-out forwards;
}

.hov-headline .hov-word {
  display: inline-block;
  margin: 0 0.2em;
  transition: all var(--hov-transition-base);
  position: relative;
}

.hov-word.hov-primary {
  color: var(--hov-color-text);
}

.hov-word.hov-light {
  color: var(--hov-color-text-muted);
  font-weight: 300;
  font-size: 0.85em;
}

.hov-word.hov-light-italic {
  color: var(--hov-color-text-muted);
  font-family: var(--hov-font-title);
  font-style: italic;
  font-weight: 400;
  font-size: 0.85em;
  letter-spacing: 0.02em;
}

.hov-word.hov-accent {
  color: var(--hov-color-accent);
  text-shadow: 0 0 30px var(--hov-color-accent-glow);
}

.hov-word.hov-large {
  font-size: 1.3em;
  display: block;
  margin: 0.15em 0;
  letter-spacing: 0.05em;
}

.hov-word.hov-semibold { font-weight: 600; }
.hov-word.hov-bold { font-weight: 700; }
.hov-word.hov-extrabold {
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hov-headline .hov-word:hover {
  transform: translateY(-3px);
  color: var(--hov-color-accent-light);
}

/* Luxury divider */
.hov-luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.8rem auto 0 auto;
  opacity: 0;
  animation: hovFadeIn 1.5s 0.8s ease-out forwards;
  width: 100%;
  max-width: 300px;
}

.hov-divider-line {
  display: block;
  width: 100px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--hov-color-accent-dark) 50%,
    var(--hov-color-accent) 100%
  );
}

.hov-divider-line:last-child {
  background: linear-gradient(
    90deg,
    var(--hov-color-accent) 0%,
    var(--hov-color-accent-dark) 50%,
    transparent 100%
  );
}

.hov-divider-diamond {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--hov-color-accent);
  transform: rotate(45deg);
  box-shadow: 0 0 20px var(--hov-color-accent-glow);
}

/* CTA buttons */
.hov-video-cta-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.2rem 0 0 0;
  opacity: 0;
  animation: hovFadeIn 2s 1.2s ease-out forwards;
}

.hov-video-cta-container {
  display: inline-flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1400px;
  position: relative;
  z-index: var(--hov-z-dropdown);
}

.hov-video-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  background: transparent;
  color: var(--hov-color-accent);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--hov-color-accent);
  cursor: pointer;
  overflow: hidden;
  transition: all var(--hov-transition-luxury);
  white-space: nowrap;
  text-decoration: none;
}

a.hov-video-cta-btn {
  pointer-events: auto;
  position: relative;
  z-index: var(--hov-z-dropdown);
}

.hov-video-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--hov-color-accent);
  transition: left var(--hov-transition-luxury);
  z-index: -1;
}

.hov-video-cta-btn:hover {
  color: var(--hov-color-background);
  transform: scale(1.05);
  box-shadow: 0 10px 40px var(--hov-color-accent-glow);
}

.hov-video-cta-btn:hover::before {
  left: 0;
}

.hov-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: all var(--hov-transition-base);
  flex-shrink: 0;
}

.hov-btn-text {
  display: inline-block;
}

.hov-video-cta-btn:hover .hov-btn-icon {
  transform: scale(1.1);
  border-color: transparent;
}

/* Bottom divider */
.hov-bottom-divider {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: var(--hov-z-dropdown);
  opacity: 0;
  animation: hovFadeInUp 2s 1.5s ease-out forwards;
  margin: -30px 0;
}

.hov-divider-glow {
  display: none;
}

@keyframes hovPulseGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hov-divider-pattern {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 800px;
  padding: 0 2rem;
}

.hov-pattern-line {
  flex: 1;
  height: 1px;
  position: relative;
  overflow: hidden;
}

.hov-pattern-line::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--hov-color-accent-dark) 20%,
    var(--hov-color-accent) 50%,
    var(--hov-color-accent-dark) 80%,
    transparent 100%
  );
}

.hov-pattern-diamond {
  width: 6px;
  height: 6px;
  background: var(--hov-color-accent);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--hov-color-accent-glow);
  animation: hovDiamondSparkle 3s ease-in-out infinite;
}

@keyframes hovDiamondSparkle {
  0%, 100% {
    transform: rotate(45deg) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: rotate(45deg) scale(1.2);
    opacity: 1;
  }
}

.hov-pattern-center {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hov-center-line {
  width: 40px;
  height: 1px;
  background: var(--hov-color-accent);
}

.hov-center-ornament {
  font-size: 1.2rem;
  color: var(--hov-color-accent);
  text-shadow: 0 0 20px var(--hov-color-accent-glow);
  animation: hovOrnamentGlow 3s ease-in-out infinite;
}

@keyframes hovOrnamentGlow {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 1;
  }
}

/* ---------------------------------- */
/*       PORTFOLIO SECTION            */
/* ---------------------------------- */
.hov-portfolio-section {
  background: linear-gradient(
    135deg,
    var(--hov-color-background) 0%,
    var(--hov-color-background-soft) 25%,
    var(--hov-color-background) 50%,
    var(--hov-color-background-soft) 75%,
    var(--hov-color-background) 100%
  );
  padding: 4rem 0;
  position: relative;
  overflow-y: auto;
}

/* Portfolio section in fullpage context - allow full display */
.hov-fullpage-section.hov-portfolio-section {
  height: auto;
  min-height: 100vh;
  overflow: visible;
  justify-content: flex-start;
  padding: 4rem 0;
}

.hov-portfolio-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hov-section-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.hov-fullpage-section .hov-section-header {
  margin-bottom: 3rem;
}

.hov-section-subtitle {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hov-color-accent);
  margin-bottom: 1rem;
}

.hov-section-title {
  font-family: var(--hov-font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--hov-color-text);
  margin-bottom: 1.5rem;
}

.hov-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hov-slider-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 0.5rem;
  padding: 2rem 1rem;
  width: 100%;
}

/* Scrollbar styles removed for grid layout */

/* Portfolio link reset */
.hov-portfolio-link,
.hov-portfolio-link:link,
.hov-portfolio-link:visited,
.hov-portfolio-link:hover,
.hov-portfolio-link:active {
  text-decoration: none;
  color: inherit;
  display: block;
}

.hov-portfolio-item {
  position: relative;
  cursor: pointer;
  transition: transform var(--hov-transition-base);
  aspect-ratio: 3/3.4;
}

.hov-portfolio-item:hover {
  transform: translateY(-10px);
}

.hov-item-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--hov-color-background-soft);
  border: 1px solid rgba(201, 169, 97, 0.1);
  display: flex;
  flex-direction: column;
}

.hov-image-container {
  position: relative;
  width: 100%;
  height: calc(100% - 80px); /* Subtract fixed footer height */
  overflow: hidden;
  background: var(--hov-color-background-soft);
}

.hov-portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--hov-transition-luxury);
}

.hov-portfolio-item:hover .hov-portfolio-img {
  transform: scale(1.05);
}

.hov-watch-more-label {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--hov-color-accent);
  color: var(--hov-color-background);
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 3;
}

.hov-item-info-static {
  position: relative;
  width: 100%;
  height: 80px; /* Fixed height instead of percentage */
  min-height: 80px; /* Ensure minimum height */
  padding: 0.75rem 1rem;
  background: var(--hov-color-background-soft);
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hov-item-number {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--hov-color-accent);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.hov-item-title {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--hov-color-text);
  line-height: 1.2;
}

.hov-item-client {
  font-size: 0.65rem;
  color: var(--hov-color-accent);
  margin-top: 0.15rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* Navigation buttons hidden for grid layout */
.hov-slider-nav {
  display: none;
}

/* ---------------------------------- */
/*        FOOTER SECTION              */
/* ---------------------------------- */
.hov-footer-section {
  background: linear-gradient(
    135deg,
    var(--hov-color-background-deep) 0%,
    var(--hov-color-background) 50%,
    var(--hov-color-background-deep) 100%
  );
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.hov-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.hov-footer-title {
  font-family: var(--hov-font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--hov-color-text);
  margin-bottom: 1rem;
}

.hov-footer-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--hov-color-text-muted);
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
}

/* Contact Layout Container */
.hov-contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}

/* Contact Details Card */
.hov-contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hov-contact-info-card {
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.05) 0%,
    rgba(61, 56, 51, 0.3) 50%,
    rgba(201, 169, 97, 0.05) 100%
  );
  border: 1px solid rgba(201, 169, 97, 0.3);
  padding: 2.5rem;
  border-radius: 4px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  width: 100%;
  height: fit-content;
}

.hov-contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--hov-color-accent) 50%,
    transparent 100%
  );
  animation: hovGlowPulse 3s ease-in-out infinite;
}

.hov-contact-name {
  font-family: var(--hov-font-title);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--hov-color-text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.hov-contact-title {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hov-color-accent);
  margin-bottom: 1.5rem;
}

.hov-contact-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--hov-color-accent) 50%,
    transparent 100%
  );
  margin: 1.5rem auto;
}

.hov-contact-location {
  font-size: 1rem;
  font-weight: 300;
  color: var(--hov-color-text-muted);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.hov-contact-email {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--hov-color-accent);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all var(--hov-transition-base);
  position: relative;
}

.hov-contact-email::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--hov-color-accent);
  transition: width var(--hov-transition-base);
}

.hov-contact-email:hover {
  color: var(--hov-color-accent-light);
  transform: translateY(-1px);
}

.hov-contact-email:hover::after {
  width: 100%;
}

/* Contact Form */
.hov-contact-form {
  background: rgba(61, 56, 51, 0.3);
  border: 1px solid rgba(201, 169, 97, 0.2);
  padding: 2rem 2.5rem;
  border-radius: 4px;
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

.hov-form-group {
  text-align: left;
}

/* Make message field and buttons span full width */
.hov-form-group:has(.hov-form-textarea) {
  grid-column: 1 / -1;
}

.hov-form-submit,
.hov-form-divider,
.hov-form-calendly-btn {
  grid-column: 1 / -1;
}

/* Center the submit button */
.hov-contact-form .hov-form-submit {
  grid-column: 1 / -1;
  justify-self: center;
}

.hov-form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hov-color-accent);
  margin-bottom: 0.5rem;
}

.hov-form-input,
.hov-form-textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(26, 24, 22, 0.5);
  border: 1px solid rgba(201, 169, 97, 0.2);
  color: var(--hov-color-text);
  font-family: var(--hov-font-body);
  font-size: 1rem;
  transition: all var(--hov-transition-base);
}

.hov-form-input:focus,
.hov-form-textarea:focus {
  outline: none;
  border-color: var(--hov-color-accent);
  background: rgba(26, 24, 22, 0.8);
  box-shadow: 0 0 20px var(--hov-color-accent-glow);
}

.hov-form-textarea {
  min-height: 80px;
  resize: vertical;
}

.hov-form-submit {
  width: auto;
  padding: 1.2rem 2rem;
  background: transparent;
  color: var(--hov-color-accent);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--hov-color-accent);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--hov-transition-luxury);
  display: block;
  margin: 0 auto;
}

.hov-form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--hov-color-accent);
  transition: left var(--hov-transition-luxury);
  z-index: -1;
}

.hov-form-submit:hover {
  color: var(--hov-color-background);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--hov-color-accent-glow);
}

.hov-form-submit:hover::before {
  left: 0;
}

.hov-footer-info {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.hov-footer-logo {
  font-family: var(--hov-font-title);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--hov-color-accent);
  margin-bottom: 1rem;
}

.hov-footer-copyright {
  font-size: 0.85rem;
  color: var(--hov-color-text-muted);
  letter-spacing: 0.1em;
}

/* ---------------------------------- */
/*         VIDEO LOADING STATES       */
/* ---------------------------------- */
.hov-video-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hov-color-background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hov-video-loading.loading-complete {
  opacity: 0;
  pointer-events: none;
}

.hov-loading-spinner {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.hov-loading-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 50%;
  animation: hovLoadingRotate 2s linear infinite;
}

.hov-loading-ring:nth-child(1) {
  border-top-color: var(--hov-color-accent);
  animation-duration: 2s;
}

.hov-loading-ring:nth-child(2) {
  border-right-color: var(--hov-color-accent-light);
  animation-duration: 2.5s;
  animation-direction: reverse;
}

.hov-loading-ring:nth-child(3) {
  border-bottom-color: var(--hov-color-accent-dark);
  animation-duration: 3s;
}

@keyframes hovLoadingRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hov-loading-text {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hov-color-accent);
  opacity: 0.8;
  animation: hovLoadingPulse 2s ease-in-out infinite;
}

@keyframes hovLoadingPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hov-loading-progress {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: rgba(201, 169, 97, 0.2);
  border-radius: 1px;
  overflow: hidden;
}

.hov-loading-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--hov-color-accent-dark) 0%,
    var(--hov-color-accent) 50%,
    var(--hov-color-accent-light) 100%
  );
  border-radius: 1px;
  transition: width 0.3s ease;
  position: relative;
}

.hov-loading-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: hovLoadingShimmer 2s ease-in-out infinite;
}

@keyframes hovLoadingShimmer {
  0% { transform: translateX(-20px); }
  100% { transform: translateX(200px); }
}

/* Compact loading state for smaller video containers */
.hov-video-loading.compact {
  background: rgba(42, 38, 34, 0.95);
}

.hov-video-loading.compact .hov-loading-spinner {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.hov-video-loading.compact .hov-loading-text {
  font-size: 0.65rem;
}

.hov-video-loading.compact .hov-loading-progress {
  width: 120px;
  bottom: 1rem;
}

/* Overlay loading state for iframe containers */
.hov-iframe-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(42, 38, 34, 0.95) 0%,
    rgba(61, 56, 51, 0.9) 50%,
    rgba(42, 38, 34, 0.95) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: var(--hov-z-dropdown);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(5px);
}

.hov-iframe-loading-overlay.loading-complete {
  opacity: 0;
  pointer-events: none;
}

/* Image loading state for portfolio thumbnails */
.hov-image-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(42, 38, 34, 0.95) 0%,
    rgba(61, 56, 51, 0.9) 50%,
    rgba(42, 38, 34, 0.95) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hov-image-loading.loading-complete {
  opacity: 0;
  pointer-events: none;
}

.hov-image-loading .hov-loading-spinner {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.hov-image-loading .hov-loading-text {
  font-size: 0.65rem;
}

/* ---------------------------------- */
/*         VIDEO OVERLAYS             */
/* ---------------------------------- */
.hov-video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 24, 22, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--hov-z-modal-backdrop);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hov-video-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hov-video-popup-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: auto;
  max-height: 90vh;
  background: linear-gradient(
    135deg,
    var(--hov-color-background-soft) 0%,
    rgba(61, 56, 51, 0.5) 50%,
    var(--hov-color-background-soft) 100%
  );
  border: 1px solid rgba(201, 169, 97, 0.2);
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 200px var(--hov-color-accent-glow);
  opacity: 0;
  transform: scale(0.8) translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hov-video-overlay.active .hov-video-popup-container {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.2s;
}

.hov-video-popup-content {
  display: flex;
  gap: 4rem;
  padding: 3rem;
  align-items: center;
  overflow-y: auto;
}

.hov-video-section {
  flex: 0 0 60%;
  position: relative;
}

.hov-video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hov-video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.hov-video-description {
  flex: 1;
  color: var(--hov-color-text);
}

.hov-video-subtitle {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hov-color-accent);
  margin-bottom: 0.5rem;
}

.hov-video-title {
  font-family: var(--hov-font-title);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--hov-color-text);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hov-video-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--hov-color-accent) 0%,
    var(--hov-color-accent-dark) 100%
  );
  margin-bottom: 2rem;
}

.hov-video-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--hov-color-text-muted);
}

.hov-video-text p {
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.hov-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(42, 38, 34, 0.9);
  border: 2px solid var(--hov-color-accent);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hov-color-accent);
  cursor: pointer;
  transition: all var(--hov-transition-luxury);
  z-index: 30;
}

.hov-play-button:hover {
  background: var(--hov-color-accent);
  color: var(--hov-color-background);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 50px var(--hov-color-accent);
}

.hov-play-button.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.5);
  pointer-events: none;
}

.hov-video-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--hov-color-background);
  border: 1px solid var(--hov-color-accent-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hov-color-accent);
  cursor: pointer;
  transition: all var(--hov-transition-base);
  z-index: 10;
  opacity: 0;
  transform: scale(0);
}

.hov-video-overlay.active .hov-video-close {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.5s;
}

.hov-video-close:hover {
  background: var(--hov-color-accent);
  color: var(--hov-color-background);
  transform: rotate(90deg);
}

/* About section specific styles */
.hov-about-popup-content {
  align-items: center !important;
  gap: 2.5rem !important;
  padding: 2.5rem !important;
  overflow-y: visible !important;
}

.hov-about-image-section {
  flex: 0 0 45% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hov-about-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #000;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hov-about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hov-about-description {
  flex: 1 !important;
  overflow: visible !important;
}

.hov-about-scroll-wrapper {
  max-height: calc(90vh - 6rem);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 1rem;
}

/* Custom scrollbar for about content */
.hov-about-scroll-wrapper::-webkit-scrollbar {
  width: 6px;
}

.hov-about-scroll-wrapper::-webkit-scrollbar-track {
  background: rgba(201, 169, 97, 0.1);
  border-radius: 3px;
}

.hov-about-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--hov-color-accent-dark);
  border-radius: 3px;
}

.hov-about-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--hov-color-accent);
}

.hov-about-title {
  font-size: 1.8rem !important;
  margin-bottom: 0.5rem !important;
}

.hov-about-byline {
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  color: var(--hov-color-accent);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hov-about-text {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

.hov-about-text p {
  margin-bottom: 0.9rem !important;
}

.hov-expertise-intro {
  color: var(--hov-color-text);
  font-weight: 400;
  margin-top: 1rem !important;
  margin-bottom: 0.6rem !important;
}

.hov-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 1rem 0 !important;
}

.hov-expertise-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  line-height: 1.5;
  font-size: 0.9rem;
}

.hov-expertise-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 1px;
  background: var(--hov-color-accent);
}

.hov-expertise-list strong {
  color: var(--hov-color-text);
  font-weight: 500;
}

.hov-about-quote {
  margin-top: 1rem !important;
  padding-top: 1rem !important;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  color: var(--hov-color-accent-light);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.05em;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
}

/* Lightbox */
#hovLightboxOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 24, 22, 0.95);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  z-index: var(--hov-z-modal);
  animation: hovFadeIn 0.3s ease;
}

#hovLightboxOverlay.hov-active {
  display: flex;
}

.hov-lightbox-content {
  position: relative;
  display: flex;
  gap: 4rem;
  width: 90%;
  max-width: 1400px;
  max-height: 85vh;
  animation: hovSlideUp 0.5s ease;
}

.hov-lightbox-media {
  flex: 1 1 65%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  overflow: hidden;
}

.hov-lightbox-media img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  border: 1px solid rgba(201, 169, 97, 0.2);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 100px var(--hov-color-accent-glow);
  border-radius: 4px;
}

.hov-lightbox-media iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 75vh;
  border: 1px solid rgba(201, 169, 97, 0.2);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 100px var(--hov-color-accent-glow);
  border-radius: 4px;
}

.hov-lightbox-info {
  flex: 1 1 35%;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    var(--hov-color-background-soft) 0%,
    rgba(61, 56, 51, 0.5) 50%,
    var(--hov-color-background-soft) 100%
  );
  border: 1px solid rgba(201, 169, 97, 0.2);
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 4px;
}

.hov-project-client {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hov-color-accent);
  margin-bottom: 0.5rem;
}

.hov-project-title {
  font-family: var(--hov-font-title);
  font-size: 2rem;
  font-weight: 400;
  color: var(--hov-color-text);
  margin-bottom: 1.5rem;
}

.hov-project-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--hov-color-accent-dark) 0%,
    var(--hov-color-accent) 50%,
    var(--hov-color-accent-dark) 100%
  );
  margin: 1.5rem 0;
}

.hov-project-description {
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  color: var(--hov-color-text-muted);
  letter-spacing: 0.03em;
}

.hov-project-description p {
  margin-bottom: 1rem;
}

.hov-project-description p:last-child {
  margin-bottom: 0;
}

/* Portfolio CTA Button */
.hov-lightbox-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  text-align: center;
}

.hov-lightbox-full-layout .hov-lightbox-cta {
  margin-top: 2.5rem;
}

.hov-lightbox-full-layout {
  width: 90%;
  max-width: 1400px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    var(--hov-color-background-soft) 0%,
    rgba(61, 56, 51, 0.8) 50%,
    var(--hov-color-background-soft) 100%
  );
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 4px;
}

.hov-video-showcase-header {
  margin-bottom: 3rem;
  text-align: center;
}

.hov-header-video-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2rem;
  border: 1px solid rgba(201, 169, 97, 0.2);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 100px var(--hov-color-accent-glow);
  border-radius: 4px;
  overflow: hidden;
}

.hov-header-video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.hov-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.hov-video-grid-five {
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.hov-video-grid-three {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hov-video-grid-four {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hov-video-grid-two {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.hov-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.hov-image-grid-two {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.hov-image-grid-item {
  position: relative;
  border: 1px solid rgba(201, 169, 97, 0.15);
  overflow: hidden;
  transition: transform var(--hov-transition-base);
  border-radius: 4px;
}

.hov-image-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.4),
    0 0 50px var(--hov-color-accent-glow);
}

.hov-image-grid-item img {
  width: 100%;
  height: auto;
  display: block;
}

.hov-image-grid-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(
    to top,
    rgba(42, 38, 34, 0.95) 0%,
    rgba(42, 38, 34, 0.7) 50%,
    transparent 100%
  );
  color: var(--hov-color-text);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

.hov-header-image-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 2rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.15);
  aspect-ratio: 16/9;
  position: relative;
}

.hov-header-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hov-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201, 169, 97, 0.2);
  border: 1px solid var(--hov-color-accent);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--hov-transition-base);
  z-index: var(--hov-z-modal);
  backdrop-filter: blur(10px);
}

.hov-lightbox-nav:hover {
  background: rgba(201, 169, 97, 0.4);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px var(--hov-color-accent-glow);
}

.hov-lightbox-nav-prev {
  left: 40px;
}

.hov-lightbox-nav-next {
  right: 40px;
}

.hov-lightbox-nav svg {
  fill: var(--hov-color-accent);
  width: 20px;
  height: 20px;
}

/* Hide navigation arrows on mobile */
@media (max-width: 768px) {
  .hov-lightbox-nav {
    display: none;
  }
  
  .hov-lightbox-full-layout {
    width: 95%;
    margin: 0 auto;
    padding: 1.5rem;
    text-align: center;
  }
  
  .hov-video-showcase-header {
    text-align: center;
  }
  
  .hov-header-video-container,
  .hov-header-image-container {
    margin: 0 auto;
  }
}

.hov-video-grid-five .hov-video-grid-item video {
  width: 100%;
  height: auto;
}

.hov-video-grid-five .hov-video-vertical {
  align-self: start;
}

.hov-video-grid-item {
  position: relative;
  border: 1px solid rgba(201, 169, 97, 0.15);
  overflow: hidden;
  transition: transform var(--hov-transition-base);
  border-radius: 4px;
}

.hov-video-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.4),
    0 0 50px var(--hov-color-accent-glow);
}

.hov-video-grid-item video {
  width: 100%;
  height: auto;
  display: block;
}

.hov-video-grid-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(
    to top,
    rgba(42, 38, 34, 0.95) 0%,
    rgba(42, 38, 34, 0.7) 50%,
    transparent 100%
  );
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--hov-color-text);
  text-align: center;
  line-height: 1;
}

/* Image Slider for Portfolio Modals */
.hov-image-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
}

.hov-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hov-slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hov-slider-image.active {
  opacity: 1;
}

/* Slider slides for mixed media (images + videos) */
.hov-slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hov-slider-slide.active {
  opacity: 1;
}

.hov-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hov-slider-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.hov-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(42, 38, 34, 0.8);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.hov-slider-btn:hover {
  background: var(--hov-color-accent);
  border-color: var(--hov-color-accent);
}

.hov-slider-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--hov-color-text);
  transition: fill 0.3s ease;
}

.hov-slider-btn:hover svg {
  fill: var(--hov-color-background);
}

.hov-slider-prev {
  left: 12px;
}

.hov-slider-next {
  right: 12px;
}

.hov-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hov-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(250, 248, 246, 0.4);
  border: 1px solid rgba(201, 169, 97, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hov-slider-dot:hover {
  background: rgba(250, 248, 246, 0.7);
}

.hov-slider-dot.active {
  background: var(--hov-color-accent);
  border-color: var(--hov-color-accent);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .hov-slider-btn {
    width: 36px;
    height: 36px;
  }
  
  .hov-slider-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .hov-slider-prev {
    left: 8px;
  }
  
  .hov-slider-next {
    right: 8px;
  }
}

.hov-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--hov-color-background);
  border: 1px solid var(--hov-color-accent-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hov-color-accent);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  padding-top: 1px;
  cursor: pointer;
  z-index: var(--hov-z-modal);
  transition: all var(--hov-transition-base);
}

.hov-close-btn:hover {
  background: var(--hov-color-accent);
  color: var(--hov-color-background);
  transform: rotate(90deg);
}

/* Animations */
@keyframes hovFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hovFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hovFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hovSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------------------------------- */
/*         RESPONSIVE DESIGN          */
/* ---------------------------------- */

/* Tablet screens */
@media (max-width: 1024px) {
  .hov-contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 2rem;
  }
  
  .hov-contact-details {
    order: 1;
  }
  
  .hov-contact-form {
    order: 2;
  }
}

@media (max-width: 968px) {
  .hov-lightbox-content {
    flex-direction: column;
    gap: 2rem;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .hov-lightbox-media {
    flex: 1 1 auto;
  }

  .hov-lightbox-info {
    flex: 1 1 auto;
    padding: 2rem;
    max-height: none;
  }

  .hov-video-popup-content {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 2rem;
  }

  .hov-video-section {
    flex: 1 1 auto;
    width: 100%;
  }

  /* About popup responsive */
  .hov-about-popup-content {
    flex-direction: column !important;
    gap: 1.5rem !important;
    padding: 2rem !important;
  }

  .hov-about-image-section {
    flex: 1 1 auto !important;
    width: 100%;
    position: relative;
  }

  .hov-about-image-container {
    aspect-ratio: 16 / 9;
  }

  .hov-about-description {
    width: 100%;
  }

  .hov-about-scroll-wrapper {
    max-height: 50vh;
    padding-right: 0.5rem;
  }

  .hov-about-title {
    font-size: 1.5rem !important;
  }

  .hov-about-text {
    font-size: 0.9rem !important;
  }

  .hov-lightbox-full-layout {
    padding: 2rem;
    width: 95%;
    margin: 0 auto;
  }

  .hov-video-grid {
    grid-template-columns: 1fr;
  }

  .hov-project-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hov-luxury-header {
    min-height: auto;
    padding: 60px 0;
  }

  .hov-headline {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  .hov-slider-wrapper {
    overflow-x: hidden;
    overflow-y: visible;
  }

  .hov-slider-container {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    padding: 1.5rem;
  }

  .hov-item-frame {
    width: 100%;
    height: 100%;
  }

  .hov-image-container {
    height: calc(100% - 70px); /* Fixed height for mobile */
  }
  
  .hov-item-info-static {
    height: 70px; /* Fixed height for mobile */
    min-height: 70px;
    padding: 0.5rem 0.75rem;
  }

  .hov-slider-nav {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .hov-slider-nav.hov-prev { left: 1rem; }
  .hov-slider-nav.hov-next { right: 1rem; }

  .hov-video-title {
    font-size: 2rem;
  }

  .hov-video-text {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .hov-video-cta-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .hov-video-cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.7rem;
    width: 100%;
    max-width: 300px;
  }

  .hov-floating-cta-sticker {
    top: 12%;
    right: 1.5%;
    width: 100px;
    height: 100px;
    padding: 1.2rem 1.5rem;
  }

  .hov-sticker-icon {
    width: 28px;
    height: 28px;
  }

  .hov-sticker-icon svg {
    width: 20px;
    height: 20px;
  }

  .hov-sticker-text {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .hov-luxury-header {
    padding: 40px 0;
  }

  .hov-header-content {
    padding: 0 1.5rem;
  }

  .hov-headline {
    font-size: 1.1rem;
  }

  .hov-slider-container {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 2rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .hov-portfolio-item {
    aspect-ratio: 3/3.4;
  }

  .hov-item-frame {
    width: 100%;
    height: 100%;
  }

  .hov-image-container {
    height: calc(100% - 80px); /* Fixed height for small mobile */
  }
  
  .hov-item-info-static {
    height: 80px; /* Fixed height for small mobile */
    min-height: 80px;
    padding: 0.75rem 1rem;
  }

  .hov-item-number {
    font-size: 0.6rem;
    margin-bottom: 0.2rem;
  }

  .hov-item-title {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .hov-item-client {
    font-size: 0.65rem;
    margin-top: 0.15rem;
  }

  /* Contact layout responsive */
  .hov-contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .hov-contact-form {
    padding: 2rem 1.5rem;
    order: 2;
    grid-template-columns: 1fr;
  }

  .hov-contact-form .hov-form-submit,
  .hov-contact-form .hov-form-divider,
  .hov-contact-form .hov-form-calendly-btn {
    grid-column: 1 / -1;
  }

  .hov-contact-details {
    order: 1;
  }
  
  /* Contact details responsive */
  .hov-contact-info-card {
    padding: 2rem 1.5rem;
  }
  
  .hov-contact-name {
    font-size: 1.5rem;
  }
  
  .hov-contact-title {
    font-size: 0.8rem;
  }
  
  .hov-contact-email {
    font-size: 1rem;
    word-break: break-word;
  }
  
  /* Loading state responsive adjustments */
  .hov-video-loading .hov-loading-spinner {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .hov-video-loading .hov-loading-text {
    font-size: 0.65rem;
  }
  
  .hov-video-loading .hov-loading-progress {
    width: 150px;
    bottom: 1.5rem;
  }
  
  .hov-video-loading.compact .hov-loading-spinner {
    width: 35px;
    height: 35px;
  }
  
  .hov-video-loading.compact .hov-loading-text {
    font-size: 0.6rem;
  }
  
  .hov-video-loading.compact .hov-loading-progress {
    width: 100px;
  }
  
  /* Image loading state responsive adjustments */
  .hov-image-loading .hov-loading-spinner {
    width: 35px;
    height: 35px;
    margin-bottom: 0.8rem;
  }
  
  .hov-image-loading .hov-loading-text {
    font-size: 0.6rem;
  }
}
/* ============================================== */
/*          CALENDLY MODAL & PRIMARY BUTTON       */
/* ============================================== */

/* Floating Sticker CTA */
.hov-floating-cta-sticker {
  position: absolute;
  top: 18%;
  right: 2.5%;
  background: var(--hov-color-accent);
  color: var(--hov-color-background);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.8rem 2.2rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 140px;
  height: 140px;
  box-shadow:
    0 20px 60px rgba(201, 169, 97, 0.5),
    0 0 100px rgba(201, 169, 97, 0.3),
    inset 0 -5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 50;
  opacity: 0;
  overflow: hidden;
  animation: hovFadeInSticker 1.5s 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             hovStickerFloat 4s 3.5s ease-in-out infinite,
             hovStickerPulse 3s 3.5s ease-in-out infinite;
  transform: rotate(-8deg);
}

.hov-floating-cta-sticker::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(45deg,
    var(--hov-color-accent-light),
    var(--hov-color-accent),
    var(--hov-color-accent-dark),
    var(--hov-color-accent));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hov-floating-cta-sticker::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.8) 55%,
    rgba(255, 255, 255, 0.6) 60%,
    transparent 70%,
    transparent 100%
  );
  transform: translateX(-100%) rotate(45deg);
  animation: hovStickerShine 2.5s 3.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hov-floating-cta-sticker:hover::before {
  opacity: 1;
  animation: hovStickerRotate 4s linear infinite;
}

.hov-floating-cta-sticker:hover {
  transform: rotate(0deg) scale(1.1);
  box-shadow:
    0 30px 80px rgba(201, 169, 97, 0.7),
    0 0 150px rgba(201, 169, 97, 0.5),
    inset 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.hov-sticker-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.3rem;
}

.hov-sticker-icon svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hov-sticker-text {
  font-size: 0.8rem;
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes hovFadeInSticker {
  0% {
    opacity: 0;
    transform: rotate(-8deg) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: rotate(-8deg) scale(1);
  }
}

@keyframes hovStickerShine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(200%) rotate(45deg);
  }
}

@keyframes hovStickerFloat {
  0%, 100% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(-8deg) translateY(-10px);
  }
}

@keyframes hovStickerPulse {
  0%, 100% {
    box-shadow:
      0 20px 60px rgba(201, 169, 97, 0.5),
      0 0 100px rgba(201, 169, 97, 0.3),
      inset 0 -5px 15px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow:
      0 25px 70px rgba(201, 169, 97, 0.6),
      0 0 130px rgba(201, 169, 97, 0.4),
      inset 0 -5px 15px rgba(0, 0, 0, 0.2);
  }
}

@keyframes hovStickerRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes hovPulseGlowCTA {
  0%, 100% {
    box-shadow:
      0 15px 40px rgba(201, 169, 97, 0.4),
      0 0 80px rgba(201, 169, 97, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 20px 60px rgba(201, 169, 97, 0.6),
      0 0 120px rgba(201, 169, 97, 0.4);
    transform: scale(1.02);
  }
}

/* Calendly Modal Overlay */
.hov-calendly-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  z-index: var(--hov-z-modal-backdrop);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hov-calendly-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.hov-calendly-modal {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 85vh;
  max-height: 700px;
  background: #fff;
  border-radius: var(--hov-radius-md);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: scale(0.9) translateY(30px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hov-calendly-modal-overlay.active .hov-calendly-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Close Button */
.hov-calendly-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 97, 0.2);
  border: 2px solid var(--hov-color-accent);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.hov-calendly-close:hover {
  background: var(--hov-color-accent);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 0 30px rgba(201, 169, 97, 0.5);
}

.hov-calendly-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--hov-color-accent);
  transition: stroke 0.3s ease;
}

.hov-calendly-close:hover svg {
  stroke: var(--hov-color-background);
}

/* Calendly iframe wrapper */
.hov-calendly-iframe-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.hov-calendly-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Calendly Loading Screen */
.hov-calendly-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #2a2622 0%,
    #3d3833 50%,
    #2a2622 100%
  );
  z-index: 10;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.hov-calendly-loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.hov-calendly-loading-spinner {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
}

/* Outer rotating circle */
.hov-calendly-spinner-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(201, 169, 97, 0.2);
  border-top-color: var(--hov-color-accent);
  border-radius: 50%;
  animation: hovCalendlySpin 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

/* Inner pulsing circle */
.hov-calendly-spinner-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 50%;
  animation: hovCalendlyPulse 2s ease-in-out infinite;
}

/* Center calendar icon */
.hov-calendly-spinner-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--hov-color-accent);
  animation: hovCalendlyIconFloat 3s ease-in-out infinite;
}

.hov-calendly-loading-text {
  font-family: var(--hov-font-body);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hov-color-accent);
  opacity: 0;
  animation: hovCalendlyFadeInText 0.8s ease-out 0.3s forwards;
}

.hov-calendly-loading-subtext {
  font-family: var(--hov-font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(250, 248, 246, 0.5);
  margin-top: 0.5rem;
  opacity: 0;
  animation: hovCalendlyFadeInText 0.8s ease-out 0.6s forwards;
}

@keyframes hovCalendlySpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes hovCalendlyPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

@keyframes hovCalendlyIconFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-5px);
  }
}

@keyframes hovCalendlyFadeInText {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hov-calendly-modal {
    width: 95%;
    height: 90vh;
    max-height: none;
    border-radius: 12px;
  }

  .hov-calendly-close {
    top: -45px;
    right: 0;
    width: 40px;
    height: 40px;
  }

  .hov-calendly-close svg {
    width: 20px;
    height: 20px;
  }

  .hov-calendly-loading-spinner {
    width: 100px;
    height: 100px;
  }

  .hov-calendly-spinner-inner {
    width: 65px;
    height: 65px;
  }

  .hov-calendly-loading-text {
    font-size: 0.85rem;
  }
}

/* ============================================== */
/*         FULL-PAGE SCROLL SYSTEM               */
/* ============================================== */

/* Smooth scroll for entire page */
html {
  scroll-behavior: smooth;
  overflow: hidden;
}

.hov-fullpage-wrapper {
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Prevent extra scrolling beyond last section */
.hov-fullpage-wrapper::after {
  content: '';
  display: block;
  height: 0;
  clear: both;
}

.hov-fullpage-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto; /* Allow sections to expand naturally */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible; /* Show all content */
  padding: 4rem 0 2rem 0;
}

/* Last section has no bottom padding to prevent extra scrolling */
.hov-fullpage-section:last-of-type {
  padding-bottom: 0;
}

/* Hero section - keep original styling */
#hero.hov-fullpage-section {
  padding: 0;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  justify-content: center;
}

/* Contact section - allow natural height for form */
#contact.hov-fullpage-section {
  min-height: 100vh;
  padding: 6rem 0 0;
}

/* Section Numbers */
.hov-section-number {
  position: absolute;
  top: 3rem;
  left: 3rem;
  font-family: var(--hov-font-title);
  font-size: 5rem;
  font-weight: 300;
  color: var(--hov-color-accent);
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
  letter-spacing: 0.05em;
}

/* ============================================== */
/*         ALWAYS-VISIBLE SIDE NAVIGATION        */
/* ============================================== */

/* Adjust main container to make room for sidebar */
.hov-fullpage-wrapper {
  padding-left: 280px;
}

/* Side Menu Panel - Always Visible */
.hov-side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(26, 24, 22, 0.98) 0%,
    rgba(42, 38, 34, 0.98) 100%
  );
  border-right: 1px solid var(--hov-color-accent);
  z-index: var(--hov-z-sticky);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  box-shadow: 2px 0 30px rgba(0, 0, 0, 0.5);
}

/* Menu Header */
.hov-menu-header {
  padding: 2.5rem 1.5rem 2rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  text-align: center;
}

.hov-menu-logo {
  font-family: var(--hov-font-title);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--hov-color-accent);
  margin: 0;
}

/* Language Switch */
.hov-language-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 1.5rem;
  background: rgba(61, 56, 51, 0.4);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 4px;
  padding: 0.3rem;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hov-lang-btn {
  position: relative;
  background: transparent;
  border: none;
  color: var(--hov-color-text-muted);
  font-family: var(--hov-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.hov-lang-btn.active {
  color: var(--hov-color-background);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hov-lang-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--hov-color-accent);
  border-radius: 2px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  box-shadow:
    0 4px 12px rgba(201, 169, 97, 0.4),
    0 0 20px var(--hov-color-accent-glow);
}

.hov-lang-btn.active::before {
  opacity: 1;
  transform: scale(1);
}

.hov-lang-btn:hover:not(.active) {
  color: var(--hov-color-accent-light);
}

.hov-lang-divider {
  width: 1px;
  height: 18px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201, 169, 97, 0.4) 50%,
    transparent 100%
  );
}

/* Menu List */
.hov-menu-list {
  flex: 1;
  list-style: none;
  padding: 3rem 0;
  margin: 0;
  overflow-y: auto;
}

.hov-menu-item {
  opacity: 1;
}

.hov-menu-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  text-decoration: none;
  color: var(--hov-color-text);
  transition: all var(--hov-transition-base);
  position: relative;
  overflow: hidden;
}

.hov-menu-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--hov-color-accent);
  transform: translateX(-100%);
  transition: transform var(--hov-transition-base);
}

.hov-menu-link:hover::before,
.hov-menu-link.active::before {
  transform: translateX(0);
}

.hov-menu-link:hover {
  background: rgba(201, 169, 97, 0.1);
  padding-left: 2rem;
}

.hov-menu-link.active {
  background: rgba(201, 169, 97, 0.15);
  color: var(--hov-color-accent);
}

.hov-menu-number {
  font-family: var(--hov-font-title);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--hov-color-accent);
  min-width: 35px;
  opacity: 0.6;
  transition: opacity var(--hov-transition-base);
}

.hov-menu-link:hover .hov-menu-number,
.hov-menu-link.active .hov-menu-number {
  opacity: 1;
}

.hov-menu-text {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Menu Footer */
.hov-menu-footer {
  padding: 2rem;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  text-align: center;
}

.hov-menu-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--hov-color-text-muted);
  margin: 0;
  text-transform: uppercase;
}

/* ---------------------------------- */
/*       DOT NAVIGATION               */
/* ---------------------------------- */
.hov-dot-navigation {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--hov-z-sticky);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.hov-dot {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hov-color-text);
  opacity: 0.3;
  transition: all var(--hov-transition-base);
  cursor: pointer;
  text-decoration: none;
}

.hov-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all var(--hov-transition-base);
}

.hov-dot:hover {
  opacity: 0.7;
  transform: scale(1.2);
}

.hov-dot:hover::before {
  border-color: var(--hov-color-accent);
}

.hov-dot.active {
  background: var(--hov-color-accent);
  opacity: 1;
  transform: scale(1.3);
  box-shadow: 0 0 20px var(--hov-color-accent-glow);
}

.hov-dot.active::before {
  border-color: var(--hov-color-accent);
  width: 20px;
  height: 20px;
}

.hov-dot-label {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 0.5rem 1rem;
  background: rgba(42, 38, 34, 0.95);
  border: 1px solid var(--hov-color-accent);
  border-radius: 4px;
  color: var(--hov-color-text);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  transition: all var(--hov-transition-base);
  pointer-events: none;
}

.hov-dot:hover .hov-dot-label {
  opacity: 1;
  visibility: visible;
  right: 35px;
}

/* ---------------------------------- */
/*       SCROLL INDICATOR             */
/* ---------------------------------- */
.hov-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hov-color-accent);
  opacity: 0;
  animation: hovFadeIn 1s 2s ease-out forwards, hovBounce 2s 3s ease-in-out infinite;
  cursor: pointer;
  z-index: 10;
}

.hov-scroll-indicator svg {
  filter: drop-shadow(0 0 10px var(--hov-color-accent-glow));
}

@keyframes hovBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Hide scroll indicator on last section */
#contact .hov-scroll-indicator {
  display: none;
}

/* Lower scroll indicator on FAQ section to avoid overlap */
#faq .hov-scroll-indicator {
  bottom: 1.5rem;
}

/* ---------------------------------- */
/*         SERVICES SECTION           */
/* ---------------------------------- */
.hov-services-section {
  background: linear-gradient(
    135deg,
    var(--hov-color-background-deep) 0%,
    var(--hov-color-background) 25%,
    var(--hov-color-background-soft) 50%,
    var(--hov-color-background) 75%,
    var(--hov-color-background-deep) 100%
  );
  padding: 4rem 2rem;
}

.hov-services-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hov-services-section .hov-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.hov-section-description {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--hov-color-text-muted);
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}

.hov-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  opacity: 0;
  animation: hovFadeInUp 1s 0.5s ease-out forwards;
}

.hov-service-card {
  position: relative;
  padding: 3rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(61, 56, 51, 0.3) 0%,
    rgba(42, 38, 34, 0.5) 100%
  );
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  transition: all var(--hov-transition-luxury);
  cursor: pointer;
  overflow: hidden;
}

.hov-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--hov-color-accent) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity var(--hov-transition-base);
}

.hov-service-card:hover {
  transform: translateY(-10px);
  border-color: var(--hov-color-accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px var(--hov-color-accent-glow);
}

.hov-service-card:hover::before {
  opacity: 1;
}

.hov-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  border: 1px solid var(--hov-color-accent);
  border-radius: 50%;
  color: var(--hov-color-accent);
  transition: all var(--hov-transition-luxury);
}

.hov-service-card:hover .hov-service-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 40px var(--hov-color-accent-glow);
  background: rgba(201, 169, 97, 0.1);
}

.hov-service-title {
  font-family: var(--hov-font-title);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--hov-color-text);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.hov-service-description {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--hov-color-text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* Stagger animation for service cards */
.hov-service-card:nth-child(1) { animation: hovFadeInUp 0.8s 0.6s ease-out forwards; opacity: 0; }
.hov-service-card:nth-child(2) { animation: hovFadeInUp 0.8s 0.75s ease-out forwards; opacity: 0; }
.hov-service-card:nth-child(3) { animation: hovFadeInUp 0.8s 0.9s ease-out forwards; opacity: 0; }
.hov-service-card:nth-child(4) { animation: hovFadeInUp 0.8s 1.05s ease-out forwards; opacity: 0; }
.hov-service-card:nth-child(5) { animation: hovFadeInUp 0.8s 1.2s ease-out forwards; opacity: 0; }
.hov-service-card:nth-child(6) { animation: hovFadeInUp 0.8s 1.35s ease-out forwards; opacity: 0; }
.hov-service-card:nth-child(7) { animation: hovFadeInUp 0.8s 1.5s ease-out forwards; opacity: 0; }
.hov-service-card:nth-child(8) { animation: hovFadeInUp 0.8s 1.65s ease-out forwards; opacity: 0; }

/* ---------------------------------- */
/*       INDUSTRIES SECTION           */
/* ---------------------------------- */
.hov-industries-section {
  background: linear-gradient(
    135deg,
    var(--hov-color-background) 0%,
    var(--hov-color-background-soft) 50%,
    var(--hov-color-background) 100%
  );
  padding: 4rem 2rem;
}

.hov-industries-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hov-industries-section .hov-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Industries Grid - 4 Columns */
.hov-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  opacity: 0;
  animation: hovFadeInUp 1s 0.5s ease-out forwards;
}

/* Industry Card */
.hov-industry-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(61, 56, 51, 0.3) 0%,
    rgba(42, 38, 34, 0.5) 100%
  );
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  transition: all var(--hov-transition-luxury);
  overflow: hidden;
  text-align: center;
}

.hov-industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--hov-color-accent) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity var(--hov-transition-base);
}

.hov-industry-card:hover {
  transform: translateY(-10px);
  border-color: var(--hov-color-accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px var(--hov-color-accent-glow);
}

.hov-industry-card:hover::before {
  opacity: 1;
}

.hov-industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--hov-color-accent);
  border-radius: 50%;
  color: var(--hov-color-accent);
  transition: all var(--hov-transition-luxury);
}

.hov-industry-card:hover .hov-industry-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 40px var(--hov-color-accent-glow);
  background: rgba(201, 169, 97, 0.1);
}

.hov-industry-title {
  font-family: var(--hov-font-title);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--hov-color-text);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hov-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: left;
}

.hov-benefit-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--hov-color-text-muted);
  letter-spacing: 0.02em;
  margin: 0;
}

/* Stagger animation for industry cards */
.hov-industry-card:nth-child(1) { animation: hovFadeInUp 0.8s 0.6s ease-out forwards; opacity: 0; }
.hov-industry-card:nth-child(2) { animation: hovFadeInUp 0.8s 0.75s ease-out forwards; opacity: 0; }
.hov-industry-card:nth-child(3) { animation: hovFadeInUp 0.8s 0.9s ease-out forwards; opacity: 0; }
.hov-industry-card:nth-child(4) { animation: hovFadeInUp 0.8s 1.05s ease-out forwards; opacity: 0; }

/* ---------------------------------- */
/*     CONTACT SECTION ADJUSTMENTS    */
/* ---------------------------------- */
.hov-contact-section {
  background: linear-gradient(
    135deg,
    var(--hov-color-background-deep) 0%,
    var(--hov-color-background) 50%,
    var(--hov-color-background-deep) 100%
  );
  overflow: hidden;
}

.hov-contact-section .hov-footer-section {
  background: transparent;
  padding: 0;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

/* Last section should not allow scrolling beyond */
#contact.hov-fullpage-section .hov-footer-info {
  margin-top: 4rem;
  margin-bottom: 0;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

/* ---------------------------------- */
/*       RESPONSIVE ADJUSTMENTS       */
/* ---------------------------------- */

@media (max-width: 1200px) {
  .hov-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .hov-industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 968px) {
  .hov-section-number {
    font-size: 3.5rem;
    top: 2rem;
    left: 2rem;
  }

  .hov-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hov-industries-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hov-dot-navigation {
    right: 1rem;
    gap: 2rem;
  }

  .hov-dot {
    width: 10px;
    height: 10px;
  }

  .hov-dot-label {
    display: none;
  }
}

@media (max-width: 968px) {
  /* Hide sidebar on tablet/mobile */
  .hov-side-menu {
    transform: translateX(-100%);
  }

  .hov-fullpage-wrapper {
    padding-left: 0;
  }

  /* Show dot navigation on mobile */
  .hov-dot-navigation {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  html {
    overflow-x: hidden;
    overflow-y: auto;
  }

  body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
  }

  .hov-fullpage-wrapper {
    height: auto;
    overflow-x: hidden;
    overflow-y: visible;
    scroll-snap-type: none;
    padding-left: 0;
  }

  .hov-fullpage-section {
    min-height: 100vh;
    height: auto;
    scroll-snap-align: none;
    padding: 60px 0;
  }

  .hov-section-number {
    font-size: 2.5rem;
    top: 1.5rem;
    left: 1.5rem;
    opacity: 0.08;
  }

  .hov-services-section,
  .hov-industries-section,
  .hov-contact-section {
    padding: 60px 1.5rem;
  }

  .hov-service-card {
    padding: 2rem 1.5rem;
  }

  .hov-service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
  }

  .hov-service-title {
    font-size: 1.3rem;
  }

  .hov-benefit-item {
    gap: 1rem;
  }

  .hov-benefit-icon {
    width: 35px;
    height: 35px;
  }

  .hov-benefit-title {
    font-size: 1.1rem;
  }

  .hov-scroll-indicator {
    bottom: 2rem;
  }

  .hov-dot-navigation {
    gap: 2.25rem;
  }

  /* Prevent horizontal overflow on mobile */
  img, video, iframe, svg {
    max-width: 100%;
  }

  .hov-fullpage-section,
  .hov-services-section,
  .hov-industries-section,
  .hov-portfolio-section,
  .hov-contact-section {
    overflow-x: hidden;
  }

  /* Ensure all containers stay within viewport */
  .hov-services-container,
  .hov-industries-container,
  .hov-portfolio-grid {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Remove horizontal translations on portfolio items for mobile */
  .hov-portfolio-item:nth-child(5) .hov-portfolio-img {
    transform: scale(2.2815) !important;
  }
  .hov-portfolio-item:nth-child(5):hover .hov-portfolio-img {
    transform: scale(2.3815) !important;
  }
  .hov-portfolio-item:nth-child(15) .hov-portfolio-img {
    transform: scale(1.716) !important;
  }
  .hov-portfolio-item:nth-child(15):hover .hov-portfolio-img {
    transform: scale(1.816) !important;
  }
  .hov-portfolio-item:nth-child(18) .hov-portfolio-img {
    transform: scale(1.725) !important;
  }
  .hov-portfolio-item:nth-child(18):hover .hov-portfolio-img {
    transform: scale(1.825) !important;
  }
}

@media (max-width: 480px) {
  .hov-section-number {
    font-size: 2rem;
    top: 1rem;
    left: 1rem;
  }

  .hov-services-container,
  .hov-industries-container {
    max-width: 100%;
  }

  .hov-section-header {
    padding: 0 0.5rem;
  }

  .hov-section-description {
    font-size: 0.95rem;
  }

  .hov-service-card {
    padding: 1.5rem 1rem;
  }

  .hov-services-grid {
    gap: 1rem;
  }

  .hov-dot-navigation {
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .hov-video-cta-btn.hov-cta-primary {
    font-size: 0.8rem;
    padding: 1rem 2rem;
  }
}

/* ============================================== */
/*          SERVICE MODALS                        */
/* ============================================== */

/* Service Card "Learn More" Link */
.hov-service-learn-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--hov-color-accent);
  text-transform: uppercase;
  opacity: 0;
  transition: all var(--hov-transition-base);
}

.hov-service-card {
  cursor: pointer;
  transition: all var(--hov-transition-luxury);
}

.hov-service-card:hover .hov-service-learn-more {
  opacity: 1;
  transform: translateX(5px);
}

/* Service Modal Overlay */
.hov-service-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: var(--hov-z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hov-service-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Service Modal Container */
.hov-service-modal {
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(55, 50, 46, 0.97) 0%,
    rgba(38, 35, 31, 0.99) 100%
  );
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 8px;
  max-width: 1100px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem 3rem 2.5rem;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(201, 169, 97, 0.08);
  transform: scale(0.95) translateY(10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hov-service-modal-overlay.active .hov-service-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Close Button */
.hov-service-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--hov-color-background);
  border: 1px solid var(--hov-color-accent-dark);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--hov-color-accent);
  transition: all var(--hov-transition-base);
  z-index: 10;
}

.hov-service-close:hover {
  background: var(--hov-color-accent);
  color: var(--hov-color-background);
  transform: rotate(90deg);
}

/* Modal Content */
.hov-service-modal-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.hov-service-modal-content > .hov-luxury-divider {
  justify-content: flex-start;
  max-width: 200px;
  margin-bottom: 1.5rem;
}

.hov-service-modal-title {
  font-family: var(--hov-font-title);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--hov-color-text);
  margin-bottom: 1rem;
  text-align: left;
}

.hov-service-modal-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--hov-color-text-muted);
  margin: 0 0 1.25rem;
  text-align: left;
}

.hov-service-modal-description:first-child {
  margin-top: 0;
}

.hov-service-modal-callout {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--hov-color-accent-light);
  text-align: left;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(201, 169, 97, 0.06);
  border-left: 3px solid var(--hov-color-accent);
  border-radius: 0 4px 4px 0;
}

.hov-service-modal-subtitle {
  font-family: var(--hov-font-title);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--hov-color-accent);
  margin: 1.75rem 0 0.75rem;
  text-align: left;
}

.hov-service-modal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.hov-service-modal-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--hov-color-text-muted);
}

.hov-service-modal-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0.35em;
  color: var(--hov-color-accent);
  font-size: 0.45rem;
}

/* Modal CTA Button */
.hov-service-modal-cta {
  display: inline-block;
  width: auto;
  margin: 2rem 0 0;
  padding: 1rem 2.5rem;
  background: var(--hov-color-accent);
  color: var(--hov-color-background);
  border: 2px solid var(--hov-color-accent);
  border-radius: var(--hov-radius-sm);
  text-align: center;
  font-family: var(--hov-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--hov-transition-luxury);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.hov-service-modal-cta:hover {
  background: transparent;
  color: var(--hov-color-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

/* Service Modal Social Proof Badge */
.hov-service-modal-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(201, 169, 97, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: 6px;
}

.hov-service-modal-proof-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 97, 0.15);
  border-radius: 50%;
  color: var(--hov-color-accent);
  font-size: 0.9rem;
}

.hov-service-modal-proof-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--hov-color-text-muted);
}

.hov-service-modal-proof-text strong {
  color: var(--hov-color-accent);
  font-weight: 600;
}

/* Service Modal Process Steps */
.hov-service-modal-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.hov-service-modal-process-step {
  text-align: center;
  padding: 1rem 0.75rem;
  background: rgba(201, 169, 97, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.1);
  border-radius: 6px;
  transition: all var(--hov-transition-base);
}

.hov-service-modal-process-step:hover {
  border-color: rgba(201, 169, 97, 0.3);
  background: rgba(201, 169, 97, 0.08);
}

.hov-service-modal-process-number {
  font-family: var(--hov-font-title);
  font-size: 1.5rem;
  color: var(--hov-color-accent);
  opacity: 0.5;
  margin-bottom: 0.35rem;
}

.hov-service-modal-process-label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--hov-color-text);
}

/* Responsive: Process Steps */
@media (max-width: 768px) {
  .hov-service-modal-process {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hov-service-modal-proof {
    flex-direction: column;
    text-align: center;
  }
}

/* Two-column layout for modal content */
.hov-service-modal-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.hov-service-modal-column {
  min-width: 0;
}

/* Image container for service modals */
.hov-service-modal-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  margin: 1.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Two-column layout with video */
.hov-service-modal-two-column {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
  align-items: start;
}

.hov-service-modal-video-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: sticky;
  top: 1rem;
}

.hov-service-modal-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background: #1a1816;
}

.hov-service-modal-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hov-service-modal-video img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: calc(50% - 105px) center;
}

.hov-service-modal-text {
  min-width: 0;
  padding-top: 0.25rem;
}

/* ── Variant Wipe Animation (3-image cycle) ── */
.hov-variant-wipe-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1080 / 1920;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.hov-variant-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hov-variant-layer--base {
  z-index: 1;
}

.hov-variant-layer--red {
  z-index: 2;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  animation: hov-wipe-red 9s linear infinite;
}

.hov-variant-layer--green {
  z-index: 3;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  animation: hov-wipe-green 9s linear infinite;
}

.hov-variant-wipe-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  background: rgba(201, 169, 97, 0.45);
  animation: hov-wipe-line 9s linear infinite;
}

.hov-variant-wipe-label {
  position: absolute;
  z-index: 5;
  font-family: var(--hov-font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hov-color-text);
  background: rgba(42, 38, 34, 0.75);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
  border: 1px solid rgba(201, 169, 97, 0.25);
  transition: opacity 0.3s;
}

.hov-variant-wipe-label--a {
  bottom: 0.75rem;
  left: 0.75rem;
  animation: hov-label-a 9s linear infinite;
}

.hov-variant-wipe-label--b {
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  animation: hov-label-b 9s linear infinite;
}

.hov-variant-wipe-label--c {
  bottom: 0.75rem;
  right: 0.75rem;
  animation: hov-label-c 9s linear infinite;
}

/* ── Red layer: sweeps in 0→25%, visible through 57%, snaps hidden ── */
@keyframes hov-wipe-red {
  0%        { clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%); }
  12.5%     { clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 40% 100%); }
  25%       { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
  57%       { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
  58%       { clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%); }
  100%      { clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%); }
}

/* ── Green layer: sweeps in 30→55%, then reverse-sweeps out 60→85% ── */
@keyframes hov-wipe-green {
  0%, 30%   { clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%); }
  42.5%     { clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 40% 100%); }
  55%       { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
  60%       { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
  72.5%     { clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 40% 100%); }
  85%       { clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%); }
  100%      { clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%); }
}

/* ── Line: tracks red sweep, green sweep, then green reverse-sweep ── */
@keyframes hov-wipe-line {
  /* Phase 1: red sweep right→left */
  0%        { clip-path: polygon(99.9% 0%, 100.1% 0%, 100.1% 100%, 99.9% 100%); opacity: 0; }
  2%        { opacity: 1; }
  12.5%     { clip-path: polygon(59.9% 0%, 60.1% 0%, 40.1% 100%, 39.9% 100%); opacity: 1; }
  23%       { opacity: 1; }
  25%       { clip-path: polygon(-0.1% 0%, 0.1% 0%, 0.1% 100%, -0.1% 100%); opacity: 0; }
  /* Phase 2: green sweep right→left */
  29%       { opacity: 0; }
  30%       { clip-path: polygon(99.9% 0%, 100.1% 0%, 100.1% 100%, 99.9% 100%); opacity: 0; }
  32%       { opacity: 1; }
  42.5%     { clip-path: polygon(59.9% 0%, 60.1% 0%, 40.1% 100%, 39.9% 100%); opacity: 1; }
  53%       { opacity: 1; }
  55%       { clip-path: polygon(-0.1% 0%, 0.1% 0%, 0.1% 100%, -0.1% 100%); opacity: 0; }
  /* Phase 3: green reverse-sweep left→right */
  59%       { opacity: 0; }
  60%       { clip-path: polygon(-0.1% 0%, 0.1% 0%, 0.1% 100%, -0.1% 100%); opacity: 0; }
  62%       { opacity: 1; }
  72.5%     { clip-path: polygon(59.9% 0%, 60.1% 0%, 40.1% 100%, 39.9% 100%); opacity: 1; }
  83%       { opacity: 1; }
  85%       { clip-path: polygon(99.9% 0%, 100.1% 0%, 100.1% 100%, 99.9% 100%); opacity: 0; }
  100%      { clip-path: polygon(99.9% 0%, 100.1% 0%, 100.1% 100%, 99.9% 100%); opacity: 0; }
}

/* ── Labels: highlight the active pair per phase ── */
@keyframes hov-label-a {
  0%, 25%   { opacity: 1; }
  30%, 55%  { opacity: 0.25; }
  60%, 100% { opacity: 1; }
}

@keyframes hov-label-b {
  0%, 55%   { opacity: 1; }
  60%, 85%  { opacity: 0.25; }
  93%, 100% { opacity: 1; }
}

@keyframes hov-label-c {
  0%, 25%   { opacity: 0.25; }
  30%, 85%  { opacity: 1; }
  90%, 100% { opacity: 0.25; }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hov-service-modal {
    padding: 2rem 2rem 2rem;
  }

  .hov-service-modal-columns {
    gap: 2rem;
  }

  .hov-service-modal-two-column {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hov-service-modal {
    padding: 2rem 1.5rem;
    max-height: 90vh;
    width: 95%;
  }

  .hov-service-modal-title {
    font-size: 1.5rem;
  }

  .hov-service-modal-description {
    font-size: 0.95rem;
  }

  .hov-service-modal-subtitle {
    font-size: 1.1rem;
  }

  .hov-service-close {
    width: 38px;
    height: 38px;
    top: 1rem;
    right: 1rem;
  }

  .hov-service-modal-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hov-service-modal-two-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hov-service-modal-video-stack {
    max-width: 100%;
    position: static;
  }

  .hov-service-modal-video {
    aspect-ratio: 3 / 4;
    max-height: 300px;
  }

  .hov-service-modal-video img {
    object-position: center center !important;
  }

  #serviceModal-retail-visualization .hov-service-modal-video img {
    object-position: calc(50% - 40px) center !important;
  }

  .hov-service-modal-content > .hov-luxury-divider {
    max-width: 150px;
  }

  .hov-service-modal-cta {
    display: block;
    text-align: center;
  }

  .hov-variant-wipe-container {
    max-height: 350px;
  }

  .hov-variant-wipe-label {
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
  }
}

/* Response Guarantee Styling */
.hov-response-guarantee {
  background: rgba(201, 169, 97, 0.1);
  border-left: 3px solid var(--hov-color-accent);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--hov-color-text);
  display: flex;
  align-items: center;
}

.hov-response-guarantee svg {
  flex-shrink: 0;
  color: var(--hov-color-accent);
}

.hov-response-guarantee span {
  line-height: 1.4;
}

/* Sticky CTA Bar */
.hov-sticky-cta-bar {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 15px !important; /* Leave space for scrollbar */
  background: linear-gradient(135deg, #c9a961 0%, #9b7c3a 100%);
  color: var(--hov-color-background-deep);
  padding: 1rem 2rem;
  z-index: var(--hov-z-sticky) !important;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  pointer-events: auto !important;
  overflow: hidden;
}

.hov-sticky-cta-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.1) 80%,
    transparent 100%
  );
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.hov-sticky-cta-bar.visible {
  transform: translateY(0) !important;
}

.hov-sticky-cta-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.hov-sticky-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hov-color-background-deep);
}

.hov-sticky-cta-button {
  background: var(--hov-color-background-deep);
  color: #c9a961;
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--hov-font-body);
  white-space: nowrap;
}

.hov-sticky-cta-button:hover {
  background: #2a2622;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Sticky CTA */
@media (max-width: 768px) {
  .hov-sticky-cta-bar {
    padding: 0.875rem 1rem;
  }

  .hov-sticky-cta-content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .hov-sticky-cta-text {
    font-size: 1rem;
  }

  .hov-sticky-cta-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }
}

/* Contact Form Button Styling */
.hov-form-divider {
  text-align: center;
  margin: 1rem 0;
  color: var(--hov-color-text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hov-form-calendly-btn {
  width: 100%;
  padding: 1.2rem 2rem;
  background: transparent;
  color: var(--hov-color-accent);
  border: 2px solid var(--hov-color-accent);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--hov-transition-base);
  font-family: var(--hov-font-body);
  letter-spacing: 0.05em;
}

.hov-form-calendly-btn:hover {
  background: var(--hov-color-accent);
  color: var(--hov-color-background);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

/* ============================================== */
/*          CLIENT LOGO BANNER                    */
/* ============================================== */

.hov-client-logo-banner {
  padding: 1rem 0 1rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0;
}

.hov-client-logo-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hov-client-logo-text {
  display: none;
}

/* Infinite Scroll Wrapper */
.hov-logo-scroll-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hov-logo-scroll-track {
  display: flex;
  gap: 8rem;
  animation: hov-scroll-logos 30s linear infinite;
  width: fit-content;
}

/* Pause animation on hover */
.hov-logo-scroll-wrapper:hover .hov-logo-scroll-track {
  animation-play-state: paused;
}

@keyframes hov-scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hov-client-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: all var(--hov-transition-base);
}

.hov-client-logo-item img {
  height: 120px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  filter: brightness(0) invert(1) sepia(0.15) saturate(2) hue-rotate(5deg) opacity(0.7);
  transition: all 0.4s ease;
}

.hov-client-logo-item:hover img {
  filter: brightness(0) invert(1) sepia(0.25) saturate(2.5) hue-rotate(5deg) opacity(1);
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hov-client-logo-banner {
    padding: 0.75rem 0 0.75rem;
  }

  .hov-logo-scroll-track {
    gap: 5rem;
    animation-duration: 25s;
  }

  .hov-client-logo-item {
    padding: 1.5rem;
  }

  .hov-client-logo-item img {
    height: 80px;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .hov-logo-scroll-track {
    gap: 3rem;
    animation-duration: 20s;
  }

  .hov-client-logo-item {
    padding: 1rem;
  }

  .hov-client-logo-item img {
    height: 60px;
    max-width: 150px;
  }
}

/* ---------------------------------- */
/*     PORTFOLIO FILTER TABS          */
/* ---------------------------------- */
.hov-portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hov-filter-tab {
  font-family: var(--hov-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(201, 169, 97, 0.3);
  color: var(--hov-color-text-muted);
  cursor: pointer;
  transition: all var(--hov-transition-base);
  position: relative;
  overflow: hidden;
}

.hov-filter-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--hov-color-accent) 0%, var(--hov-color-accent-dark) 100%);
  opacity: 0;
  transition: opacity var(--hov-transition-base);
  z-index: -1;
}

.hov-filter-tab:hover {
  border-color: var(--hov-color-accent);
  color: var(--hov-color-text);
}

.hov-filter-tab.active {
  border-color: var(--hov-color-accent);
  color: var(--hov-color-background);
  font-weight: 600;
}

.hov-filter-tab.active::before {
  opacity: 1;
}

/* Portfolio item filter animation */
.hov-portfolio-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hov-portfolio-item.hov-filter-hidden,
.hov-portfolio-link.hov-filter-hidden {
  display: none !important;
}

.hov-portfolio-item.hov-filter-visible {
  opacity: 1;
  transform: scale(1);
}

.hov-portfolio-link.hov-filter-visible {
  display: block;
}

/* Responsive filter tabs */
@media (max-width: 768px) {
  .hov-portfolio-filters {
    gap: 0.5rem;
    padding: 0 1rem;
  }
  
  .hov-filter-tab {
    font-size: 0.75rem;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 480px) {
  .hov-filter-tab {
    font-size: 0.7rem;
    padding: 0.5rem 0.75rem;
    letter-spacing: 0.04em;
  }
}

/* ---------------------------------- */
/*          FAQ SECTION               */
/* ---------------------------------- */
.hov-faq-section {
  background: linear-gradient(
    135deg,
    var(--hov-color-background) 0%,
    var(--hov-color-background-soft) 25%,
    var(--hov-color-background) 50%,
    var(--hov-color-background-soft) 75%,
    var(--hov-color-background) 100%
  );
  overflow: hidden;
}

.hov-faq-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hov-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 4rem;
}

.hov-faq-item {
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 4px;
  background: rgba(26, 24, 22, 0.6);
  overflow: hidden;
  transition: border-color var(--hov-transition-base);
}

.hov-faq-item:hover {
  border-color: rgba(201, 169, 97, 0.4);
}

.hov-faq-item.active {
  border-color: var(--hov-color-accent);
}

.hov-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.hov-faq-question span {
  font-family: var(--hov-font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--hov-color-text);
  line-height: 1.5;
}

.hov-faq-icon {
  flex-shrink: 0;
  color: var(--hov-color-accent);
  transition: transform 0.3s ease;
}

.hov-faq-item.active .hov-faq-icon {
  transform: rotate(180deg);
}

.hov-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.hov-faq-item.active .hov-faq-answer {
  max-height: 500px;
}

.hov-faq-answer p {
  padding: 0 1.5rem 1.5rem;
  font-family: var(--hov-font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--hov-color-text-muted);
  line-height: 1.7;
}

.hov-faq-end-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hov-faq-end-cta p {
  font-family: var(--hov-font-body);
  font-size: 1.1rem;
  color: var(--hov-color-text-muted);
  margin-bottom: 1.25rem;
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .hov-faq-container {
    padding: 0 1rem;
  }

  .hov-faq-question {
    padding: 1rem 1.25rem;
  }

  .hov-faq-question span {
    font-size: 0.9rem;
  }

  .hov-faq-answer p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* ============================================== */
/*     SWUP PAGE TRANSITIONS                      */
/* ============================================== */

/* Main transition container */
.transition-fade {
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Leaving animation */
html.is-animating .transition-fade {
  opacity: 0;
}

/* Slide up transition variant */
.transition-slide {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html.is-animating .transition-slide {
  opacity: 0;
  transform: translateY(20px);
}

/* Page-specific content wrapper for multi-page site */
.hov-page-wrapper {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Override overflow for multi-page version */
html.swup-enabled {
  overflow: auto;
  overflow-x: hidden;
}

html.swup-enabled body {
  overflow: auto;
  overflow-x: hidden;
}

/* Ensure sections take full viewport on individual pages */
.hov-page-wrapper .hov-fullpage-section {
  min-height: 100vh;
  height: auto;
  position: relative;
}

/* Loading indicator during transitions */
.swup-progress-bar {
  height: 2px;
  background: var(--hov-color-accent);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--hov-z-tooltip);
  transition: width 0.3s ease;
}

/* ---------------------------------- */
/*         404 PAGE STYLES            */
/* ---------------------------------- */
.hov-404-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hov-color-background);
  text-align: center;
  padding: 2rem;
}

.hov-404-container {
  max-width: 600px;
}

.hov-404-number {
  font-family: var(--hov-font-title);
  font-size: clamp(8rem, 20vw, 12rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--hov-color-accent) 0%, var(--hov-color-accent-light) 50%, var(--hov-color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.hov-404-title {
  font-family: var(--hov-font-title);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--hov-color-text);
  margin-bottom: 1rem;
}

.hov-404-description {
  color: var(--hov-color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hov-404-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hov-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--hov-transition-base);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.hov-btn-primary {
  background: linear-gradient(135deg, var(--hov-color-accent) 0%, var(--hov-color-accent-dark) 100%);
  color: var(--hov-color-background);
}

.hov-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--hov-color-accent-glow);
}

.hov-btn-secondary {
  background: transparent;
  color: var(--hov-color-accent);
  border: 1px solid var(--hov-color-accent);
}

.hov-btn-secondary:hover {
  background: var(--hov-color-accent-glow);
}

/* Form Success State */
.hov-form-success {
  text-align: center;
  padding: 3rem 2rem;
  animation: fadeInUp 0.5s ease-out;
}

.hov-success-icon {
  color: var(--hov-color-accent);
  margin-bottom: 1.5rem;
}

.hov-success-title {
  font-family: var(--hov-font-title);
  font-size: 1.75rem;
  color: var(--hov-color-text);
  margin-bottom: 0.75rem;
}

.hov-success-text {
  color: var(--hov-color-text-muted);
  font-size: 1rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page Transition Loading Indicator */
.hov-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: var(--hov-z-tooltip);
  pointer-events: none;
}

.hov-page-loader::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--hov-color-accent), var(--hov-color-accent-light));
  transition: width 0.3s ease;
}

.hov-page-loader.loading::after {
  width: 70%;
  transition: width 2s cubic-bezier(0.1, 0.05, 0.1, 1);
}

.hov-page-loader.complete::after {
  width: 100%;
  transition: width 0.2s ease;
}

.hov-page-loader.hide {
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

/* Form Success & Error Messages */
.hov-form-success {
  text-align: center;
  padding: 2rem;
  color: var(--hov-color-accent);
  font-family: var(--hov-font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  animation: fadeIn 0.5s ease;
}

.hov-form-error {
  color: var(--hov-color-error);
  font-size: 0.9rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: var(--hov-radius-sm);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================== */
/*   INSIGHTS INDEX PAGE STYLES                   */
/* ============================================== */
.insights-hero {
  background: linear-gradient(
    135deg,
    var(--hov-color-background-deep) 0%,
    var(--hov-color-background) 50%,
    var(--hov-color-background-deep) 100%
  );
  padding: var(--hov-space-9) var(--hov-space-6);
  text-align: center;
}

.insights-hero h1 {
  font-family: var(--hov-font-title);
  font-size: 3rem;
  color: var(--hov-color-text);
  margin-bottom: var(--hov-space-4);
}

.insights-hero p {
  color: var(--hov-color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.insights-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--hov-space-8) var(--hov-space-6);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--hov-space-6);
}

.insight-card {
  background: var(--hov-color-background-soft);
  border: 1px solid rgba(201, 169, 97, 0.2);
  overflow: hidden;
  transition: all var(--hov-transition-base);
}

.insight-card:hover {
  border-color: var(--hov-color-accent);
  transform: translateY(-4px);
}

.insight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.insight-card-content {
  padding: var(--hov-space-5);
}

.insight-card h2 {
  font-size: 1.25rem;
  color: var(--hov-color-text);
  margin: 0 0 0.75rem;
}

.insight-card h2 a {
  color: var(--hov-color-text);
  text-decoration: none;
}

.insight-card h2 a:hover {
  color: var(--hov-color-accent);
}

.insight-card p {
  color: var(--hov-color-text-muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.insight-card-meta {
  font-size: 0.8rem;
  color: var(--hov-color-accent);
}

.insights-cta {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
  text-align: center;
  padding: var(--hov-space-8) var(--hov-space-6);
}

.insights-cta h2 {
  font-family: var(--hov-font-title);
  font-size: 2rem;
  color: var(--hov-color-text);
  margin-bottom: var(--hov-space-4);
}

.insights-cta p {
  color: var(--hov-color-text-muted);
  margin-bottom: var(--hov-space-6);
}

.insights-cta-btn {
  display: inline-block;
  background: var(--hov-color-accent);
  color: var(--hov-color-background);
  padding: var(--hov-space-4) var(--hov-space-6);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--hov-transition-base);
}

.insights-cta-btn:hover {
  background: var(--hov-color-accent-light);
  transform: translateY(-2px);
}

/* ============================================== */
/*   ARTICLE PAGE STYLES (Insights Articles)      */
/* ============================================== */
.article-hero {
  background: linear-gradient(
    135deg,
    var(--hov-color-background-deep) 0%,
    var(--hov-color-background) 100%
  );
  padding: var(--hov-space-9) var(--hov-space-6);
  text-align: center;
}

.article-hero h1 {
  font-family: var(--hov-font-title);
  font-size: 2.5rem;
  color: var(--hov-color-text);
  max-width: 800px;
  margin: 0 auto var(--hov-space-4);
}

.article-meta {
  color: var(--hov-color-text-muted);
  font-size: 0.9rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--hov-space-7) var(--hov-space-6);
}

.article-content h2 {
  font-family: var(--hov-font-title);
  font-size: 1.75rem;
  color: var(--hov-color-accent);
  margin: 2.5rem 0 var(--hov-space-4);
}

.article-content h3 {
  font-size: 1.25rem;
  color: var(--hov-color-text);
  margin: var(--hov-space-6) 0 0.75rem;
}

.article-content p,
.article-content li {
  color: var(--hov-color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--hov-space-4);
}

.article-content ul,
.article-content ol {
  padding-left: var(--hov-space-5);
  margin-bottom: var(--hov-space-5);
}

/* Article tables (comparison, pricing) */
.comparison-table,
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--hov-space-6) 0;
}

.comparison-table th,
.comparison-table td,
.pricing-table th,
.pricing-table td {
  padding: var(--hov-space-4);
  text-align: left;
  border-bottom: 1px solid rgba(250, 248, 246, 0.1);
}

.comparison-table th,
.pricing-table th {
  color: var(--hov-color-accent);
  font-weight: 600;
}

.comparison-table td,
.pricing-table td {
  color: var(--hov-color-text-muted);
}

.comparison-table tr td:first-child {
  font-weight: 500;
  color: var(--hov-color-text);
}

.winner {
  color: var(--hov-color-accent);
}

/* Verdict / callout boxes */
.verdict-box {
  background: rgba(201, 169, 97, 0.1);
  border-left: 4px solid var(--hov-color-accent);
  padding: var(--hov-space-6);
  margin: var(--hov-space-6) 0;
}

.verdict-box h3 {
  color: var(--hov-color-accent);
  margin-top: 0;
}

/* Decision grid */
.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hov-space-6);
  margin: var(--hov-space-6) 0;
}

.decision-card {
  background: var(--hov-color-background-soft);
  border: 1px solid rgba(250, 248, 246, 0.1);
  padding: var(--hov-space-5);
}

.decision-card h4 {
  color: var(--hov-color-accent);
  margin: 0 0 var(--hov-space-4);
}

.decision-card ul {
  margin: 0;
  padding-left: 1.25rem;
}

/* Inline FAQ section (pricing guide) */
.faq-section {
  background: var(--hov-color-background-soft);
  padding: var(--hov-space-6);
  margin: var(--hov-space-6) 0;
  border-left: 4px solid var(--hov-color-accent);
}

.faq-item {
  margin-bottom: var(--hov-space-5);
}

.faq-item h3 {
  color: var(--hov-color-text);
  margin-bottom: var(--hov-space-2);
}

.faq-item p {
  margin: 0;
  color: var(--hov-color-text-muted);
}

/* Checklist (briefing article) */
.checklist {
  background: rgba(201, 169, 97, 0.1);
  border-left: 4px solid var(--hov-color-accent);
  padding: var(--hov-space-6);
  margin: var(--hov-space-6) 0;
}

.checklist h3 {
  color: var(--hov-color-accent);
  margin-top: 0;
}

.checklist ul {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: var(--hov-space-2) 0;
  padding-left: var(--hov-space-5);
  position: relative;
}

.checklist li::before {
  content: "\2610";
  position: absolute;
  left: 0;
  color: var(--hov-color-accent);
}

/* Tip box */
.tip-box {
  background: var(--hov-color-background-soft);
  border: 1px solid rgba(201, 169, 97, 0.3);
  padding: var(--hov-space-5);
  margin: var(--hov-space-5) 0;
}

.tip-box h4 {
  color: var(--hov-color-accent);
  margin: 0 0 var(--hov-space-2);
}

/* Article CTA (shared across all article pages) */
.article-cta {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
  text-align: center;
  padding: var(--hov-space-7) var(--hov-space-6);
  margin: var(--hov-space-7) 0;
}

.article-cta h2 {
  font-family: var(--hov-font-title);
  color: var(--hov-color-text);
  margin-bottom: var(--hov-space-4);
}

.article-cta-btn {
  display: inline-block;
  background: var(--hov-color-accent);
  color: var(--hov-color-background);
  padding: var(--hov-space-4) var(--hov-space-6);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--hov-transition-base);
}

.article-cta-btn:hover {
  background: var(--hov-color-accent-light);
  transform: translateY(-2px);
}

/* Related links */
.related-links {
  margin: var(--hov-space-6) 0;
}

.related-links a {
  color: var(--hov-color-accent);
  text-decoration: none;
  display: block;
  padding: var(--hov-space-2) 0;
}

.related-links a:hover {
  text-decoration: underline;
  color: var(--hov-color-accent-light);
}

@media (max-width: 600px) {
  .decision-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================== */
/*   PORTFOLIO CASE STUDY PAGE STYLES             */
/* ============================================== */
.case-study-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.case-study-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--hov-color-background-deep));
  pointer-events: none;
}

.case-study-hero-content {
  position: relative;
  z-index: 1;
  padding: var(--hov-space-8);
  max-width: 800px;
}

.case-study-breadcrumb {
  display: flex;
  gap: var(--hov-space-2);
  font-size: 0.875rem;
  color: var(--hov-color-text-muted);
  margin-bottom: var(--hov-space-4);
}

.case-study-breadcrumb a {
  color: var(--hov-color-accent);
  text-decoration: none;
}

.case-study-breadcrumb a:hover {
  text-decoration: underline;
}

.case-study-title {
  font-family: var(--hov-font-title);
  font-size: 3rem;
  color: var(--hov-color-text);
  margin: 0 0 var(--hov-space-4) 0;
}

.case-study-subtitle {
  font-size: 1.25rem;
  color: var(--hov-color-text-muted);
}

.case-study-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--hov-space-8) var(--hov-space-6);
}

.case-study-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--hov-space-6);
  padding: var(--hov-space-6);
  background: rgba(201, 169, 97, 0.1);
  border-left: 4px solid var(--hov-color-accent);
  margin-bottom: var(--hov-space-7);
}

.case-study-meta-item h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hov-color-accent);
  margin: 0 0 var(--hov-space-2) 0;
}

.case-study-meta-item p {
  margin: 0;
  color: var(--hov-color-text);
}

.case-study-meta-item a {
  color: var(--hov-color-accent);
  text-decoration: none;
}

.case-study-meta-item a:visited {
  color: var(--hov-color-accent);
}

.case-study-meta-item a:hover {
  text-decoration: underline;
  color: var(--hov-color-accent-light, #d4b872);
}

.case-study-section {
  margin-bottom: var(--hov-space-7);
}

.case-study-section h2 {
  font-family: var(--hov-font-title);
  font-size: 1.75rem;
  color: var(--hov-color-accent);
  margin: 0 0 var(--hov-space-4) 0;
}

.case-study-section p {
  color: var(--hov-color-text-muted);
  line-height: 1.8;
}

.case-study-image {
  width: 100%;
  margin: var(--hov-space-6) 0;
  border-radius: var(--hov-radius-sm);
}

.case-study-cta {
  text-align: center;
  padding: var(--hov-space-8) var(--hov-space-6);
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
}

.case-study-cta h2 {
  font-family: var(--hov-font-title);
  font-size: 2rem;
  color: var(--hov-color-text);
  margin: 0 0 var(--hov-space-4) 0;
}

.case-study-cta p {
  color: var(--hov-color-text-muted);
  margin-bottom: var(--hov-space-6);
}

.case-study-cta-btn {
  display: inline-block;
  background: var(--hov-color-accent);
  color: var(--hov-color-background);
  padding: var(--hov-space-4) var(--hov-space-6);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--hov-transition-base);
}

.case-study-cta-btn:hover {
  background: var(--hov-color-accent-light);
  transform: translateY(-2px);
}

.related-projects {
  padding: var(--hov-space-8) var(--hov-space-6);
  max-width: 1200px;
  margin: 0 auto;
}

.related-projects h2 {
  font-family: var(--hov-font-title);
  font-size: 1.75rem;
  color: var(--hov-color-text);
  text-align: center;
  margin-bottom: var(--hov-space-6);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--hov-space-6);
}

.related-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.related-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--hov-transition-luxury);
}

.related-item:hover img {
  transform: scale(1.05);
}

.related-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--hov-space-5);
  background: linear-gradient(to top, var(--hov-color-background-deep), transparent);
}

.related-item-title {
  color: var(--hov-color-text);
  font-weight: 600;
  margin: 0;
}

.related-item a {
  position: absolute;
  inset: 0;
}

/* ============================================== */
/*   HOW WE WORK PAGE STYLES (Light Theme)        */
/* ============================================== */
.hov-page-light {
  background: var(--hov-color-background-light);
  color: var(--hov-color-text-dark);
}

.hov-page-light .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--hov-space-6);
}

/* How-we-work hero (uses dark theme within light page) */
.hov-page-light .hero {
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, var(--hov-color-background-deep) 0%, var(--hov-color-background) 25%, var(--hov-color-background-soft) 50%, var(--hov-color-background) 75%, var(--hov-color-background-deep) 100%);
  color: var(--hov-color-text);
  padding: var(--hov-space-9) var(--hov-space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hov-page-light .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(201, 169, 97, 0.03) 2px,
      rgba(201, 169, 97, 0.03) 4px
    );
  pointer-events: none;
}

.hov-page-light .hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.25), rgba(228, 212, 168, 0.2));
  border: 2px solid var(--hov-color-accent);
  color: var(--hov-color-accent-light);
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px var(--hov-color-accent-glow);
  transition: all var(--hov-transition-base);
}

.hov-page-light .hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 169, 97, 0.35);
  border-color: var(--hov-color-accent-light);
}

.hov-page-light .hero-title {
  font-family: var(--hov-font-title);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.8rem;
  line-height: 1.15;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.hov-page-light .hero-subtitle {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--hov-color-text-muted);
  font-weight: 300;
  margin-bottom: var(--hov-space-7);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.hov-page-light .divider {
  width: 140px;
  height: 4px;
  background: radial-gradient(ellipse at center, var(--hov-color-accent-light) 0%, var(--hov-color-accent) 30%, transparent 70%);
  margin: 2.5rem auto;
  position: relative;
  border-radius: 2px;
  box-shadow: 0 2px 10px var(--hov-color-accent-glow);
}

.hov-page-light .divider::before,
.hov-page-light .divider::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--hov-color-accent);
  border-radius: var(--hov-radius-full);
  box-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

.hov-page-light .divider::before { left: -20px; }
.hov-page-light .divider::after { right: -20px; }

/* Light-themed sections */
.hov-page-light .section-title {
  font-family: var(--hov-font-title);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--hov-color-text-dark);
  text-align: center;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hov-page-light .section-intro {
  text-align: center;
  color: rgba(42, 38, 34, 0.65);
  font-size: 1.15rem;
  margin-bottom: var(--hov-space-8);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Video section (light bg) */
.hov-page-light .video-section {
  background: linear-gradient(to bottom, #fff 0%, var(--hov-color-background-light) 100%);
  padding: var(--hov-space-9) var(--hov-space-6);
  position: relative;
}

.hov-page-light .video-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: #000;
  border: 2px solid rgba(201, 169, 97, 0.3);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 10px 30px var(--hov-color-accent-glow);
  overflow: hidden;
  border-radius: var(--hov-radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hov-page-light .video-container:hover {
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 15px 40px rgba(201, 169, 97, 0.3);
  transform: translateY(-5px);
}

.hov-page-light .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.hov-page-light .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.hov-page-light .video-wrapper iframe.loaded {
  opacity: 1;
}

.hov-page-light .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 120px;
  height: 120px;
  border: 4px solid var(--hov-color-accent);
  border-radius: var(--hov-radius-full);
  background: rgba(42, 38, 34, 0.9);
  backdrop-filter: blur(15px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hov-page-light .play-button:hover {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(201, 169, 97, 0.6);
  border-color: var(--hov-color-accent-light);
}

.hov-page-light .play-button.hidden {
  opacity: 0;
  pointer-events: none;
}

.hov-page-light .play-icon {
  width: 0;
  height: 0;
  border-left: 35px solid var(--hov-color-accent);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  margin-left: 8px;
  transition: border-left-color var(--hov-transition-base);
}

.hov-page-light .play-button:hover .play-icon {
  border-left-color: var(--hov-color-accent-light);
}

/* Guide preview section */
.hov-page-light .guide-preview {
  background: radial-gradient(ellipse at top, rgba(201, 169, 97, 0.03) 0%, transparent 60%), #fff;
  padding: var(--hov-space-9) var(--hov-space-6);
  position: relative;
}

.hov-page-light .chapters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--hov-space-6);
  margin-bottom: var(--hov-space-8);
}

.hov-page-light .chapter {
  background: linear-gradient(135deg, var(--hov-color-background-light) 0%, #ffffff 100%);
  border: 2px solid rgba(201, 169, 97, 0.15);
  padding: var(--hov-space-6) 1.8rem;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.hov-page-light .chapter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--hov-color-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hov-page-light .chapter:hover {
  border-color: rgba(201, 169, 97, 0.4);
  box-shadow: 0 10px 40px rgba(201, 169, 97, 0.15), 0 4px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
  background: #fff;
}

.hov-page-light .chapter:hover::before {
  opacity: 1;
}

.hov-page-light .chapter-number {
  color: var(--hov-color-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(201, 169, 97, 0.08);
  border-radius: 6px;
}

.hov-page-light .chapter-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hov-color-text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.hov-page-light .chapter-desc {
  font-size: 0.98rem;
  color: rgba(42, 38, 34, 0.65);
  line-height: 1.7;
}

/* Featured chapter variant */
.hov-page-light .chapter.featured {
  background: linear-gradient(135deg, var(--hov-color-accent) 0%, var(--hov-color-accent-dark) 100%);
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 15px 50px rgba(201, 169, 97, 0.35);
  border-color: var(--hov-color-accent);
}

.hov-page-light .chapter.featured .chapter-number {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.hov-page-light .chapter.featured .chapter-title { color: #fff; }
.hov-page-light .chapter.featured .chapter-desc { color: rgba(255, 255, 255, 0.9); }
.hov-page-light .chapter.featured::before { opacity: 0; }

.hov-page-light .chapter.featured:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 60px rgba(201, 169, 97, 0.45);
}

/* What's inside section */
.hov-page-light .whats-inside {
  background:
    radial-gradient(ellipse at bottom right, rgba(201, 169, 97, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at top left, rgba(201, 169, 97, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, rgba(201, 169, 97, 0.06) 0%, rgba(201, 169, 97, 0.02) 100%);
  padding: var(--hov-space-9) var(--hov-space-6);
  position: relative;
}

.hov-page-light .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: var(--hov-space-7);
  position: relative;
  z-index: 1;
}

.hov-page-light .benefit {
  text-align: center;
  padding: 2.5rem var(--hov-space-6);
  background: linear-gradient(135deg, #ffffff 0%, var(--hov-color-background-light) 100%);
  border-radius: 12px;
  border: 2px solid rgba(201, 169, 97, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.hov-page-light .benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--hov-color-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hov-page-light .benefit:hover {
  border-color: rgba(201, 169, 97, 0.4);
  box-shadow: 0 15px 50px rgba(201, 169, 97, 0.2), 0 5px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
  background: #fff;
}

.hov-page-light .benefit:hover::before { opacity: 1; }

.hov-page-light .benefit-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--hov-color-text-dark);
  margin-bottom: var(--hov-space-4);
  line-height: 1.3;
}

.hov-page-light .benefit-desc {
  color: rgba(42, 38, 34, 0.65);
  font-size: 1rem;
  line-height: 1.7;
}

/* Lead form section */
.hov-page-light .lead-form-section {
  background: radial-gradient(ellipse at center top, rgba(201, 169, 97, 0.08) 0%, transparent 50%), linear-gradient(to bottom, #fff 0%, var(--hov-color-background-light) 100%);
  padding: var(--hov-space-9) var(--hov-space-6);
  position: relative;
}

.hov-page-light .form-container {
  max-width: 650px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--hov-color-background-light) 0%, #ffffff 50%, var(--hov-color-background-light) 100%);
  border: 3px solid var(--hov-color-accent);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(201, 169, 97, 0.25), 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hov-page-light .form-container:hover {
  box-shadow: 0 25px 80px rgba(201, 169, 97, 0.35), 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.hov-page-light .form-title {
  font-family: var(--hov-font-title);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--hov-color-text-dark);
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.hov-page-light .form-desc {
  color: rgba(42, 38, 34, 0.65);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hov-page-light .lead-form {
  display: flex;
  flex-direction: column;
  gap: var(--hov-space-4);
}

.hov-page-light .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hov-space-4);
}

.hov-page-light .form-input {
  padding: 1.1rem 1.4rem;
  background: #fff;
  border: 2px solid rgba(201, 169, 97, 0.25);
  border-radius: 10px;
  color: var(--hov-color-text-dark);
  font-size: 1.05rem;
  font-family: var(--hov-font-body);
  transition: all var(--hov-transition-base);
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.hov-page-light .form-input::placeholder {
  color: rgba(42, 38, 34, 0.4);
}

.hov-page-light .form-input:hover {
  border-color: rgba(201, 169, 97, 0.4);
}

.hov-page-light .form-input:focus {
  outline: none;
  border-color: var(--hov-color-accent);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.hov-page-light .form-button {
  padding: 1.4rem 2.5rem;
  background: linear-gradient(135deg, var(--hov-color-accent) 0%, var(--hov-color-accent-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--hov-font-body);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
  position: relative;
  overflow: hidden;
}

.hov-page-light .form-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.hov-page-light .form-button:hover {
  background: linear-gradient(135deg, var(--hov-color-accent-light) 0%, var(--hov-color-accent) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 169, 97, 0.5);
}

.hov-page-light .form-button:hover::before { left: 100%; }

.hov-page-light .form-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hov-page-light .form-privacy {
  font-size: 0.8rem;
  color: rgba(42, 38, 34, 0.5);
  margin-top: var(--hov-space-4);
}

.hov-page-light .form-message {
  margin-top: var(--hov-space-4);
  padding: var(--hov-space-4);
  border-radius: 6px;
  display: none;
  font-size: 0.95rem;
}

/* How-we-work footer (dark) */
.hov-page-light .footer {
  background:
    radial-gradient(ellipse at top, rgba(42, 38, 34, 0.95) 0%, var(--hov-color-background-deep) 50%),
    linear-gradient(135deg, var(--hov-color-background-deep) 0%, var(--hov-color-background) 50%, var(--hov-color-background-deep) 100%);
  color: var(--hov-color-text-muted);
  padding: var(--hov-space-8) var(--hov-space-6);
  text-align: center;
  position: relative;
  border-top: 2px solid rgba(201, 169, 97, 0.2);
}

.hov-page-light .footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hov-color-accent), transparent);
}

.hov-page-light .footer-logo {
  font-family: var(--hov-font-body);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--hov-color-accent-light);
  text-transform: uppercase;
  margin-bottom: var(--hov-space-4);
}

.hov-page-light .footer-tagline {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  color: rgba(250, 248, 246, 0.6);
  font-weight: 300;
}

.hov-page-light .footer-links {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hov-page-light .footer-link {
  color: var(--hov-color-text-muted);
  text-decoration: none;
  transition: all var(--hov-transition-base);
  font-size: 0.95rem;
  font-weight: 500;
  padding: var(--hov-space-2) var(--hov-space-4);
  border-radius: 6px;
  position: relative;
}

.hov-page-light .footer-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--hov-color-accent);
  transition: width var(--hov-transition-base);
}

.hov-page-light .footer-link:hover {
  color: var(--hov-color-accent-light);
  background: rgba(201, 169, 97, 0.1);
}

.hov-page-light .footer-link:hover::after { width: 80%; }

/* How-we-work loading spinner */
.hov-page-light .loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 0;
  transition: opacity 0.5s ease-out;
  pointer-events: none;
}

.hov-page-light .loading-spinner.visible { opacity: 1; }

.hov-page-light .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(42, 38, 34, 0.3);
  border-top-color: var(--hov-color-text-dark);
  border-radius: var(--hov-radius-full);
  animation: spin 0.8s linear infinite;
  margin-right: var(--hov-space-2);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* How-we-work responsive */
@media (max-width: 768px) {
  .hov-page-light .form-row {
    grid-template-columns: 1fr;
    gap: var(--hov-space-4);
  }

  .hov-page-light .chapters {
    grid-template-columns: 1fr;
    gap: var(--hov-space-5);
  }

  .hov-page-light .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--hov-space-6);
  }

  .hov-page-light .hero {
    padding: var(--hov-space-8) var(--hov-space-5);
  }

  .hov-page-light .video-section,
  .hov-page-light .guide-preview,
  .hov-page-light .whats-inside,
  .hov-page-light .lead-form-section {
    padding: var(--hov-space-8) var(--hov-space-5);
  }

  .hov-page-light .form-container {
    padding: 2.5rem var(--hov-space-5);
    border-width: 2px;
  }

  .hov-page-light .video-container {
    border-radius: 12px;
  }

  .hov-page-light .divider { width: 100px; }
  .hov-page-light .footer { padding: var(--hov-space-7) var(--hov-space-5); }
}

@media (max-width: 480px) {
  .hov-page-light .hero-badge {
    font-size: 0.75rem;
    padding: 0.6rem 1.2rem;
  }

  .hov-page-light .section-title { font-size: 1.8rem; }
  .hov-page-light .footer-logo { font-size: 1.1rem; }
}

/* ---------------------------------- */
/*   ACCESSIBILITY: FOCUS VISIBLE      */
/* ---------------------------------- */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
.hov-video-cta-btn:focus-visible,
.hov-form-submit:focus-visible,
.hov-filter-tab:focus-visible,
.hov-faq-question:focus-visible,
.hov-menu-link:focus-visible,
.hov-service-card:focus-visible,
.hov-form-calendly-btn:focus-visible,
.hov-sticky-cta-button:focus-visible,
.hov-close-btn:focus-visible,
.hov-calendly-close:focus-visible,
.hov-service-close:focus-visible {
  outline: 2px solid var(--hov-color-accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--hov-color-accent-glow);
}

/* Accessible gold on soft backgrounds (meets 4.5:1 AA) */
.hov-accent-text-on-soft {
  color: var(--hov-color-accent-readable);
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hov-fullpage-wrapper {
    scroll-behavior: auto;
  }

  .hov-particles span {
    animation: none;
  }

  .hov-sticky-cta-bar::before {
    animation: none;
  }
}
