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

:root {
  --bg:          #0E0E0E;
  --bg-alt:      #0A0A0A;
  --bg-card:     #1A1A1A;
  --bg-surface:  #141414;
  --text:        #FFFFFF;
  --text-sec:    #CCCCCC;
  --text-muted:  #888888;
  --text-dim:    #555555;
  --border:      #2A2A2A;
  --gold:        #D4A843;
  --gold-light:  #E8C875;
  --red:         #C0392B;
  --red-dark:    #6B1515;
  --blue:        #93C5FD;
  --green:       #34D399;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 20px rgba(0,0,0,0.3);
  --transition:  0.3s ease;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.text-gold { color: var(--gold); }

/* ===== INTRO ANIMATION ===== */
.intro-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: #0A0A0A;
  display: flex; align-items: center; justify-content: center;
  /* Background fades via JS inline style, NOT opacity — logo must stay visible */
}
.intro-overlay.hidden { display: none !important; pointer-events: none; visibility: hidden; }
.intro-overlay.hidden * { display: none !important; visibility: hidden !important; opacity: 0 !important; }

.intro-particles {
  position: absolute; inset: 0;
}

.intro-logo-wrap {
  display: flex; flex-direction: column; align-items: center;
  z-index: 1; position: relative;
}
.intro-logo {
  height: 280px; width: auto;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 1s ease, filter 1s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(0.6);
}
.intro-logo.show {
  opacity: 1; filter: blur(0); transform: scale(1);
}

.intro-text {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.intro-text.show {
  opacity: 1; transform: translateY(0);
}

.intro-company {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px; font-weight: bold; letter-spacing: 8px;
  color: #888; text-transform: uppercase;
  text-shadow: 0 0 30px rgba(100,100,100,0.2);
}
.intro-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 300; letter-spacing: 6px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #6B1515, #C0392B, #E8A87C, #C0392B, #6B1515);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Intro overlay background fade is handled by JS inline styles */

/* Page content hidden until intro finishes */
body.intro-active .navbar,
body.intro-active .hero,
body.intro-active .about,
body.intro-active .services,
body.intro-active .industries,
body.intro-active .process,
body.intro-active .why-us,
body.intro-active .cta-banner,
body.intro-active .contact,
body.intro-active .footer {
  opacity: 0;
}
body.intro-active .navbar {
  transform: translateY(-100%);
}

/* Navbar entrance after intro */
.navbar.intro-enter {
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: navSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes navSlideIn {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Content cascade entrance */
.hero.intro-enter { animation: contentFadeIn 0.8s ease 0.1s forwards; }
.about.intro-enter,
.services.intro-enter,
.industries.intro-enter,
.process.intro-enter,
.why-us.intro-enter,
.cta-banner.intro-enter,
.contact.intro-enter,
.footer.intro-enter { opacity: 1 !important; }

@keyframes contentFadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,168,67,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
/* Logo: T/Indy mark + gray text + red tagline — matches app login screen */
.nav-logo {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
}
.logo-img {
  height: 38px; width: auto;
}
.logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 8px; font-weight: bold; letter-spacing: 3px;
  color: #888; text-transform: uppercase; line-height: 1;
  text-align: center;
}
.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 6px; font-weight: 300; letter-spacing: 3px;
  text-transform: uppercase; text-align: center; line-height: 1;
  background: linear-gradient(90deg, #6B1515, #C0392B, #E8A87C, #C0392B, #6B1515);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text br { display: none; }
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  padding: 8px 14px; font-size: 13px; font-weight: 500;
  color: var(--text-sec); transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold); }
.nav-portal-btn {
  background: linear-gradient(135deg, var(--red-dark), var(--red)) !important;
  color: #FFF !important; border-radius: 6px; font-weight: 600 !important;
  letter-spacing: 0.03em;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-portal-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(192,57,43,0.4);
}

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text-sec);
  margin: 5px 0; transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.hero-bg-effects { position: absolute; inset: 0; z-index: 0; }
.hero-gradient-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,168,67,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(192,57,43,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(147,197,253,0.03) 0%, transparent 40%),
    linear-gradient(180deg, var(--bg) 0%, rgba(14,14,14,0.7) 50%, var(--bg) 100%);
}
.particle-field { position: absolute; inset: 0; }

/* Animated grid lines in hero */
.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(212,168,67,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,67,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.hero-content {
  position: relative; z-index: 1; text-align: center;
  padding: 120px 24px 80px; max-width: 900px;
}

/* Hero entrance animations */
.animate-in {
  opacity: 0; transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }
.animate-delay-4 { animation-delay: 0.8s; }
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block; padding: 6px 20px; border-radius: 50px;
  border: 1px solid rgba(212,168,67,0.3); background: rgba(212,168,67,0.06);
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 32px;
}
.hero h1 { margin-bottom: 24px; }
.hero-line-1, .hero-line-2 { display: block; }
.hero-line-1 {
  font-family: var(--font-display); font-size: clamp(40px, 7vw, 72px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
}
.hero-line-2 {
  font-family: var(--font-display); font-size: clamp(40px, 7vw, 72px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px); color: var(--text-sec);
  max-width: 640px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px; font-size: 14px;
  font-weight: 600; letter-spacing: 0.02em; cursor: pointer;
  transition: all var(--transition); border: none; font-family: var(--font);
}
.btn-primary {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #FFF;
  box-shadow: 0 4px 15px rgba(192,57,43,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192,57,43,0.4);
}
.btn-glow { position: relative; overflow: hidden; }
.btn-glow::after {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
  animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
  0%, 100% { transform: translateX(-100%) rotate(45deg); }
  50% { transform: translateX(100%) rotate(45deg); }
}
.btn-ghost {
  background: transparent; color: var(--text-sec);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-phone { font-variant-numeric: tabular-nums; }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

/* Hero stats */
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-number, .stat-text {
  display: block; font-size: 36px; font-weight: 800;
  font-family: var(--font-display); color: var(--gold);
}
.stat-suffix { font-size: 36px; font-weight: 800; font-family: var(--font-display); color: var(--gold); }
.stat-label { display: block; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Scroll indicator — mouse icon */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid var(--text-dim);
  border-radius: 12px; position: relative;
}
.scroll-dot {
  width: 3px; height: 8px; background: var(--gold); border-radius: 3px;
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}
.scroll-text { font-size: 10px; color: var(--text-dim); letter-spacing: 0.15em; text-transform: uppercase; }

/* ===== SECTIONS COMMON ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; letter-spacing: -0.02em;
}
.section-sub {
  font-size: 17px; color: var(--text-muted); margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ===== SECTION DECORATIONS ===== */
.section-glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  pointer-events: none; filter: blur(80px);
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0; position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(20,16,10,1) 50%, var(--bg) 100%);
}
.about::before {
  content: ''; position: absolute; top: 100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.about::after {
  content: ''; position: absolute; bottom: -150px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: center; }
.about-lead { font-size: 20px; color: var(--text); margin-bottom: 20px; line-height: 1.7; }
.about-text p { color: var(--text-sec); margin-bottom: 16px; line-height: 1.7; }
.about-text strong { color: var(--gold); }

.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.highlight {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all var(--transition);
}
.highlight:hover { border-color: rgba(212,168,67,0.2); transform: translateY(-2px); }
.highlight-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); background: rgba(212,168,67,0.08);
  border-radius: 8px;
}
.highlight-icon svg { width: 18px; height: 18px; }
.highlight strong { display: block; font-size: 13px; color: var(--text); }
.highlight span { font-size: 12px; color: var(--text-muted); }

.about-visual { display: flex; justify-content: center; }
.about-visual-stack { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.experience-badge {
  width: 200px; height: 200px; border-radius: 50%; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-surface));
  border: 2px solid rgba(212,168,67,0.2);
}
.badge-ring {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.1);
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.06); opacity: 0.6; }
}
.exp-number {
  font-family: var(--font-display); font-size: 52px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.exp-text {
  font-size: 12px; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.1em; text-align: center; line-height: 1.4; margin-top: 4px;
}
.cert-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.cert-badge {
  display: flex; align-items: center; justify-content: center;
  padding: 10px 14px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--gold); transition: all var(--transition);
}
.cert-badge:hover { border-color: rgba(212,168,67,0.3); transform: translateY(-2px); }
.cert-badge svg { display: block; }

/* ===== SERVICES ===== */
.services {
  padding: 120px 0; position: relative;
  background:
    linear-gradient(180deg, var(--bg-alt) 0%, rgba(12,10,8,1) 50%, var(--bg-alt) 100%);
}
.services::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px;
}
a.service-card { text-decoration: none; color: inherit; }
.service-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: all 0.4s ease; position: relative; overflow: hidden;
  cursor: pointer; min-height: 320px;
}
/* Card hover glow handled by ::before and ::after */
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0); transition: transform 0.4s ease;
  transform-origin: left;
}
.service-card:hover {
  border-color: rgba(212,168,67,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4), 0 0 30px rgba(212,168,67,0.05);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px; margin-bottom: 20px; color: var(--gold);
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card p { font-size: 14px; color: var(--text-sec); line-height: 1.7; margin-bottom: 16px; flex-grow: 1; }

.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tags span {
  padding: 3px 10px; border-radius: 50px; font-size: 10px;
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  background: rgba(212,168,67,0.08); color: var(--gold);
  border: 1px solid rgba(212,168,67,0.15);
}
.card-arrow {
  display: block; margin-top: 16px; font-size: 13px; font-weight: 600;
  color: var(--text-dim); transition: color 0.3s ease, transform 0.3s ease;
}
.service-card:hover .card-arrow { color: var(--gold); transform: translateX(4px); }

/* ===== INDUSTRIES ===== */
.industries {
  padding: 120px 0; position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(14,12,18,1) 50%, var(--bg) 100%);
}
.industries::before {
  content: ''; position: absolute; bottom: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.industry-card {
  padding: 36px 28px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.4s ease; text-align: center;
}
.industry-card:hover {
  border-color: rgba(212,168,67,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.industry-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  color: var(--gold); opacity: 0.8;
  transition: all 0.4s ease;
}
.industry-card:hover .industry-icon { opacity: 1; transform: scale(1.1); }
.industry-icon svg { width: 100%; height: 100%; }
.industry-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.industry-card p { font-size: 13px; color: var(--text-sec); line-height: 1.7; }

/* ===== PROCESS ===== */
.process {
  padding: 120px 0; position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, var(--bg-alt) 0%, rgba(10,14,12,1) 50%, var(--bg-alt) 100%);
}
.process::before {
  content: ''; position: absolute; top: 50%; left: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.03) 0%, transparent 70%);
  pointer-events: none; transform: translateY(-50%);
}
.process-timeline { position: relative; max-width: 700px; margin: 0 auto; }
.process-line {
  position: absolute; left: 32px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--red-dark), transparent);
}
.process-step {
  display: flex; gap: 32px; margin-bottom: 48px; position: relative;
  transition: all 0.4s ease;
}
.process-step:last-child { margin-bottom: 0; }
.step-number {
  flex-shrink: 0; width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--gold); background: var(--bg-card);
  border: 2px solid rgba(212,168,67,0.25); border-radius: 50%;
  position: relative; z-index: 1;
  transition: all 0.4s ease;
}
.process-step:hover .step-number {
  background: rgba(212,168,67,0.1);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,168,67,0.15);
}
.step-content {
  padding-top: 12px;
}
.step-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 15px; color: var(--text-sec); line-height: 1.7; }

/* ===== WHY US ===== */
.why-us {
  padding: 120px 0; position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(16,12,10,1) 50%, var(--bg) 100%);
}
.why-us::before {
  content: ''; position: absolute; top: -100px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(147,197,253,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  padding: 36px 24px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.4s ease; text-align: center;
}
.why-card:hover {
  border-color: rgba(212,168,67,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.why-icon-wrap {
  width: 56px; height: 56px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); background: rgba(212,168,67,0.06);
  border-radius: 14px; border: 1px solid rgba(212,168,67,0.12);
  transition: all 0.4s ease;
}
.why-card:hover .why-icon-wrap {
  background: rgba(212,168,67,0.12);
  border-color: rgba(212,168,67,0.3);
  transform: scale(1.05);
}
.why-icon-wrap svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 16px; margin-bottom: 10px; font-weight: 700; }
.why-card p { font-size: 13px; color: var(--text-sec); line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--red-dark), var(--red), #E8A87C, var(--red), var(--red-dark));
  text-align: center;
}
.cta-bg-effects { position: absolute; inset: 0; }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 12px;
}
.cta-content p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-primary {
  background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.2);
  font-size: 20px; padding: 18px 40px;
}
.cta-banner .btn-primary:hover {
  background: rgba(0,0,0,0.5);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.cta-banner .btn-ghost {
  border-color: rgba(255,255,255,0.3); color: #FFF;
}
.cta-banner .btn-ghost:hover {
  border-color: #FFF; background: rgba(255,255,255,0.1);
}

/* ===== CONTACT ===== */
.contact { padding: 120px 0; background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }

.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,168,67,0.08); border-radius: 10px; color: var(--gold);
  transition: all var(--transition);
}
.contact-item:hover .contact-icon { background: rgba(212,168,67,0.15); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--text-sec); line-height: 1.5; }
.contact-item a { color: var(--gold); transition: color var(--transition); }
.contact-item a:hover { color: var(--gold-light); }

.contact-socials { display: flex; gap: 12px; margin-top: 16px; margin-bottom: 24px; }
.social-link {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
  color: var(--text-muted); transition: all var(--transition);
}
.social-link:hover { color: var(--gold); border-color: rgba(212,168,67,0.3); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }

/* Map placeholder */
.contact-map { margin-top: 8px; }
.map-placeholder {
  height: 160px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--text-dim);
}
.map-placeholder span { font-size: 13px; font-weight: 500; }

/* Contact form */
.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; color: var(--text-sec);
  margin-bottom: 6px; letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 6px;
  border: 1px solid var(--border); background: var(--bg-surface);
  color: var(--text); font-family: var(--font); font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
}
.form-group select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-group select option { background: var(--bg-card); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; font-size: 12px; color: var(--text-dim); margin-top: 12px; }

/* ===== FOOTER ===== */
.footer { padding: 80px 0 40px; background: var(--bg); border-top: 1px solid var(--border); }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1.6fr 0.8fr 0.8fr; gap: 40px;
  margin-bottom: 40px; text-align: center;
}
.footer-services-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px;
}
.footer-logo {
  height: 55px; margin: 0 auto 6px;
}
.footer-logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 11px; font-weight: bold; letter-spacing: 3px;
  color: #888; text-transform: uppercase; margin-bottom: 12px;
  text-align: center;
}
.footer-brand { text-align: center; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.footer-links h4, .footer-contact h4 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-services-cols ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 8px; }
.footer-contact a { color: var(--gold); }
.footer-hours { font-size: 13px; }
.footer-hours strong { color: var(--text-sec); }

.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--border); text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-dim); }

/* ===== GHOST WATERMARKS ===== */
.section-watermark {
  position: absolute; pointer-events: none; z-index: 0;
  overflow: visible;
}
.watermark-right {
  top: 50%; right: -60px; transform: translateY(-50%);
}
.watermark-left {
  top: 50%; left: -60px; transform: translateY(-50%);
}
.watermark-center {
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.watermark-top-right {
  top: -40px; right: -40px;
}
.watermark-bottom-left {
  bottom: -40px; left: -40px;
}
.watermark-img {
  height: 350px; width: auto; opacity: 0.05;
  filter: grayscale(0.8);
}
.watermark-img.watermark-huge {
  height: 500px; opacity: 0.04;
}
.watermark-svg {
  width: 380px; height: 380px; opacity: 0.05;
  color: var(--gold);
}
.watermark-svg.watermark-red {
  color: var(--red);
  opacity: 0.035;
}
.watermark-svg.watermark-lg {
  width: 450px; height: 450px;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  mix-blend-mode: overlay;
}

/* ===== NEWS TICKER BAR ===== */
.marquee-bar {
  overflow: hidden; background: var(--bg-surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 20px 0 14px; position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.marquee-label {
  font-size: 9px; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; margin-top: 10px;
  background: linear-gradient(90deg, #6B1515, #C0392B, #E8A87C, #C0392B, #6B1515);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.marquee-track {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 60s linear infinite;
  width: max-content;
}
.ticker-item {
  font-size: 15px; font-weight: 400; letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 0 28px;
}
.marquee-dot {
  display: inline-block; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%; opacity: 0.4;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== GRADIENT SECTION DIVIDERS ===== */
.about::before,
.services::after,
.industries::after,
.why-us::after {
  /* Keep existing pseudo-elements but add gradient borders */
}
.services { border-top: 1px solid transparent; background-image: linear-gradient(var(--bg-alt), var(--bg-alt)), linear-gradient(90deg, transparent, rgba(212,168,67,0.15), transparent); background-origin: border-box; background-clip: padding-box, border-box; }
.industries { border-top: 1px solid transparent; background-image: linear-gradient(var(--bg), var(--bg)), linear-gradient(90deg, transparent, rgba(192,57,43,0.15), transparent); background-origin: border-box; background-clip: padding-box, border-box; }

/* ===== TRUSTED BY STRIP ===== */
.trust-bar {
  padding: 60px 0; background: var(--bg-surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.trust-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,168,67,0.02) 0%, transparent 40%, rgba(192,57,43,0.02) 100%);
}
.trust-header {
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 32px; position: relative;
}
.trust-grid {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 20px;
  position: relative;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 20px; border-radius: var(--radius);
  color: var(--text-dim);
  transition: all 0.3s ease; cursor: default;
  min-width: 100px;
}
.trust-item:hover {
  color: var(--gold); transform: translateY(-2px);
}
.trust-item svg {
  opacity: 0.5; transition: opacity 0.3s ease;
}
.trust-item:hover svg { opacity: 0.9; }
.trust-item span {
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== PARALLAX DIVIDER ===== */
.parallax-divider {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0A0A0A 0%, #141414 50%, #0A0A0A 100%);
  border-top: 1px solid rgba(212,168,67,0.08);
  border-bottom: 1px solid rgba(212,168,67,0.08);
}
.parallax-divider::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(212,168,67,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(192,57,43,0.04) 0%, transparent 60%);
}
.parallax-content {
  text-align: center; position: relative; z-index: 1;
}
.parallax-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(24px, 3.5vw, 40px); color: var(--text-dim);
  letter-spacing: 0.02em; line-height: 1.4;
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.chat-widget.visible {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.chat-toggle {
  width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #FFF; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(192,57,43,0.5);
  transition: all 0.3s ease; position: relative;
}
.chat-toggle:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(192,57,43,0.6); }
.chat-label {
  position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px;
  padding: 6px 12px; font-size: 13px; font-weight: 600; color: var(--text-sec);
  white-space: nowrap; font-family: var(--font);
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.chat-toggle:hover .chat-label { opacity: 1; }
.chat-notify-dot {
  display: none; position: absolute; top: 2px; right: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #EF4444; border: 2px solid var(--bg);
  animation: chatPulse 1.5s ease infinite;
}
.chat-notify-dot.active { display: block; }
.chat-widget.open .chat-notify-dot { display: none; }
@keyframes chatPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.chat-icon-close { display: none; }
.chat-widget.open .chat-icon-open { display: none; }
.chat-widget.open .chat-icon-close { display: block; }

.chat-panel {
  display: none; position: absolute; bottom: 68px; right: 0;
  width: 360px; height: 480px; border-radius: 16px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: 0 16px 60px rgba(0,0,0,0.5);
  flex-direction: column;
}
.chat-widget.open .chat-panel { display: flex; }

.chat-header {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 20px; background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.chat-header-logo { height: 64px; width: auto; }
.chat-header-title { font-size: 14px; font-weight: 700; color: var(--text); text-align: center; }
.chat-header-status { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.chat-close-btn {
  position: absolute; top: 10px; right: 10px;
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  padding: 6px; border-radius: 6px; transition: all 0.2s ease;
}
.chat-close-btn:hover { color: var(--text); background: rgba(255,255,255,0.08); }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: inline-block; }

.chat-messages {
  flex: 1; overflow-y: auto; padding: 20px 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.chat-msg { max-width: 85%; }
.chat-msg-them { align-self: flex-start; }
.chat-msg-you { align-self: flex-end; }
.chat-msg-bubble {
  padding: 10px 14px; border-radius: 12px; font-size: 14px; line-height: 1.5;
}
.chat-msg-them .chat-msg-bubble {
  background: var(--bg-surface); color: var(--text-sec);
  border-bottom-left-radius: 4px;
}
.chat-msg-you .chat-msg-bubble {
  background: linear-gradient(135deg, var(--red-dark), var(--red)); color: #FFF;
  border-bottom-right-radius: 4px;
}
.chat-msg-time { font-size: 10px; color: var(--text-dim); margin-top: 4px; padding: 0 4px; }
.chat-msg-you .chat-msg-time { text-align: right; }

.chat-input-area {
  padding: 12px 16px; border-top: 1px solid var(--border); background: var(--bg-surface);
}
.chat-name-prompt { display: flex; flex-direction: column; gap: 8px; }
.chat-name-input {
  padding: 10px 14px; border-radius: 8px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font-family: var(--font); font-size: 14px;
  outline: none;
}
.chat-name-input:focus { border-color: var(--gold); }
.chat-start-btn {
  padding: 10px; border-radius: 8px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--red-dark), var(--red)); color: #FFF;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  transition: all 0.2s ease;
}
.chat-start-btn:hover { transform: translateY(-1px); }

.chat-compose { display: flex; gap: 8px; }
.chat-text-input {
  flex: 1; padding: 10px 14px; border-radius: 8px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font-family: var(--font); font-size: 14px;
  outline: none;
}
.chat-text-input:focus { border-color: var(--gold); }
.chat-send-btn {
  width: 40px; height: 40px; border-radius: 8px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--red-dark), var(--red)); color: #FFF;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.chat-send-btn:hover { transform: scale(1.05); }

@media (max-width: 768px) {
  .chat-panel { width: calc(100vw - 48px); right: -12px; height: 420px; }
  .chat-label { display: none; }
}

/* ===== ENHANCED CARD GLOW ON HOVER ===== */
.service-card::after {
  content: ''; position: absolute; inset: -1px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212,168,67,0.15), transparent 40%, transparent 60%, rgba(192,57,43,0.15));
  z-index: -1; opacity: 0; transition: opacity 0.4s ease;
}
.service-card:hover::after { opacity: 1; }

.industry-card::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.industry-card { position: relative; overflow: hidden; }
.industry-card:hover::after { opacity: 0.6; }

/* ===== SECTION HEADER TEXT REVEAL ===== */
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; letter-spacing: -0.02em;
  background-size: 200% 100%;
  animation: none;
}
.section-header.visible h2 {
  animation: textShimmer 3s ease forwards;
}
@keyframes textShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ===== SUBPAGES ===== */
.subpage .navbar { background: rgba(10,10,10,0.95); }

.page-header {
  padding: 140px 0 80px; position: relative; overflow: hidden;
  background: var(--bg);
}
.page-header-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 60%, rgba(212,168,67,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(192,57,43,0.04) 0%, transparent 50%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header-icon {
  width: 64px; height: 64px; color: var(--gold); margin-bottom: 20px; opacity: 0.7;
}
.page-header-icon svg { width: 100%; height: 100%; }
.page-title {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px;
}
.page-subtitle {
  font-size: 18px; color: var(--text-sec); max-width: 640px; line-height: 1.7;
  margin-bottom: 24px;
}
.page-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  padding: 4px 14px; border-radius: 50px; font-size: 11px;
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  background: rgba(212,168,67,0.08); color: var(--gold);
  border: 1px solid rgba(212,168,67,0.15);
}

/* Service detail layout */
.service-detail-section {
  padding: 80px 0 120px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-alt) 0%, rgba(12,10,8,1) 50%, var(--bg-alt) 100%);
}
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 320px; gap: 60px;
}
.detail-block { margin-bottom: 40px; }
.detail-block h2 {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  margin-bottom: 16px; color: var(--text);
}
.detail-block p {
  font-size: 16px; color: var(--text-sec); line-height: 1.8;
}

.sidebar-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 16px; font-weight: 700; margin-bottom: 10px;
}
.sidebar-card p {
  font-size: 14px; color: var(--text-sec); line-height: 1.6;
}
.sidebar-services { list-style: none; }
.sidebar-services li { margin-bottom: 8px; }
.sidebar-services a {
  font-size: 14px; color: var(--text-muted); transition: color var(--transition);
}
.sidebar-services a:hover { color: var(--gold); }

/* Quote page */
.quote-section {
  padding: 80px 0 120px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-alt) 0%, rgba(14,12,10,1) 50%, var(--bg-alt) 100%);
}
.quote-grid {
  display: grid; grid-template-columns: 1fr 340px; gap: 48px;
}
.quote-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.quote-form-title {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  margin-bottom: 28px; color: var(--gold);
}
.quote-sidebar { display: flex; flex-direction: column; gap: 20px; }
.quote-info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.quote-info-card h4 {
  font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--gold);
}
.quote-info-card p {
  font-size: 14px; color: var(--text-sec); line-height: 1.6;
}
.quote-benefits { list-style: none; }
.quote-benefits li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-sec); margin-bottom: 10px;
}
.quote-benefits svg { color: var(--gold); flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
    padding: 24px; gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; font-size: 15px; }
  .nav-portal-btn { text-align: center; margin-top: 8px; }

  .hero-content { padding: 100px 20px 60px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; }

  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .about-highlights { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }
  .about, .services, .industries, .process, .why-us, .contact { padding: 80px 0; }
  .trust-grid { gap: 12px; }
  .trust-item { min-width: 80px; padding: 12px 14px; }
  .floating-cta span { display: none; }
  .floating-cta { padding: 16px; border-radius: 50%; }
  .marquee-track span { font-size: 11px; letter-spacing: 3px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .page-header { padding: 120px 0 60px; }
  .watermark-right { right: 10px; }
  .watermark-left { left: 10px; }
  .watermark-img { height: 180px; }
  .watermark-svg { width: 200px; height: 200px; }
  .contact-form { padding: 24px; }

  /* Mobile intro animation */
  .intro-logo { height: 140px; }
  .intro-company { font-size: 16px; letter-spacing: 4px; }
  .intro-tagline { font-size: 9px; letter-spacing: 3px; }
  .intro-text { margin-top: 12px; gap: 6px; }

  /* Mobile ticker */
  .ticker-item { font-size: 12px; padding: 0 20px; }
  .marquee-label { font-size: 7px; letter-spacing: 3px; }
  .experience-badge { width: 160px; height: 160px; }
  .exp-number { font-size: 40px; }

  .process-line { left: 28px; }
  .step-number { width: 56px; height: 56px; font-size: 18px; }
  .process-step { gap: 20px; }
}
