:root {
  --black: #050607;
  --ink: #0d0f12;
  --panel: #13171b;
  --panel-soft: #181d22;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f4ed;
  --muted: #b8bec4;
  --gold: #d6a84f;
  --gold-soft: rgba(214, 168, 79, 0.18);
  --cyan: #7ed7e8;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 20% 0%, rgba(126, 215, 232, 0.16), transparent 34rem),
    linear-gradient(180deg, #050607 0%, #0a0d10 42%, #050607 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  animation: drift 18s linear infinite;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, 0.035) 47% 48%, transparent 49% 100%),
    linear-gradient(65deg, transparent 0 52%, rgba(214, 168, 79, 0.035) 53% 54%, transparent 55% 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
iframe {
  max-width: 100%;
}

.navbar {
  align-items: center;
  background: rgba(5, 6, 7, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2.5px;
  white-space: nowrap;
}

.logo span,
.accent {
  color: var(--gold);
}

.menu {
  align-items: center;
  display: flex;
  gap: 8px;
}

.menu a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 10px 13px;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu a:hover,
.menu a.is-active {
  background: var(--gold-soft);
  border-color: rgba(214, 168, 79, 0.42);
  color: var(--text);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  display: none;
  font-size: 20px;
  height: 42px;
  width: 42px;
}

.hero {
  min-height: 86vh;
  overflow: hidden;
  padding: 86px 22px 34px;
  position: relative;
}

.hero::after {
  animation: heroZoom 16s ease-in-out infinite alternate;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.92), rgba(5, 6, 7, 0.42), rgba(5, 6, 7, 0.82)),
    url("https://images.unsplash.com/photo-1506947411487-a56738267384?auto=format&fit=crop&w=2100&q=85");
  background-position: center;
  background-size: cover;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hero::before {
  background: linear-gradient(180deg, transparent 0%, var(--black) 100%);
  bottom: 0;
  content: "";
  height: 32%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
}

.hero-inner,
.section,
.page-head,
.video-section,
.cta,
.footer {
  margin-inline: auto;
  max-width: var(--max);
}

.hero-inner {
  align-items: end;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  min-height: 70vh;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1;
}

h1 {
  font-size: clamp(48px, 8vw, 102px);
  letter-spacing: 0;
  margin-bottom: 26px;
  max-width: 900px;
  text-transform: uppercase;
}

.hero p,
.lead {
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  max-width: 760px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #070707;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 1px;
  min-height: 48px;
  padding: 14px 22px;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.button.secondary:hover {
  border-color: rgba(214, 168, 79, 0.7);
}

.stats {
  background: rgba(10, 13, 16, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  padding: 22px;
}

.stat {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.stat strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.section {
  padding: 92px 22px;
}

.section-head {
  margin-bottom: 38px;
  max-width: 820px;
}

.section h2,
.page-head h1,
.cta h2 {
  font-size: clamp(34px, 5vw, 64px);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-head p,
.page-head p,
.cta p,
.card p,
.service p,
.video-card p {
  color: var(--muted);
}

.grid-3,
.portfolio-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service,
.card,
.video-card,
.contact-card {
  background: linear-gradient(145deg, rgba(24, 29, 34, 0.94), rgba(9, 12, 15, 0.94));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service {
  min-height: 208px;
  padding: 28px;
}

.service:hover,
.card:hover,
.video-card:hover {
  border-color: rgba(214, 168, 79, 0.62);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.service h3,
.card h3,
.video-card h3,
.contact-card h3 {
  font-size: 23px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-number {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.card-img {
  aspect-ratio: 1.25 / 1;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.card-img::after {
  background: linear-gradient(180deg, transparent, rgba(5, 6, 7, 0.82));
  content: "";
  inset: 0;
  position: absolute;
}

.card-body {
  padding: 24px;
}

.gold-link {
  color: var(--gold);
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-top: 16px;
  text-transform: uppercase;
}

.process {
  border-block: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  background: rgba(255, 255, 255, 0.035);
  min-height: 190px;
  padding: 30px;
}

.process-step span {
  color: var(--cyan);
  display: block;
  font-weight: 900;
  margin-bottom: 18px;
}

.contact-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-card {
  padding: 30px;
}

.page-head {
  padding: 88px 22px 58px;
}

.page-head.compact {
  padding-bottom: 22px;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.category-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 10px 14px;
  text-transform: uppercase;
}

.category-nav a:hover,
.category-nav a.is-current {
  border-color: rgba(214, 168, 79, 0.68);
  color: var(--text);
}

.video-section {
  padding: 46px 22px 88px;
}

.video-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.live-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
  padding: 16px;
}

.live-card {
  position: relative;
}

.live-topline {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.live-dot {
  animation: pulseLive 1.8s ease-in-out infinite;
  background: #ff3b3b;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.5);
  height: 10px;
  width: 10px;
}

.live-status {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.video-frame,
.video-placeholder {
  aspect-ratio: 16 / 9;
  background: #000;
  border: 0;
  border-radius: 6px;
  display: grid;
  min-height: 220px;
  place-items: center;
  width: 100%;
}

.video-placeholder {
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.18), rgba(126, 215, 232, 0.12)),
    #07090b;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.video-card h3 {
  margin-top: 18px;
}

.cta {
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.18), rgba(126, 215, 232, 0.08)),
    linear-gradient(145deg, #15191d, #080a0c);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 88px;
  padding: 42px;
  text-align: center;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 32px 22px;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  color: #04120a;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0.8px;
  min-height: 56px;
  padding: 10px 18px 10px 10px;
  position: fixed;
  right: 22px;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
  z-index: 80;
}

.whatsapp-float:hover {
  box-shadow: 0 18px 54px rgba(37, 211, 102, 0.3);
  filter: brightness(1.05);
  transform: translateY(-3px);
}

.whatsapp-mark {
  align-items: center;
  background: #ffffff;
  border-radius: 999px;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.whatsapp-text {
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

@keyframes drift {
  from {
    transform: translateX(-4%);
  }

  to {
    transform: translateX(4%);
  }
}

@keyframes pulseLive {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.52);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(255, 59, 59, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .navbar {
    align-items: flex-start;
    padding-inline: 18px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .menu {
    background: rgba(5, 6, 7, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: none;
    left: 18px;
    padding: 12px;
    position: absolute;
    right: 18px;
    top: 68px;
  }

  .menu.is-open {
    display: grid;
  }

  .menu a {
    border-radius: 6px;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-inner,
  .grid-3,
  .portfolio-grid,
  .process,
  .contact-grid,
  .video-grid,
  .live-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 66vh;
  }

  .stats {
    max-width: 420px;
  }
}

@media (max-width: 560px) {
  .section,
  .page-head,
  .video-section {
    padding-inline: 18px;
  }

  h1 {
    font-size: 44px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .cta {
    margin-inline: 18px;
    padding: 28px 20px;
  }

  .whatsapp-float {
    bottom: 16px;
    min-height: 54px;
    padding-right: 14px;
    right: 16px;
  }

  .whatsapp-text {
    display: none;
  }
}
