:root {
  --gold: #f5a800;
  --gold-dim: #c98b00;
  --black: #111111;
  --off-black: #181818;
  --dark: #1e1e1e;
  --white: #f5f0eb;
  --gray: #888;
  --light-gray: #bbb;

  /* Layout */
  --container-width: 1400px;

  /* Section Spacing */
  --section-padding-y: 120px;
  --section-padding-x: 60px;

  /* Navbar */
  --nav-padding-y: 28px;
  --nav-padding-x: 60px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  /* Transition */
  --transition: all 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    width 0.3s,
    height 0.3s,
    background 0.3s;
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 168, 0, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.15s ease-out,
    width 0.3s,
    height 0.3s;
}
body:hover .cursor {
  opacity: 1;
}

/* NOISE OVERLAY */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.3;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--nav-padding-y) var(--nav-padding-x);
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.95), transparent);
  transition: background 0.4s;
}
nav.scrolled {
  background: rgba(17, 17, 17, 0.97);
  padding: 18px var(--nav-padding-x);
  border-bottom: 1px solid rgba(245, 168, 0, 0.12);
}

/* Custom SVG */
/* .nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  clip-path: polygon(
    50% 0%,
    85% 15%,
    100% 50%,
    85% 85%,
    50% 100%,
    15% 85%,
    0% 50%,
    15% 15%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  color: var(--black);
  letter-spacing: 0;
} */

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo-icon {
  width: 48px;
  height: 48px;
  display: block;
  transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-icon {
  transform: rotate(15deg);
}

.nav-logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 4px;
  color: var(--white);
}
.nav-logo-text span {
  color: var(--gold);
}
.nav-logo,
.nav-logo:link,
.nav-logo:visited,
.nav-logo:hover,
.nav-logo:active,
.nav-logo:focus {
    text-decoration: none;
    color: inherit;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 42px;
}
nav ul a {
  text-decoration: none;
  color: var(--light-gray);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
nav ul a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
nav ul a:hover {
  color: var(--gold);
}
nav ul a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 24px;
  font-weight: 500 !important;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.3s,
    transform 0.2s !important;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--white) !important;
  transform: translateY(-1px);
}
.nav-cta::after {
  display: none !important;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(245, 168, 0, 0.04) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 60%, var(--black) 100%);
  z-index: 1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 168, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 168, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPan 20s linear infinite;
  z-index: 0;
}
@keyframes gridPan {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(60px);
  }
}
.hero-reel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background: var(--dark);
  overflow: hidden;
}
.hero-reel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--black) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(17, 17, 17, 0.3) 0%, transparent 30%),
    linear-gradient(135deg, rgba(245, 168, 0, 0.08), rgba(0, 0, 0, 0.8));
  z-index: 2;
}
.hero-film-strip {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: filmRoll 25s linear infinite;
}
@keyframes filmRoll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
.film-frame {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-black);
  border-top: 3px solid #0a0a0a;
  border-bottom: 3px solid #0a0a0a;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.film-frame::before,
.film-frame::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 180px;
  background: repeating-linear-gradient(
    to bottom,
    #111 0px,
    #111 14px,
    #000 14px,
    #000 24px
  );
}
.film-frame::before {
  left: 0;
}
.film-frame::after {
  right: 0;
}
.film-inner {
  width: calc(100% - 48px);
  height: 188px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 6px;
  color: rgba(245, 168, 0, 0.15);
}
.film-inner.f1 {
  background: linear-gradient(135deg, #1a1200, #2a1f00);
  color: rgba(245, 168, 0, 0.2);
}
.film-inner.f2 {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
}
.film-inner.f3 {
  background: linear-gradient(135deg, #12100a, #1e1a0a);
  color: rgba(245, 168, 0, 0.25);
}
.film-inner.f4 {
  background: linear-gradient(135deg, #080808, #141414);
}
.film-inner.f5 {
  background: linear-gradient(135deg, #1a1200, #0d0d0d);
  color: rgba(245, 168, 0, 0.18);
}
.film-inner.f6 {
  background: linear-gradient(135deg, #111, #1a1a1a);
}

.hero-content {
  max-width: 620px;
  margin-left: 60px;
  z-index: 5;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: 3px;
  margin-bottom: 8px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title span {
  color: var(--gold);
}
.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--light-gray);
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.25s ease both;
}
.hero-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--gray);
  max-width: 440px;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.35s ease both;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: fadeUp 0.8s 0.45s ease both;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform 0.3s;
}
.btn-primary:hover::after {
  transform: translateX(0);
}
.btn-primary span {
  position: relative;
  z-index: 1;
}
.btn-outline {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.btn-outline .play-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.btn-outline .play-icon svg {
  width: 14px;
  fill: var(--white);
  margin-left: 2px;
}
.btn-outline:hover {
  color: var(--gold);
}
.btn-outline:hover .play-icon {
  border-color: var(--gold);
  background: rgba(245, 168, 0, 0.1);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  z-index: 10;
  animation: fadeUp 0.8s 0.6s ease both;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
.hero-stats {
  position: absolute;
  bottom: 70px;
  right: 80px;
  display: flex;
  gap: 60px;
  z-index: 5;
  animation: fadeUp 0.8s 0.5s ease both;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MARQUEE */
.marquee-section {
  border-top: 1px solid rgba(245, 168, 0, 0.15);
  border-bottom: 1px solid rgba(245, 168, 0, 0.15);
  padding: 18px 0;
  overflow: hidden;
  background: rgba(245, 168, 0, 0.03);
}
.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gray);
  text-transform: uppercase;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* SERVICES */
.services-section{
    padding: 60px var(--section-padding-x) var(--section-padding-y);
}
.section {
  padding: var(--section-padding-y) var(--section-padding-x);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 72px;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(245, 168, 0, 0.08);
}
.service-card {
  background: var(--black);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s;
}
.service-card:hover::before {
  width: 100%;
}
.service-card:hover {
  background: var(--off-black);
}
.service-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 72px;
  color: rgba(245, 168, 0, 0.07);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 28px;
  transition: color 0.4s;
}
.service-card:hover .service-num {
  color: rgba(245, 168, 0, 0.12);
}
.service-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(245, 168, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.service-card:hover .service-icon {
  border-color: var(--gold);
  background: rgba(245, 168, 0, 0.08);
}
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
}
.service-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.service-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--gray);
  font-weight: 300;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s;
}
.service-link:hover {
  gap: 14px;
}

/* ABOUT / MANIFESTO */
.about-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  background: var(--off-black);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: "OTEL";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: 280px;
  color: rgba(245, 168, 0, 0.025);
  line-height: 1;
  pointer-events: none;
  letter-spacing: 10px;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1200, #2a1f00, #111);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(245, 168, 0, 0.03) 30px,
    rgba(245, 168, 0, 0.03) 31px
  );
}
.about-img-inner {
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
  color: rgba(245, 168, 0, 0.2);
  letter-spacing: 8px;
  text-align: center;
  line-height: 1;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.about-badge-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  color: var(--black);
  line-height: 1;
}
.about-badge-text {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 600;
  text-align: center;
  padding: 0 8px;
  line-height: 1.4;
}
.about-content {
  position: relative;
  z-index: 1;
}
.about-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 32px;
  padding-left: 28px;
  border-left: 2px solid var(--gold);
}
.about-text {
  font-size: 14px;
  line-height: 1.95;
  color: var(--gray);
  margin-bottom: 20px;
}
.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--light-gray);
}
.about-feat::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

/* CLIENTS */
.clients-section {
  padding: 100px var(--section-padding-x);
  background: var(--black);
}
.clients-header {
  text-align: center;
  margin-bottom: 70px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: rgba(245, 168, 0, 0.08);
}
.client-tile {
  background: var(--black);
  padding: 36px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  cursor: default;
}
.client-tile:hover {
  background: var(--off-black);
}
.client-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: color 0.3s;
}
.client-tile:hover .client-name {
  color: rgba(245, 168, 0, 0.7);
}

/* PORTFOLIO / REELS */
.portfolio-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--off-black);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 3px;
  margin-top: 60px;
}
.portfolio-item {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-item.large {
  grid-column: span 7;
  grid-row: span 2;
}
.portfolio-item.medium {
  grid-column: span 5;
}
.portfolio-item.wide {
  grid-column: span 12;
}
.portfolio-inner {
  width: 100%;
  padding-top: 70%;
  position: relative;
  overflow: hidden;
}
.portfolio-item.large .portfolio-inner {
  padding-top: 100%;
}
.portfolio-item.wide .portfolio-inner {
  padding-top: 30%;
}
.portfolio-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 5px;
  color: rgba(245, 168, 0, 0.1);
  transition: transform 0.6s ease;
}
.portfolio-item:hover .portfolio-bg {
  transform: scale(1.05);
}
.p1 {
  background: linear-gradient(135deg, #1a1200, #2a1f00, #100c00);
}
.p2 {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a, #111);
}
.p3 {
  background: linear-gradient(135deg, #120c00, #1e1400, #0d0900);
}
.p4 {
  background: linear-gradient(135deg, #0a0a0a, #181818, #121212);
}
.p5 {
  background: linear-gradient(135deg, #1a1200, #141000, #0f0c00);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-info {
}
.portfolio-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.portfolio-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--white);
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity 0.4s,
    transform 0.4s;
  background: rgba(245, 168, 0, 0.1);
}
.play-btn svg {
  width: 20px;
  fill: var(--gold);
  margin-left: 4px;
}
.portfolio-item:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* PROCESS */
.process-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--black);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.process-step {
  padding: 0 32px;
  text-align: center;
  position: relative;
}
.step-circle {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(245, 168, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  color: var(--gold);
  background: var(--black);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.process-step:hover .step-circle {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.step-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray);
}

/* AWARDS / INDIA */
.india-section {
  padding: 100px var(--section-padding-x);
  background: var(--off-black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.india-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 56px;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 24px;
}
.india-title span {
  color: var(--gold);
}
.india-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 36px;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(245, 168, 0, 0.08);
}
.city-tile {
  background: var(--off-black);
  padding: 20px;
  text-align: center;
  transition: background 0.3s;
  cursor: default;
}
.city-tile:hover {
  background: var(--dark);
}
.city-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--light-gray);
  transition: color 0.3s;
}
.city-tile:hover .city-name {
  color: var(--gold);
}
.india-map-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.india-visual-box {
  width: 320px;
  height: 380px;
  border: 1px solid rgba(245, 168, 0, 0.2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.india-visual-box::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(245, 168, 0, 0.08);
}
.india-pulse {
  position: absolute;
  border-radius: 50%;
  background: rgba(245, 168, 0, 0.15);
  animation: pulse 3s ease-out infinite;
}
@keyframes pulse {
  0% {
    width: 20px;
    height: 20px;
    opacity: 0.8;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}
.india-center-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  letter-spacing: 5px;
  color: rgba(245, 168, 0, 0.3);
  text-align: center;
  line-height: 1.2;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--black);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(245, 168, 0, 0.08);
  margin-top: 72px;
}
.testimonial-card {
  background: var(--black);
  padding: 48px 40px;
  transition: background 0.3s;
}
.testimonial-card:hover {
  background: var(--off-black);
}
.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 28px;
  opacity: 0.4;
}
.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--light-gray);
  margin-bottom: 32px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-dim), #5a3c00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  color: var(--black);
}
.author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
}
.author-title {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
  margin-top: 2px;
}

/* CTA */
.cta-section {
  padding: 140px var(--section-padding-x);
  background: var(--gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0, 0, 0, 0.04) 20px,
    rgba(0, 0, 0, 0.04) 21px
  );
}
.cta-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  position: relative;
}
.cta-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(52px, 6vw, 96px);
  letter-spacing: 3px;
  color: var(--black);
  line-height: 0.9;
  margin-bottom: 28px;
  position: relative;
}
.cta-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 52px;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  padding: 18px 48px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-dark:hover {
  background: var(--off-black);
  transform: translateY(-2px);
}
.btn-ghost-dark {
  border: 2px solid var(--black);
  color: var(--black);
  padding: 16px 48px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-ghost-dark:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: #0a0a0a;
  padding: 80px 60px 40px;
  border-top: 1px solid rgba(245, 168, 0, 0.1);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.footer-branding{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:18px;
}

.footer-brand-icon{
    width:56px;
    height:56px;
    object-fit:contain;
    position: relative;
    top: -5px;
}
.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  letter-spacing: 4px;
  line-height: 1;
  color: var(--white);
  margin: 0;
}
.footer-logo span {
  color: var(--gold);
}
.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}

/* .social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 700;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
} */

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F5B300;
  border: 1px solid rgba(245, 168, 0, 0.3);
  transition: 0.3s ease;
}
.social-btn i {
  font-size: 20px;
}
.social-btn:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-4px);
}
.footer-col h3 {
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-note {
  margin-top: 24px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  text-decoration: none;
  color: var(--gray);
  font-size: 13px;
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: var(--white);
}
.footer-contact p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 8px;
}
.footer-contact a {
  color: var(--gold);
  text-decoration: none;
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1px;
}
.footer-copy span {
  color: var(--gold);
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* HEADER LINE */
.gold-line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 16px;
}

/* ==========================================
   PREMIUM WHATSAPP BUTTON
========================================== */

.whatsapp-float {
  position: fixed;
  right: 35px;
  bottom: 40px;
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: #111;
  border: 2px solid var(--gold);
  color: #fff;
  text-decoration: none;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition:
    width 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease,
    opacity 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.whatsapp-float.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-float:hover {
  width: 205px;
  background: var(--gold);
  color: #111;
}

.whatsapp-icon {
  width: 60px;
  min-width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-icon svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float span {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  opacity: 0;
  transition: 0.25s;
}

.whatsapp-float:hover span {
  opacity: 1;
}

@keyframes whatsappBounce {
  0% {
    transform: translateY(50px);
  }
  70% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
