/* ============================================================
   NEORA IMPACT — Design System CSS
   Typo: Michroma (titles) + Archivo (body/buttons)
   Palette: #FFFFFF | #FFF8E8 | #FCD581 | #D52941 | #990D35
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Archivo:ital,wght@0,100..900;1,400&display=swap');

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --white:      #FFFFFF;
  --cream:      #FFF8E8;
  --gold:       #FCD581;
  --red:        #D52941;
  --crimson:    #990D35;
  --dark:       #0a0a0a;
  --dark2:      #111111;
  --dark3:      #1a1a1a;
  --mid:        #2a2a2a;
  --muted:      #888888;
  --border:     rgba(255,255,255,0.08);

  --font-title: 'Michroma', sans-serif;
  --font-body:  'Archivo', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.15);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.25);
  --shadow-lg:  0 20px 80px rgba(0,0,0,0.4);
  --shadow-red: 0 8px 40px rgba(213,41,65,0.3);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --container: 1280px;
  --nav-h: 80px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  cursor: none;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: none; border: none; outline: none; }
input, textarea, select { font-family: var(--font-body); outline: none; }

/* ── CUSTOM CURSOR ─────────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease, background 0.3s ease;
  transform: translate(-50%, -50%);
}

#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 2px solid rgba(213, 41, 65, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  transform: translate(-50%, -50%);
}

#cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: var(--gold);
  background: rgba(252, 213, 129, 0.08);
}

#cursor-ring.click {
  width: 28px; height: 28px;
  background: rgba(213, 41, 65, 0.2);
}

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  font-synthesis: weight style;
}

.display-xl { font-size: clamp(3rem, 7vw, 7rem); font-weight: 700; }
.display-lg { font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 700; }
.display-md { font-size: clamp(1.8rem, 3.5vw, 3.5rem); font-weight: 700; }
.display-sm { font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 700; }

.text-red    { color: var(--red); }
.text-gold   { color: var(--gold); }
.text-cream  { color: var(--cream); }
.text-muted  { color: var(--muted); }
.text-upper  { text-transform: uppercase; letter-spacing: 0.15em; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }

/* ── GRID PATTERN BACKGROUND ──────────────────────────────── */
.bg-grid {
  position: relative;
}
.bg-grid::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.bg-dots {
  position: relative;
}
.bg-dots::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* ── GRADIENT BACKGROUNDS ─────────────────────────────────── */
.bg-dark   { background: var(--dark); }
.bg-dark2  { background: var(--dark2); }
.bg-dark3  { background: var(--dark3); }
.bg-cream  { background: var(--cream); color: var(--dark); }
.bg-red    { background: var(--red); }
.bg-crimson{ background: var(--crimson); }

.gradient-dark-red {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 50%, rgba(153,13,53,0.15) 100%);
}
.gradient-red {
  background: linear-gradient(135deg, var(--red), var(--crimson));
}
.gradient-gold {
  background: linear-gradient(135deg, var(--gold), #f5b642);
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s ease;
}

.btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--crimson);
  transform: translateY(-2px);
  box-shadow: 0 12px 50px rgba(213,41,65,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: #f5b642;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(252,213,129,0.3);
}

.btn-dark {
  background: var(--dark3);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-dark:hover {
  background: var(--mid);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 44px; font-size: 0.9rem; }
.btn-sm { padding: 10px 24px; font-size: 0.8rem; }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(37,211,102,0.3);
}

/* ── SECTION LABEL ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--red);
}

/* ── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(213,41,65,0), rgba(252,213,129,0)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card:hover::after {
  background: linear-gradient(135deg, rgba(213,41,65,0.4), rgba(252,213,129,0.2)) border-box;
}

/* ── NAV ───────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  height: 68px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-img {
  height: 40px;
  width: auto;
}

.nav-logo .logo-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}

.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 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: none;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── MOBILE NAV ─────────────────────────────────────────────── */
#mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

#mobile-nav.open {
  transform: translateX(0);
}

#mobile-nav a {
  font-family: var(--font-title);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color 0.3s ease;
}

#mobile-nav a:hover { color: var(--red); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 60%, rgba(153,13,53,0.12) 100%);
}

.hero-bg-image {
  position: absolute;
  right: 0; top: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--dark) 40%, transparent 80%);
}

.hero-noise {
  position: absolute; inset: 0;
  opacity: 0.03;
  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='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(252,213,129,0.1);
  border: 1px solid rgba(252,213,129,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-tag .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title .line-accent {
  color: var(--red);
  display: block;
}

.hero-title .line-stroke {
  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
  color: transparent;
  display: block;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}

.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), 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; }
}

/* ── COUNTERS ───────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat-item {
  background: var(--dark2);
  padding: 40px 32px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--dark2);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: none;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: var(--dark3);
}

.service-number {
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 24px;
  display: block;
}

.service-icon {
  width: 52px; height: 52px;
  margin-bottom: 24px;
  color: var(--gold);
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-title {
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.service-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.service-link:hover { gap: 14px; }

/* ── MARQUEE TICKER ─────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--red);
  padding: 16px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 30px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.marquee-sep {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── IMAGE SPLIT EFFECT ─────────────────────────────────────── */
.img-diagonal {
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.img-diagonal-r {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.img-overlay {
  position: relative;
  overflow: hidden;
}

.img-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.img-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 60%);
}

/* ── ABOUT / SPLIT SECTION ──────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

/* ── PORTFOLIO GRID ─────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.portfolio-item {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  cursor: none;
}

.portfolio-item.wide { grid-column: span 2; }
.portfolio-item.tall { grid-row: span 2; aspect-ratio: auto; }

.portfolio-item img,
.portfolio-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(153,13,53,0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

/* ── BLOG CARDS ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(213,41,65,0.3);
  box-shadow: var(--shadow-lg);
}

.blog-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.06);
}

.blog-body {
  padding: 28px;
}

.blog-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title { color: var(--gold); }

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── CONTACT FORM ───────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.9rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-control:focus {
  border-color: var(--red);
  background: rgba(213,41,65,0.04);
}

.form-control::placeholder { color: rgba(255,255,255,0.25); }

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select.form-control option { background: var(--dark2); color: var(--white); }

/* ── FOOTER ─────────────────────────────────────────────────── */
#footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--muted);
}

.social-link:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(213,41,65,0.15);
}

.footer-col-title {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ── TOAST / NOTIFICATION ─────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  max-width: 360px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success { border-left: 3px solid #25D366; }
.toast.error   { border-left: 3px solid var(--red); }

/* ── PAGE HEADER ────────────────────────────────────────────── */
.page-header {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--dark2);
}

.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(213,41,65,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213,41,65,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ── LOADER ─────────────────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-title);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--white);
}

.loader-bar {
  width: 200px; height: 2px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  animation: loaderFill 1.5s ease forwards;
}

@keyframes loaderFill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── ACCORDION (services detail) ────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: none;
  transition: color 0.3s ease;
}

.accordion-trigger:hover { color: var(--gold); }

.accordion-trigger svg {
  width: 20px; height: 20px;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.accordion-item.open .accordion-trigger svg {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.accordion-body {
  padding: 0 0 24px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ── LIGHTBOX ───────────────────────────────────────────────── */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#lightbox.open {
  opacity: 1;
  visibility: visible;
}

#lightbox img,
#lightbox video {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--dark2);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-bar      { grid-template-columns: repeat(2, 1fr); }
  .blog-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  
  .services-grid  { grid-template-columns: 1fr; }
  .split-section  { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.wide { grid-column: span 1; }
  .blog-grid      { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom  { flex-direction: column; gap: 12px; text-align: center; }
  .stats-bar      { grid-template-columns: 1fr 1fr; }
  .hero-bg-image  { width: 100%; opacity: 0.2; }
  .hero-bg-overlay { background: linear-gradient(to bottom, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.6) 100%); }
  
  #cursor-dot, #cursor-ring { display: none; }
  html, body { cursor: auto; }
  button, a { cursor: pointer; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.wide { grid-column: span 1; }
  .stats-bar { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── UTILITY ────────────────────────────────────────────────── */
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.gap-sm      { gap: 12px; }
.gap-md      { gap: 24px; }
.gap-lg      { gap: 40px; }
.mt-sm       { margin-top: 20px; }
.mt-md       { margin-top: 40px; }
.mt-lg       { margin-top: 80px; }
.mb-sm       { margin-bottom: 20px; }
.mb-md       { margin-bottom: 40px; }
.mb-lg       { margin-bottom: 80px; }
.w-full      { width: 100%; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.hidden      { display: none; }
.sr-only     { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── TAGS / BADGES ──────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(213,41,65,0.12);
  color: var(--red);
  border: 1px solid rgba(213,41,65,0.2);
}

.tag-gold {
  background: rgba(252,213,129,0.12);
  color: var(--gold);
  border-color: rgba(252,213,129,0.2);
}

/* ── TEXT SPLIT ANIMATION ───────────────────────────────────── */
.split-text .word {
  display: inline-block;
  overflow: hidden;
}

.split-text .char {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.split-text.visible .char {
  transform: translateY(0);
}

/* Stagger delays for chars */
.split-text .char:nth-child(1)  { transition-delay: 0.02s; }
.split-text .char:nth-child(2)  { transition-delay: 0.04s; }
.split-text .char:nth-child(3)  { transition-delay: 0.06s; }
.split-text .char:nth-child(4)  { transition-delay: 0.08s; }
.split-text .char:nth-child(5)  { transition-delay: 0.10s; }
.split-text .char:nth-child(6)  { transition-delay: 0.12s; }
.split-text .char:nth-child(7)  { transition-delay: 0.14s; }
.split-text .char:nth-child(8)  { transition-delay: 0.16s; }
.split-text .char:nth-child(9)  { transition-delay: 0.18s; }
.split-text .char:nth-child(10) { transition-delay: 0.20s; }

/* ── PROGRESS BAR (page load) ───────────────────────────────── */
#nprogress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--red), var(--gold));
  z-index: 99999;
  width: 0;
  transition: width 0.3s ease;
}

/* ── PARALLAX ───────────────────────────────────────────────── */
.parallax-container {
  overflow: hidden;
}

.parallax-img {
  will-change: transform;
}
