/* ===================== CSS VARIABLES ===================== */
:root {
  --red: #e61c1c;
  --red-deep: #b30000;
  --red-light: #ff3b3b;
  --red-glow: rgba(230, 28, 28, 0.35);
  --red-glass: rgba(230, 28, 28, 0.12);
  --black: #0a0a0a;
  --black-mid: #111111;
  --black-soft: #1a1a1a;
  --black-card: #161616;
  --white: #ffffff;
  --white-dim: rgba(255,255,255,0.85);
  --white-muted: rgba(255,255,255,0.5);
  --white-faint: rgba(255,255,255,0.08);
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.1);
  --glass-red: rgba(230,28,28,0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow-red: 0 0 40px rgba(230,28,28,0.25);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

::selection { background: var(--red); color: #fff; }

/* ===================== CUSTOM CURSOR ===================== */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.7;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* ===================== 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: 9999;
  opacity: 0.35;
}

/* ===================== SECTION BASE ===================== */
section { position: relative; overflow: hidden; }

.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--red);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================== UTILITY ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 20px var(--red-glow); }
  50% { box-shadow: 0 0 50px rgba(230,28,28,0.6), 0 0 80px rgba(230,28,28,0.2); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(230,28,28,0.3); }
  50% { border-color: rgba(230,28,28,0.8); }
}

.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);
}

/* ===================== GLASS / BOX UTILITY ===================== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.glass-red {
  background: var(--glass-red);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(230,28,28,0.25);
  border-radius: var(--radius);
}

/* ===================== BUTTON ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: none;
  position: relative;
  overflow: hidden;
  border: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-deep);
  box-shadow: 0 8px 30px rgba(230,28,28,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red) !important;
}
.btn-outline:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}
.btn-ghost {
  background: var(--white-faint);
  color: #fff;
  border: 1px solid var(--glass-border) !important;
}
.btn-ghost:hover {
  background: var(--red-glass);
  border-color: rgba(230,28,28,0.4) !important;
  transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0.85rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.nav-logo span { color: var(--red); }
.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-logo:hover::after { width: 100%; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
}
.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::before { width: 60%; }
.nav-links a.active { color: var(--red); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.35s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; animation: fadeIn 0.3s ease; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--white-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.mobile-menu a:hover { color: var(--red); transform: translateX(12px); }

/* ============================================================
   TICKER
============================================================ */
.ticker-wrap {
  background: var(--red);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 25s linear infinite;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
  padding: 0 2rem;
  color: rgba(255,255,255,0.9);
}
.ticker-dot {
  color: rgba(0,0,0,0.4);
  font-size: 1.2rem;
}

/* ============================================================
   SECTION TITLES
============================================================ */
.section-header {
  max-width: 700px;
  margin-bottom: 4rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.section-title span { color: var(--red); }
.section-desc {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.8;
}

/* ============================================================
   ABOUT SECTION (used on home + about page)
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-image-area { position: relative; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--black-soft), var(--black-card));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(230,28,28,0.15) 0%, transparent 60%);
}
.about-img-initials {
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(230,28,28,0.15);
  letter-spacing: -0.05em;
  z-index: 1;
}
.about-accent-box {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  padding: 1.5rem 2rem;
  z-index: 2;
  animation: borderGlow 3s ease-in-out infinite;
}
.about-accent-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--red);
  line-height: 1;
}
.about-accent-text {
  font-size: 0.78rem;
  color: var(--white-muted);
  margin-top: 0.25rem;
}
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.about-heading span { color: var(--red); }
.about-body {
  font-size: 0.95rem;
  color: var(--white-muted);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}
.about-tag {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  background: var(--white-faint);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  color: var(--white-dim);
  transition: all var(--transition);
}
.about-tag:hover {
  background: var(--red-glass);
  border-color: rgba(230,28,28,0.4);
  color: #fff;
}
.role-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}
.role-item {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--white-faint);
  transition: color var(--transition);
  cursor: none;
}
.role-item:hover { color: var(--red); }
.role-item.active { color: var(--red-light); }

/* ============================================================
   SERVICES GRID
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(230,28,28,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230,28,28,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(230,28,28,0.12);
}
.service-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgba(230,28,28,0.4);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--red-glass);
  border: 1px solid rgba(230,28,28,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 20px var(--red-glow);
  transform: rotate(5deg) scale(1.05);
}
.service-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--white-muted);
  line-height: 1.75;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition);
  text-decoration: none;
}
.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}
.service-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(230,28,28,0.15), rgba(0,0,0,0.2));
  border-color: rgba(230,28,28,0.3);
}
.service-feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(230,28,28,0.08);
  line-height: 1;
}

/* ============================================================
   FAQ
============================================================ */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}
.faq-left { position: sticky; top: 6rem; }
.faq-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
}
.faq-heading span { color: var(--red); }
.faq-sub {
  font-size: 0.9rem;
  color: var(--white-muted);
  margin-top: 1rem;
  line-height: 1.8;
}
.faq-counter {
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(230,28,28,0.06);
  line-height: 1;
  margin-top: 2rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  cursor: none;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-dim);
}
.faq-question:hover, .faq-question.active {
  background: var(--red-glass);
  border-color: rgba(230,28,28,0.35);
  color: #fff;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white-muted);
  transition: all var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-question.active .faq-icon {
  background: var(--red);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--glass-bg);
  border: 1px solid transparent;
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.875rem;
  color: var(--white-muted);
  line-height: 1.8;
}
.faq-answer.open {
  max-height: 300px;
  padding: 1.25rem 1.8rem;
  border-color: rgba(230,28,28,0.15);
}

/* ============================================================
   BLOG
============================================================ */
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all var(--transition);
  cursor: none;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230,28,28,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 20px rgba(230,28,28,0.08);
}
.blog-img-wrap {
  overflow: hidden;
  position: relative;
}
.blog-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(230,28,28,0.15) 0%, transparent 70%);
}
.blog-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  z-index: 1;
}
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  font-family: var(--font-head);
}
.blog-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white-dim);
  line-height: 1.45;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.blog-card:hover .blog-title { color: #fff; }
.blog-excerpt {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  flex: 1;
}
.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  margin-top: 1.25rem;
  transition: gap var(--transition);
}
.blog-read:hover { gap: 0.75rem; }
.blog-card-featured .blog-img-placeholder { aspect-ratio: 4/3; }
.blog-card-featured .blog-body { padding: 2rem; }
.blog-card-featured .blog-title { font-size: 1.3rem; }

/* ============================================================
   CONTACT
============================================================ */
.contact-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: radial-gradient(ellipse at 50% 100%, rgba(230,28,28,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  position: relative;
  z-index: 1;
}
.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.contact-heading span { color: var(--red); }
.contact-sub {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact-link-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-link-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
}
.contact-link-item:hover {
  transform: translateX(6px);
  background: var(--red-glass);
  border-color: rgba(230,28,28,0.35);
}
.contact-link-icon {
  width: 42px; height: 42px;
  background: var(--red-glass);
  border: 1px solid rgba(230,28,28,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.contact-link-item:hover .contact-link-icon {
  background: var(--red);
  box-shadow: 0 0 15px var(--red-glow);
}
.contact-link-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-head);
}
.contact-link-val {
  font-size: 0.95rem;
  color: var(--white-dim);
  font-weight: 400;
  margin-top: 0.1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
  display: block;
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #fff;
  transition: all var(--transition);
  outline: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus, .form-textarea:focus {
  border-color: rgba(230,28,28,0.5);
  background: rgba(230,28,28,0.05);
  box-shadow: 0 0 0 3px rgba(230,28,28,0.08);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 1rem; font-size: 0.9rem; letter-spacing: 0.12em; }

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--red); }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.75rem; }
.social-icon {
  width: 38px; height: 38px;
  background: var(--white-faint);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white-muted);
  text-decoration: none;
  transition: all var(--transition);
}
.social-icon:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px var(--red-glow);
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: #fff; gap: 0.75rem; }
.footer-links a::before { content: '→'; color: var(--red); font-size: 0.75rem; opacity: 0; transition: opacity var(--transition); }
.footer-links a:hover::before { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-copy span { color: var(--red); }
.footer-badge {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   SCROLL TO TOP
============================================================ */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--red-glow);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 500;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(230,28,28,0.5); }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 4rem;
  position: relative;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.page-hero-radial {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(230,28,28,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-breadcrumb {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-breadcrumb a {
  color: var(--white-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.page-breadcrumb a:hover { color: var(--red); }
.page-breadcrumb span { color: var(--red); }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}
.page-hero-title span { color: var(--red); }
.page-hero-sub {
  font-size: 1rem;
  color: var(--white-muted);
  max-width: 600px;
  margin-top: 1.5rem;
  line-height: 1.8;
}

/* ============================================================
   SERVICE DETAIL PAGE
============================================================ */
.service-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  margin: 2rem 0 1rem;
  color: var(--white);
}
.service-detail-content h2 span { color: var(--red); }
.service-detail-content p {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.service-process {
  margin: 3rem 0;
}
.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.process-step:last-child { border-bottom: none; }
.process-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(230,28,28,0.15);
  line-height: 1;
  min-width: 60px;
  transition: color var(--transition);
}
.process-step:hover .process-num { color: var(--red); }
.process-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white-dim);
  margin-bottom: 0.4rem;
}
.process-text {
  font-size: 0.875rem;
  color: var(--white-muted);
  line-height: 1.7;
}
.service-sidebar { position: sticky; top: 6rem; }
.sidebar-card {
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.sidebar-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 1.25rem;
}
.sidebar-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--white-muted);
  font-size: 0.875rem;
  font-family: var(--font-head);
  font-weight: 500;
  transition: all var(--transition);
  margin-bottom: 0.4rem;
}
.sidebar-service-link:hover, .sidebar-service-link.active {
  background: var(--red-glass);
  color: #fff;
  padding-left: 1.25rem;
}
.sidebar-service-link.active {
  color: var(--red-light);
  border-left: 2px solid var(--red);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card-featured { grid-column: span 2; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card-featured { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .faq-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .faq-left { position: static; }
  .service-detail-wrap { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .service-feature-visual { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-featured { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
}
