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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

nav {
  position: relative;
  width: 100%;
  height: 85px;
  margin: 0 !important;
  padding: 0 clamp(15px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(to right, #0a0a0a, #1a1a1a, #0a0a0a) !important;
  /* Accurate dark gradient from reference */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

.golden-text {
  background: linear-gradient(135deg, #d4af37 0%, #f9e29c 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* PREMIUM UI UTILITIES */
.premium-heading {
  font-size: clamp(1.8rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: #fff;
}

.premium-heading span {
  color: #ff2e63;
  display: block;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 46, 99, 0.3);
  transform: translateY(-5px);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
  z-index: 10;
}

.scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
}

.scroll-dot {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #ff2e63, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}


.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-center {
  flex: 2;
  display: flex;
  justify-content: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.95rem;
  transition: color 0.3s;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  opacity: 0.8;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* Query Button Styles */
.query-btn {
  background: #ffffff;
  color: #ff2e63 !important;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
  text-transform: none;
}

.query-btn:hover {
  background: #f0f0f0;
  color: #ff2e63;
  transform: translateY(-2px);
}

.company-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.company-title small {
  display: block;
  font-size: 14px;
}

.hero-image {
  height: 95vh;
  border-radius: 10px;
}

section {
  padding-top: 60px;
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1230px;
  }
}

@media (max-width: 992px) {
  nav {
    height: auto !important;
    padding: 15px 20px !important;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.8)) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  section,
  .section {
    content-visibility: auto;
    contain-intrinsic-size: 500px;
  }

  .nav-left {
    flex: 1;
    justify-content: flex-start;
  }

  .nav-center {
    display: none;
  }

  .navbar-toggler {
    display: block !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
  }

  .site-background {
    background-attachment: scroll;
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: -5;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .section-title {
    font-size: 2rem;
  }

  .company-title {
    white-space: nowrap;
    font-size: 1.1rem;
  }

  .company-title small {
    font-size: 10px;
  }
}

@media (max-width: 500px) {
  section {
    padding-top: 40px;
  }
}

/* ADDITIONAL UTILITIES FOR INLINE CLEANUP */
.ls-5 {
  letter-spacing: 5px !important;
}

.zi-10 {
  z-index: 10 !important;
}

.max-800 {
  max-width: 800px !important;
}

.max-600 {
  max-width: 600px !important;
}

.text-pink {
  color: #ff2e63 !important;
}

/* SHARED HERO OVERRIDES */
.services-hero,
.brands-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.contact-hero-layout {
  padding: 60px 10% 80px;
  border: none;
  min-height: calc(100vh - 85px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}