/* ═══════════════════════════════════════
   REVOX CREATIVES — SHARED STYLESHEET
   Design ref: 8bitcreatives.in
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Barlow+Condensed:wght@400;600;700;900&display=swap');

:root {
  --red:        #FF1E1E;
  --red-dark:   #C0000C;
  --red-glow:   rgba(255,30,30,0.3);
  --bg:         #080808;
  --bg2:        #0f0f0f;
  --bg3:        #141414;
  --surface:    #1a1a1a;
  --surface2:   #222222;
  --white:      #FFFFFF;
  --grey:       #999999;
  --grey-light: #cccccc;
  --border:     rgba(255,255,255,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;

}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { border: none; background: none; font-family: inherit; cursor: none; }

/* ── 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.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9998; opacity: 0.4;
}



/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 60px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(8,8,8,0.97), transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
nav.solid { background: rgba(8,8,8,0.98); }

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 30px; width: auto; filter: brightness(1); }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--grey);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--red); transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 10px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--red-dark) !important; transform: scale(1.04); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }

/* Mobile nav */
.mob-nav {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.mob-nav.open { transform: translateX(0); }
.mob-nav a {
  font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 4px;
  color: var(--grey); transition: color 0.2s;
}
.mob-nav a:hover, .mob-nav a.active { color: var(--red); }
.mob-nav .nav-cta { font-size: 14px; padding: 14px 40px; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red); color: var(--white);
  padding: 16px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  display: inline-block;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255,30,30,0.3);
}
.btn-secondary {
  color: var(--white); padding: 16px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* ── SECTION HELPERS ── */
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--red); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95; letter-spacing: -1px;
  margin-bottom: 60px;
}
.section-title span { color: var(--red); }

/* ── MARQUEE ── */
.marquee-wrap {
  padding: 16px 0; background: var(--red); overflow: hidden;
}
.marquee-track {
  display: flex; animation: marquee 22s linear infinite; white-space: nowrap;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 4px;
  color: rgba(0,0,0,0.4); padding: 0 28px;
  display: flex; align-items: center; gap: 28px;
}
.marquee-item::after { content: '✦'; color: rgba(0,0,0,0.3); font-size: 10px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 52vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 120px 60px 80px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 60% 50%, rgba(255,30,30,0.1) 0%, transparent 70%),
    linear-gradient(135deg, #080808 0%, #100400 60%, #080808 100%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,30,30,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,30,30,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}
.page-hero-ghost {
  position: absolute; right: 40px; bottom: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(160px, 22vw, 320px);
  color: transparent; -webkit-text-stroke: 1px rgba(255,30,30,0.05);
  pointer-events: none; line-height: 1; user-select: none; letter-spacing: -4px;
}
.page-hero-content { position: relative; z-index: 2; max-width: 1400px; width: 100%; margin: 0 auto; }
.page-hero-tag {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--red);
  margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.page-hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--red); }
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.9; letter-spacing: -2px;
}
.page-hero-title .r { color: var(--red); text-shadow: 0 0 60px rgba(255,30,30,0.4); }
.page-hero-sub {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px;
  font-weight: 400; color: var(--grey); margin-top: 16px; letter-spacing: 1px;
}
.page-hero-cut {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40px;
  background: var(--bg); clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ── SERVICE CARD ── */
.service-card {
  background: var(--bg3); padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: background 0.3s, transform 0.3s;
  border: 1px solid var(--border);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--red);
  transition: height 0.4s ease;
}
.service-card:hover { background: var(--surface); transform: translateY(-4px); }
.service-card:hover::before { height: 100%; }
.service-icon { font-size: 32px; margin-bottom: 24px; display: block; }
.service-num {
  position: absolute; top: 24px; right: 24px;
  font-family: 'Bebas Neue', sans-serif; font-size: 48px;
  color: rgba(255,255,255,0.04); line-height: 1;
}
.service-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 22px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); margin-bottom: 12px;
}
.service-desc { font-size: 14px; color: var(--grey); line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); transition: gap 0.2s;
}
.service-link:hover { gap: 14px; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-l.visible { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-r.visible { opacity: 1; transform: translateX(0); }

/* ── FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 80px 60px 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 2fr; gap: 80px;
  padding-bottom: 60px; border-bottom: 1px solid var(--border);
  max-width: 1400px; margin: 0 auto;
}
.footer-brand-logo img { height: 56px; width: auto; margin-bottom: 16px; filter: brightness(1); }
.footer-tagline { font-size: 13px; color: var(--grey); line-height: 1.6; max-width: 260px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: var(--grey); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--red); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  letter-spacing: 1px; color: var(--grey);
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); font-size: 14px;
  color: var(--grey); transition: border-color 0.2s, color 0.2s;
}
.footer-socials a:hover { border-color: var(--red); color: var(--red); }

/* ── STAT ITEMS ── */
.stat-item {}
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--white); line-height: 1; }
.stat-num span { color: var(--red); }
.stat-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-top: 4px;
}

/* ── FORM ── */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--grey);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--white); font-family: 'Barlow', sans-serif; font-size: 15px;
  padding: 14px 18px; outline: none; width: 100%;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select { appearance: none; cursor: none; }
.form-group select option { background: var(--bg3); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border); overflow: hidden;
  transition: background 0.2s;
}
.faq-item:hover { background: var(--bg3); }
.faq-q {
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; cursor: none;
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px;
  font-weight: 700; letter-spacing: 1px; color: var(--white);
}
.faq-q:hover { color: var(--grey-light); }
.faq-icon { color: var(--red); font-size: 20px; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-ans {
  max-height: 0; overflow: hidden; padding: 0;
  font-size: 15px; color: var(--grey); line-height: 1.8;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
}
.faq-item.open .faq-ans { max-height: 180px; padding: 0 0 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav, .page-hero, footer { padding-left: 32px; padding-right: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  nav { padding: 0 24px; }
  .page-hero { padding: 100px 24px 60px; }
  .page-hero-ghost { display: none; }
  footer { padding: 60px 24px 0; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section-title { font-size: clamp(40px, 10vw, 72px); margin-bottom: 40px; }
}
