/* ===== MATRIX PRINT & SIGNS — DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand-blue: #2563eb;
  --brand-red: #dc2626;
  --brand-yellow: #eab308;
  --bg-dark: #0a0a0f;
  --bg-card: #111118;
  --bg-card-hover: #1a1a24;
  --surface: #16161f;
  --border: rgba(255,255,255,0.06);
  --text-primary: #f1f1f4;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --gradient-brand: linear-gradient(135deg, var(--brand-blue), var(--brand-red), var(--brand-yellow));
  --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #111118 100%);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-glow: 0 0 60px rgba(37,99,235,0.15), 0 0 120px rgba(220,38,38,0.08);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; line-height: 1.1; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* --- Utility --- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 120px 0; }
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  font-size: 0.8rem; font-weight: 600;
  color: var(--brand-blue); text-transform: uppercase; letter-spacing: 2px;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-blue); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 100px;
  background: var(--gradient-brand); color: #fff;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.5px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.btn-primary:hover::before { background: rgba(255,255,255,0.15); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,99,235,0.3); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 100px;
  background: transparent; color: var(--text-primary);
  font-weight: 600; font-size: 1rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--brand-blue); background: rgba(37,99,235,0.08); }

/* --- Preloader --- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { width: 120px; animation: loader-pulse 1.5s ease-in-out infinite; }
@keyframes loader-pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.7; } }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  background: rgba(10,10,15,0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.nav.scrolled { padding: 14px 0; border-bottom-color: var(--border); background: rgba(10,10,15,0.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 48px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--text-secondary);
  transition: var(--transition); position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-brand);
  transition: var(--transition);
}
.nav-links > li > a:hover::after { width: 100%; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: rgba(17,17,24,0.95); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 16px; min-width: 240px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition); list-style: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  display: grid; grid-template-columns: 1fr; gap: 4px;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 16px; border-radius: 6px; font-size: 0.85rem; }
.dropdown-menu a:hover { background: rgba(37,99,235,0.1); color: #fff; padding-left: 20px; }
.caret { font-size: 0.7rem; margin-left: 4px; }

.nav-cta {
  padding: 10px 28px; border-radius: 100px;
  background: var(--gradient-brand); color: #fff !important;
  font-weight: 700; font-size: 0.85rem;
  transition: var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(37,99,235,0.3); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--text-primary); transition: var(--transition); }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 60px;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-grid-pattern {
  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: 60px 60px;
}
.hero-glow-1 {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,38,38,0.12) 0%, rgba(234,179,8,0.08) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text-content { text-align: left; }
.hero-text-content .badge { margin-bottom: 24px; }
.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -2px;
  line-height: 1.05;
}
.word-rotator {
  display: inline-grid;
  overflow: hidden;
  height: 1.2em;
  vertical-align: bottom;
}
.word-rotator span {
  grid-area: 1 / 1;
  animation: rotate-word 9s infinite;
  opacity: 0;
  transform: translateY(100%);
}
.word-rotator span:nth-child(1) { animation-delay: 0s; }
.word-rotator span:nth-child(2) { animation-delay: 3s; }
.word-rotator span:nth-child(3) { animation-delay: 6s; }
@keyframes rotate-word {
  0%, 5% { opacity: 0; transform: translateY(100%); }
  10%, 25% { opacity: 1; transform: translateY(0); }
  30%, 100% { opacity: 0; transform: translateY(-100%); }
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }
.glow-btn { box-shadow: 0 0 20px rgba(37,99,235,0.4); }

.hero-stats {
  display: flex; justify-content: flex-start; gap: 40px; margin-top: 60px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.hero-stat h3 { font-size: 2.5rem; font-weight: 800; }
.hero-stat p { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 2px; }

/* Floating Visuals */
.hero-visuals {
  position: relative;
  height: 600px;
  perspective: 1000px;
}
.hero-collage {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.collage-item {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.collage-item img { width: 100%; height: 100%; object-fit: contain; background: var(--bg-card); }
.item-1 {
  top: 10%; left: 0; width: 60%; height: 50%; z-index: 2;
  animation: float-slow 6s ease-in-out infinite;
}
.item-2 {
  top: 0; right: 0; width: 50%; height: 45%; z-index: 1;
  animation: float-slow 7s ease-in-out infinite reverse;
}
.item-3 {
  bottom: 5%; right: 10%; width: 65%; height: 45%; z-index: 3;
  animation: float-slow 8s ease-in-out infinite 1s;
}
.item-4 {
  top: -5%; left: 10%; width: 45%; height: 35%; z-index: 0;
  animation: float-slow 9s ease-in-out infinite 0.5s;
}
.item-5 {
  bottom: -10%; left: 5%; width: 40%; height: 35%; z-index: 2;
  animation: float-slow 7s ease-in-out infinite 1.5s;
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-badge-float {
  position: absolute; bottom: 20%; left: -5%;
  background: rgba(10,10,15,0.85); backdrop-filter: blur(20px);
  padding: 16px 24px; border-radius: var(--radius-md);
  border: 1px solid var(--border); z-index: 4;
  display: flex; flex-direction: column; gap: 4px;
  animation: float-slow 5s ease-in-out infinite 2s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.hero-badge-float .stars { color: var(--brand-yellow); font-size: 1.2rem; letter-spacing: 2px; }
.hero-badge-float span { font-weight: 700; font-size: 0.9rem; }

/* --- Scrolling Marquee --- */
.marquee-section { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.marquee-track {
  display: flex; gap: 48px; animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 700;
  color: var(--text-muted); white-space: nowrap;
  display: flex; align-items: center; gap: 16px;
  text-transform: uppercase; letter-spacing: 3px;
}
.marquee-item .sep { color: var(--brand-red); font-size: 0.6rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Services Grid --- */
.services-section { background: var(--gradient-dark); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 72px; }
.section-header .badge { margin-bottom: 20px; }
.section-header h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; }
.section-header p { color: var(--text-secondary); font-size: 1.1rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(37,99,235,0.08) 100%);
  opacity: 0; transition: opacity 0.5s ease; pointer-events: none; z-index: 1;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37,99,235,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(37,99,235,0.15);
}
.service-card-image {
  height: 220px; overflow: hidden; position: relative;
}
.service-card-image img {
  width: 100%; height: 100%; object-fit: contain; background: var(--bg-card);
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.08); }
.service-card-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 50%; background: linear-gradient(transparent, var(--bg-card));
}
.service-card-body {
  padding: 24px 28px 28px; position: relative; z-index: 2; margin-top: -20px;
}
.service-card-body h3 {
  font-size: 1.2rem; font-weight: 700; margin-bottom: 8px;
}
.service-card-body p {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6;
}

/* --- Value Add Section --- */
.value-add-section { background: var(--bg-dark); border-top: 1px solid var(--border); }
.value-add-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.value-content h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; margin: 16px 0 24px; letter-spacing: -1px; }
.value-content > p { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.7; margin-bottom: 40px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(37,99,235,0.1); color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; flex-shrink: 0;
  border: 1px solid rgba(37,99,235,0.2);
}
.feature-list h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.feature-list p { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 0; }
.value-images { position: relative; }
.img-wrapper { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.main-img { width: 85%; }
.floating-img {
  position: absolute; bottom: -30px; right: 0; width: 50%;
  border: 8px solid var(--bg-dark); border-radius: var(--radius-lg); box-shadow: var(--shadow-glow);
}

/* --- Portfolio Marquee --- */
.showcase-section { background: var(--bg-dark); overflow: hidden; }
.gallery-marquee-container { width: 100%; padding: 20px 0; }
.gallery-marquee {
  display: flex; gap: 32px; width: max-content;
  animation: scroll-gallery 40s linear infinite;
}
.gallery-marquee:hover { animation-play-state: paused; }
@keyframes scroll-gallery { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.gallery-item {
  width: 400px; height: 500px; border-radius: var(--radius-lg); overflow: hidden; position: relative;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.gallery-item img { width: 100%; height: 100%; object-fit: contain; background: var(--bg-card); filter: brightness(0.7); transition: var(--transition); }
.gallery-item:hover img { filter: brightness(1.1); transform: scale(1.05); }
.g-overlay {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(37,99,235,0.8) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 32px;
  opacity: 0; transform: translateY(20px); transition: var(--transition);
}
.gallery-item:hover .g-overlay { opacity: 1; transform: translateY(0); }
.g-overlay h4 { font-size: 1.5rem; font-weight: 800; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

/* --- Process Timeline --- */
.process-section { background: var(--surface); }
.timeline-container { position: relative; max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; }
.timeline-line { position: absolute; top: 30px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--brand-blue), var(--brand-red), var(--brand-yellow)); opacity: 0.3; z-index: 1; }
.timeline-step { position: relative; z-index: 2; flex: 1; text-align: center; }
.t-node {
  width: 64px; height: 64px; margin: 0 auto 32px;
  background: var(--bg-dark); border: 2px solid var(--brand-blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 900; color: #fff;
  box-shadow: 0 0 20px rgba(37,99,235,0.4); transition: var(--transition);
}
.timeline-step:hover .t-node { transform: scale(1.15); background: var(--brand-blue); box-shadow: 0 0 40px rgba(37,99,235,0.6); }
.timeline-step:nth-child(3) .t-node { border-color: var(--brand-red); box-shadow: 0 0 20px rgba(220,38,38,0.4); }
.timeline-step:nth-child(3):hover .t-node { background: var(--brand-red); box-shadow: 0 0 40px rgba(220,38,38,0.6); }
.timeline-step:nth-child(4) .t-node { border-color: var(--brand-yellow); box-shadow: 0 0 20px rgba(234,179,8,0.4); }
.timeline-step:nth-child(4):hover .t-node { background: var(--brand-yellow); box-shadow: 0 0 40px rgba(234,179,8,0.6); }
.t-content h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 800; }
.t-content p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }

/* --- Testimonial Carousel --- */
.testimonials-section { background: var(--bg-dark); overflow: hidden; }
.testimonial-carousel {
  display: flex; gap: 32px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 20px 0 60px; scrollbar-width: none;
}
.testimonial-carousel::-webkit-scrollbar { display: none; }
.t-card {
  min-width: 400px; scroll-snap-align: center;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 48px; position: relative; transition: var(--transition);
}
.t-card:hover { transform: translateY(-10px); border-color: rgba(220,38,38,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.t-quote-mark { position: absolute; top: 20px; right: 30px; font-family: 'Outfit', sans-serif; font-size: 6rem; line-height: 1; color: rgba(255,255,255,0.03); }
.t-stars { color: var(--brand-yellow); font-size: 1.2rem; margin-bottom: 24px; letter-spacing: 4px; }
.t-card p { font-size: 1.15rem; color: var(--text-primary); line-height: 1.8; margin-bottom: 32px; }
.t-author { display: flex; flex-direction: column; }
.t-author strong { font-size: 1.1rem; font-weight: 800; color: var(--brand-blue); }
.t-author span { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* --- CTA Section --- */
.cta-section { position: relative; overflow: hidden; }
.cta-box {
  padding: 0; border-radius: var(--radius-xl);
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.cta-animated-bg {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(37,99,235,0.1) 0%, rgba(220,38,38,0.1) 50%, rgba(234,179,8,0.1) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite; z-index: 1;
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cta-content-wrapper {
  position: relative; z-index: 2; display: flex;
  align-items: center; justify-content: space-between;
  padding: 80px 60px; gap: 40px; backdrop-filter: blur(10px);
}
.cta-text { text-align: left; flex: 1; }
.cta-text h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 16px; font-weight: 800; line-height: 1.1; }
.cta-text p { font-size: 1.2rem; color: var(--text-primary); opacity: 0.9; margin-bottom: 0; line-height: 1.6; }
.cta-actions { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-large {
  padding: 16px 32px; border-radius: 100px;
  display: flex; align-items: center; gap: 16px;
}
.btn-large .icon {
  font-size: 1.5rem; background: rgba(255,255,255,0.2);
  width: 48px; height: 48px; display: flex;
  align-items: center; justify-content: center; border-radius: 50%;
}
.btn-text { display: flex; flex-direction: column; align-items: flex-start; }
.btn-text span { font-size: 0.75rem; font-weight: 600; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }
.btn-text strong { font-size: 1.1rem; font-weight: 800; line-height: 1.2; }

/* --- Mega Footer --- */
.footer {
  position: relative; background: #050508; border-top: 1px solid rgba(255,255,255,0.05);
  padding: 100px 0 40px; overflow: hidden;
}
.mega-watermark {
  position: absolute; bottom: -5%; left: 50%; transform: translateX(-50%);
  font-family: 'Outfit', sans-serif; font-size: 25vw; font-weight: 900;
  color: rgba(255,255,255,0.02); line-height: 1; white-space: nowrap; pointer-events: none; z-index: 1;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 80px; }
.footer-brand img { height: 50px; margin-bottom: 24px; }
.footer-brand p { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; max-width: 320px; margin-bottom: 32px; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; transition: var(--transition); border: 1px solid transparent; }
.footer-socials a:hover { background: var(--brand-blue); color: #fff; transform: translateY(-4px); box-shadow: 0 10px 20px rgba(37,99,235,0.3); }

.footer h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 24px; color: #fff; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-links a { color: var(--text-secondary); font-size: 0.95rem; transition: var(--transition); display: inline-block; }
.footer-links a:hover { color: var(--brand-yellow); transform: translateX(5px); }

.f-contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; color: var(--text-secondary); }
.f-contact-item .icon { color: var(--brand-red); font-size: 1.2rem; }
.f-contact-item a { color: var(--text-secondary); transition: var(--transition); }
.f-contact-item a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-muted); font-size: 0.9rem;
}
.f-bottom-links { display: flex; gap: 24px; }
.f-bottom-links a { color: var(--text-muted); transition: var(--transition); }
.f-bottom-links a:hover { color: #fff; }

/* --- Lightbox --- */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; cursor: pointer; border: none;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* --- Animations --- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-wrapper { grid-template-columns: 1fr; text-align: center; }
  .hero-text-content { text-align: center; }
  .hero p { margin: 0 auto 40px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visuals { height: 400px; margin-top: 40px; }
  .cta-content-wrapper { flex-direction: column; text-align: center; padding: 60px 30px; }
  .cta-text { text-align: center; }
  
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .value-add-grid { grid-template-columns: 1fr; gap: 48px; }
  .main-img { width: 100%; }
  .floating-img { width: 40%; }
  
  .timeline-container { flex-direction: column; gap: 40px; }
  .timeline-line { top: 0; bottom: 0; left: 30px; width: 2px; height: auto; }
  .timeline-step { display: flex; text-align: left; gap: 24px; align-items: center; }
  .t-node { margin: 0; flex-shrink: 0; }
  
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,15,0.98); backdrop-filter: blur(20px);
    padding: 32px 24px; gap: 24px;
    border-bottom: 1px solid var(--border); max-height: 80vh; overflow-y: auto;
  }
  .dropdown-menu { 
    position: relative; top: 0; opacity: 1; visibility: visible; transform: none; 
    box-shadow: none; padding: 10px 0 10px 20px; background: rgba(255,255,255,0.03); 
    border: none; border-left: 2px solid var(--brand-blue); border-radius: 0 8px 8px 0; margin-top: 10px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .dropdown-menu a { padding: 10px 16px; font-size: 0.95rem; }
  
  .hero h1 { font-size: 2.6rem; }
  .hero-stats { flex-direction: column; gap: 24px; align-items: center; }
  .hero-visuals { height: 300px; margin-top: 20px; }
  
  .services-grid { grid-template-columns: 1fr; }
  
  .gallery-item { width: 300px; height: 400px; }
  .t-card { min-width: 300px; padding: 32px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-content-wrapper { padding: 48px 24px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .btn-large { width: 100%; justify-content: center; }
  .section-padding { padding: 80px 0; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

/* ===== FLOATING ACTION MENU ===== */
.fam-container {
  position: fixed; bottom: 30px; right: 30px; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 16px;
}
.fam-menu {
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: bottom center;
}
.fam-container:hover .fam-menu, .fam-container.active .fam-menu {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.fam-item {
  position: relative; width: 50px; height: 50px; border-radius: 50%;
  background: rgba(17,17,24,0.85); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: var(--transition);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5); text-decoration: none;
}
.fam-icon { width: 24px; height: 24px; transition: var(--transition); }
.fam-whatsapp:hover {
  background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.4);
  color: #25D366; box-shadow: 0 0 30px rgba(37,211,102,0.3); transform: scale(1.1);
}
.fam-call:hover {
  background: rgba(37,99,235,0.15); border-color: rgba(37,99,235,0.4);
  color: #2563eb; box-shadow: 0 0 30px rgba(37,99,235,0.3); transform: scale(1.1);
}
.fam-tooltip {
  position: absolute; right: calc(100% + 16px); top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(17,17,24,0.9); backdrop-filter: blur(10px);
  border: 1px solid var(--border); padding: 6px 14px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-primary);
  white-space: nowrap; opacity: 0; visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); pointer-events: none;
}
.fam-item:hover .fam-tooltip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }
.fam-trigger {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gradient-brand); border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,99,235,0.4), inset 0 0 20px rgba(255,255,255,0.2);
  cursor: pointer; transition: var(--transition); position: relative; outline: none;
}
.fam-trigger::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: var(--gradient-brand); opacity: 0.4; filter: blur(10px);
  transition: var(--transition); z-index: -1;
}
.fam-trigger:hover::before { opacity: 0.8; filter: blur(15px); }
.fam-trigger:hover { transform: scale(1.05); }
.fam-icon-main { width: 28px; height: 28px; transition: var(--transition); position: absolute; }
.fam-icon-close { width: 28px; height: 28px; transition: var(--transition); position: absolute; opacity: 0; transform: rotate(-90deg) scale(0.5); }
.fam-container:hover .fam-icon-main, .fam-container.active .fam-icon-main { opacity: 0; transform: rotate(90deg) scale(0.5); }
.fam-container:hover .fam-icon-close, .fam-container.active .fam-icon-close { opacity: 1; transform: rotate(0) scale(1); }

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
.breadcrumbs {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  margin-bottom: 24px; z-index: 2; position: relative; text-transform: uppercase; letter-spacing: 1px;
}
.breadcrumbs a { color: var(--brand-blue); transition: var(--transition); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { color: var(--border); font-size: 0.8rem; }

.page-hero {
  min-height: 60vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 140px; padding-bottom: 80px;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: contain; background: var(--bg-card); opacity: 0.15; mix-blend-mode: luminosity; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 40%, var(--bg-dark) 100%),
              radial-gradient(circle at right, rgba(37,99,235,0.1) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }
.page-hero h1 { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px; }
.page-hero p { font-size: 1.25rem; color: var(--text-secondary); line-height: 1.7; }

.story-section { background: var(--surface); position: relative; overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-content h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 24px; letter-spacing: -1px; }
.story-content p { color: var(--text-secondary); margin-bottom: 20px; font-size: 1.1rem; line-height: 1.8; }
.story-images { position: relative; }
.story-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.story-img-float { 
  position: absolute; bottom: -40px; left: -40px; width: 60%;
  border-radius: var(--radius-lg); border: 10px solid var(--surface);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6); overflow: hidden;
}

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.value-card {
  background: var(--bg-card); padding: 40px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); position: relative; overflow: hidden; transition: var(--transition);
}
.value-card:hover { transform: translateY(-10px); border-color: rgba(37,99,235,0.4); box-shadow: 0 20px 40px rgba(37,99,235,0.15); }
.value-icon {
  width: 60px; height: 60px; border-radius: 16px; background: rgba(37,99,235,0.1);
  color: var(--brand-blue); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 1.8rem; border: 1px solid rgba(37,99,235,0.2);
}
.value-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.value-card p { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; }

.urgent-section { 
  background: linear-gradient(135deg, rgba(10,10,15,0.92), rgba(17,17,24,0.95)), url('../assets/images/Vehicle_branding_1.jpg') center/cover;
  background-attachment: fixed;
  border-top: 1px solid rgba(220,38,38,0.2); border-bottom: 1px solid rgba(220,38,38,0.2);
  position: relative; padding: 100px 0;
}
.urgent-glow { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(220,38,38,0.15) 0%, transparent 60%); pointer-events: none; }
.urgent-content { text-align: center; max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.urgent-content h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900; margin-bottom: 24px; line-height: 1.1; }
.urgent-content p { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 40px; opacity: 0.9; }

.industries-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 40px; }
.industry-badge {
  padding: 14px 28px; border-radius: 100px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); font-weight: 600; color: var(--text-secondary);
  transition: var(--transition); display: flex; align-items: center; gap: 12px; font-size: 1rem;
}
.industry-badge svg { width: 20px; height: 20px; color: var(--brand-blue); }
.industry-badge:hover { background: rgba(37,99,235,0.1); color: #fff; border-color: var(--brand-blue); transform: translateY(-4px); box-shadow: 0 10px 20px rgba(37,99,235,0.2); }

.faq-section { background: var(--bg-dark); }
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.faq-question {
  padding: 24px 30px; width: 100%; text-align: left; background: none; color: #fff;
  font-size: 1.15rem; font-weight: 700; display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.faq-question .icon { transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); font-size: 1.5rem; color: var(--brand-blue); display: flex; align-items: center; justify-content: center; }
.faq-answer { max-height: 0; overflow: hidden; padding: 0 30px; opacity: 0; color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; transition: all 0.4s ease; }
.faq-item.active { border-color: rgba(37,99,235,0.4); box-shadow: 0 10px 30px rgba(0,0,0,0.3); background: rgba(37,99,235,0.05); }
.faq-item.active .faq-question .icon { transform: rotate(45deg); color: var(--brand-red); }
.faq-item.active .faq-answer { max-height: 500px; padding-bottom: 30px; opacity: 1; }

.workspace-collage { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.work-img { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.05); cursor: pointer; }
.work-img img { width: 100%; height: 100%; object-fit: contain; background: var(--bg-card); transition: transform 0.6s ease, filter 0.4s ease; filter: grayscale(30%) brightness(0.8); }
.work-img:hover img { transform: scale(1.08); filter: grayscale(0%) brightness(1.1); }
.work-img:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.work-img:nth-child(2) { grid-column: span 2; aspect-ratio: 2/1; }

.trust-banner { background: var(--surface); border-top: 1px solid var(--border); padding: 40px 0; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; }
.trust-item { display: flex; align-items: center; gap: 20px; }
.trust-item svg { width: 40px; height: 40px; color: var(--brand-blue); }
.trust-item h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 2px; }
.trust-item p { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin: 0; }

@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-img-float { position: relative; bottom: 0; left: 0; width: 100%; margin-top: -30px; border-width: 6px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .workspace-collage { grid-template-columns: repeat(2, 1fr); }
  .work-img:nth-child(1) { grid-column: span 2; grid-row: auto; aspect-ratio: 16/9; }
  .work-img:nth-child(2) { grid-column: span 2; aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  .fam-container { bottom: 20px; right: 20px; }
  .fam-tooltip { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: 120px; min-height: 50vh; }
  .urgent-section { background-attachment: scroll; }
}

/* ===== SERVICES HUB & DETAIL PAGES ===== */
.services-hero {
  min-height: 70vh; display: flex; align-items: center; position: relative; overflow: hidden;
  padding: 160px 0 80px; text-align: center; background: var(--bg-dark);
}
.services-hero-bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.3;
  background: radial-gradient(circle at top right, rgba(37,99,235,0.2), transparent 50%),
              radial-gradient(circle at bottom left, rgba(220,38,38,0.15), transparent 50%);
}
.services-hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.services-hero h1 { font-size: clamp(3.5rem, 6vw, 5rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; letter-spacing: -2px; }
.services-hero p { font-size: 1.3rem; color: var(--text-secondary); line-height: 1.7; max-width: 700px; margin: 0 auto 40px; }

.service-nav-tabs { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 60px; }
.s-tab {
  padding: 12px 24px; border-radius: 100px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); font-weight: 600; color: var(--text-primary);
  transition: var(--transition); cursor: pointer;
}
.s-tab:hover, .s-tab.active { background: var(--gradient-brand); color: #fff; border-color: transparent; box-shadow: 0 10px 20px rgba(37,99,235,0.3); }

/* Service Detail Hero */
.detail-hero {
  min-height: 60vh; display: flex; align-items: flex-end; position: relative; padding: 160px 0 80px;
}
.detail-hero-bg { position: absolute; inset: 0; z-index: 0; }
.detail-hero-bg img { width: 100%; height: 100%; object-fit: contain; background: var(--bg-card); opacity: 0.3; mix-blend-mode: luminosity; }
.detail-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, var(--bg-dark) 0%, rgba(10,10,15,0.7) 40%, transparent 100%),
              radial-gradient(circle at right, rgba(37,99,235,0.15), transparent 60%);
}
.detail-hero-content { position: relative; z-index: 2; width: 100%; max-width: 900px; }
.detail-hero h1 { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 900; margin-bottom: 20px; line-height: 1.1; letter-spacing: -1px; }
.detail-hero p { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 30px; line-height: 1.6; max-width: 700px; }

/* Asymmetric Overview */
.overview-section { padding: 120px 0; background: var(--surface); }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.overview-text h2 { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 24px; letter-spacing: -1px; }
.overview-text p { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.overview-visual { position: relative; border-radius: var(--radius-lg); padding: 30px; background: var(--bg-card); border: 1px solid var(--border); }
.overview-visual::before { content: ''; position: absolute; top: -15px; left: -15px; right: 15px; bottom: 15px; border: 2px dashed rgba(37,99,235,0.3); border-radius: var(--radius-lg); z-index: 0; }
.overview-visual img { position: relative; z-index: 1; border-radius: var(--radius-md); box-shadow: 0 20px 40px rgba(0,0,0,0.5); width: 100%; }

/* Benefits Grid */
.benefits-section { background: var(--bg-dark); padding: 100px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.b-card { background: var(--bg-card); padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--border); transition: var(--transition); }
.b-card:hover { transform: translateY(-10px); border-color: rgba(37,99,235,0.4); box-shadow: 0 20px 40px rgba(37,99,235,0.1); }
.b-icon { width: 50px; height: 50px; margin-bottom: 24px; color: var(--brand-blue); display: flex; align-items: center; }
.b-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 16px; }
.b-card p { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; }

/* Materials / Features */
.materials-section { background: var(--surface); padding: 100px 0; border-top: 1px solid var(--border); }
.materials-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }
.materials-list li { display: flex; align-items: flex-start; gap: 20px; background: rgba(255,255,255,0.02); padding: 24px; border-radius: var(--radius-md); border: 1px solid var(--border); transition: var(--transition); }
.materials-list li:hover { background: rgba(37,99,235,0.05); border-color: rgba(37,99,235,0.3); }
.materials-list .m-icon { color: var(--brand-red); width: 32px; height: 32px; flex-shrink: 0; }
.materials-list h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.materials-list p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* Sticky Layout (Workflow/Why Matrix) */
.sticky-layout { display: grid; grid-template-columns: 400px 1fr; gap: 60px; align-items: start; margin-top: 60px; }
.sticky-sidebar { position: sticky; top: 120px; }
.sticky-sidebar h2 { font-size: clamp(2.2rem, 3vw, 2.8rem); font-weight: 800; margin-bottom: 24px; line-height: 1.1; letter-spacing: -1px;}
.sticky-sidebar p { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.7; }
.sticky-content { display: flex; flex-direction: column; gap: 40px; }
.workflow-step { background: var(--bg-card); padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--border); display: flex; gap: 24px; }
.w-node { width: 48px; height: 48px; border-radius: 50%; background: rgba(37,99,235,0.1); color: var(--brand-blue); font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(37,99,235,0.3); }
.workflow-step h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.workflow-step p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* Masonry Gallery */
.gallery-section { padding: 120px 0; background: var(--bg-dark); }
.masonry-gallery { columns: 3 300px; column-gap: 20px; margin-top: 50px; }
.masonry-item { break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius-md); overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,0.05); cursor: pointer; }
.masonry-item img { width: 100%; display: block; transition: transform 0.6s ease, filter 0.4s ease; filter: brightness(0.8) grayscale(20%); }
.masonry-item:hover img { transform: scale(1.05); filter: brightness(1.1) grayscale(0%); }

/* Abbotsford SEO Section */
.local-seo-section { background: linear-gradient(135deg, var(--surface) 0%, var(--bg-dark) 100%); padding: 80px 0; border-top: 1px solid rgba(37,99,235,0.2); }
.local-seo-content { display: flex; align-items: center; gap: 40px; }
.local-icon { width: 80px; height: 80px; border-radius: 20px; background: rgba(37,99,235,0.1); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(37,99,235,0.2); }
.local-icon svg { width: 40px; height: 40px; }
.local-text h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.local-text p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; }

/* Related Services */
.related-services { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px; scrollbar-width: none; }
.related-services::-webkit-scrollbar { display: none; }
.related-card { min-width: 280px; background: var(--bg-card); border-radius: var(--radius-md); padding: 24px; border: 1px solid var(--border); transition: var(--transition); }
.related-card:hover { border-color: var(--brand-blue); transform: translateY(-5px); }
.related-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.related-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.related-card a { color: var(--brand-blue); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }

@media(max-width: 1024px) {
  .overview-grid { grid-template-columns: 1fr; }
  .sticky-layout { grid-template-columns: 1fr; gap: 40px; }
  .sticky-sidebar { position: static; }
  .materials-list { grid-template-columns: 1fr; }
  .masonry-gallery { columns: 2; }
}
@media(max-width: 768px) {
  .detail-hero { padding-top: 140px; text-align: center; }
  .detail-hero-content { display: flex; flex-direction: column; align-items: center; }
  .local-seo-content { flex-direction: column; text-align: center; }
  .masonry-gallery { columns: 1; }
  .workflow-step { flex-direction: column; gap: 16px; align-items: center; text-align: center; }
}

/* --- PREMIUM HERO SYSTEM --- */
.premium-hero {
  position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden;
  background: var(--bg-dark); padding: 160px 0 80px; z-index: 1;
}
.premium-hero-bg-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  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: 50px 50px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}
.premium-hero-orb-1, .premium-hero-orb-2 {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; z-index: -1;
  animation: orb-float 15s infinite alternate ease-in-out;
}
.premium-hero-orb-1 { width: 600px; height: 600px; background: var(--brand-blue); top: -200px; left: -200px; }
.premium-hero-orb-2 { width: 500px; height: 500px; background: var(--brand-red); bottom: -100px; right: -100px; animation-delay: -5s; }
@keyframes orb-float { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(50px, 50px) scale(1.2); } }

/* Hero Split (About Page) */
.hero-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.hero-text-box { position: relative; z-index: 2; }
.hero-text-box h1 { font-size: clamp(3rem, 5vw, 4.8rem); font-weight: 900; line-height: 1.05; margin-bottom: 24px; letter-spacing: -2px; }
.hero-text-box p { font-size: 1.25rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 40px; max-width: 600px; }
.hero-visual-box { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; }
.hero-img-layered { position: relative; width: 100%; max-width: 450px; aspect-ratio: 4/5; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.8); border: 1px solid rgba(255,255,255,0.1); }
.hero-img-layered img { width: 100%; height: 100%; object-fit: contain; background: var(--bg-card); filter: brightness(0.85); transition: var(--transition); }
.hero-img-layered:hover img { filter: brightness(1.1) scale(1.05); }
.hero-floating-badge {
  position: absolute; bottom: 40px; left: -40px; background: rgba(17,17,24,0.85);
  backdrop-filter: blur(20px); padding: 20px 30px; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  display: flex; align-items: center; gap: 16px; z-index: 3; animation: float-slow 6s infinite ease-in-out;
}
.hero-floating-badge .icon { font-size: 2.5rem; color: var(--brand-yellow); }
.hero-floating-badge .text h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; color:#fff;}
.hero-floating-badge .text p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Hero Centered (Services Hub) */
.hero-centered { text-align: center; max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero-centered h1 { font-size: clamp(3.5rem, 6vw, 5.5rem); font-weight: 900; line-height: 1.05; margin-bottom: 24px; letter-spacing: -2px; }
.hero-centered p { font-size: 1.3rem; color: var(--text-secondary); line-height: 1.7; max-width: 750px; margin: 0 auto 50px; }
.hero-centered-visual { margin-top: 60px; position: relative; width: 100%; height: 350px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1); }
.hero-centered-visual img { width: 100%; height: 100%; object-fit: contain; background: var(--bg-card); filter: brightness(0.4); transition: transform 10s linear; }
.hero-centered-visual:hover img { transform: scale(1.1); }
.hero-centered-visual .overlay-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 6vw; font-weight: 900; color: rgba(255,255,255,0.05); letter-spacing: 15px; text-transform: uppercase; pointer-events: none; font-family: 'Outfit', sans-serif;}

/* Hero Glass Detail (Service Details) */
.hero-detail-premium { position: relative; min-height: 85vh; display: flex; align-items: flex-end; padding: 160px 0 60px; z-index: 1; }
.hero-detail-premium-bg { position: absolute; inset: 0; z-index: -2; }
.hero-detail-premium-bg img { width: 100%; height: 100%; object-fit: contain; background: var(--bg-card); filter: brightness(0.6); }
.hero-detail-premium-gradient { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, var(--bg-dark) 0%, rgba(10,10,15,0.6) 40%, rgba(10,10,15,0.2) 100%); }
.hero-glass-card {
  background: rgba(17,17,24,0.5); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xl);
  padding: 60px; max-width: 900px; position: relative; z-index: 2;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7); transform: translateY(40px);
}
.hero-glass-card h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px; }
.hero-glass-card p { font-size: 1.25rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 40px; }
.hero-stats-row { display: flex; gap: 50px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat-item h4 { font-size: 2rem; font-weight: 800; color: var(--brand-blue); margin-bottom: 4px; }
.hero-stat-item p { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin: 0; }

@media(max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-text-box p { margin: 0 auto 40px; }
  .hero-floating-badge { left: 50%; transform: translateX(-50%); bottom: -30px; width: max-content; animation: none; }
  .hero-glass-card { transform: translateY(0); padding: 40px; }
}
@media(max-width: 768px) {
  .hero-glass-card { padding: 30px 20px; }
  .hero-stat-item h4 { font-size: 1.5rem; }
  .hero-stats-row { gap: 30px; }
}

/* --- PREMIUM DETAIL CTA --- */
.premium-detail-cta {
  position: relative; padding: 120px 0; background: var(--bg-dark); overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.cta-glow-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 80%; height: 80%; background: radial-gradient(ellipse at center, rgba(37,99,235,0.15) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}
.cta-glass-panel {
  position: relative; z-index: 2; background: rgba(17,17,24,0.6); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 80px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.cta-panel-text h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px; }
.cta-panel-text p { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 40px; }
.cta-contact-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.cta-contact-item { display: flex; align-items: center; gap: 20px; padding: 20px; background: rgba(255,255,255,0.03); border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.05); transition: var(--transition); text-decoration: none;}
.cta-contact-item:hover { background: rgba(37,99,235,0.1); border-color: rgba(37,99,235,0.3); transform: translateX(10px); }
.cta-contact-item .icon { width: 50px; height: 50px; background: var(--gradient-brand); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #fff; font-size: 1.2rem; flex-shrink: 0; box-shadow: 0 10px 20px rgba(37,99,235,0.4); }
.cta-contact-item h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; color: #fff; }
.cta-contact-item p { font-size: 0.95rem; color: var(--text-muted); font-weight: 600; margin: 0; }
.cta-panel-action { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding-left: 60px; border-left: 1px solid rgba(255,255,255,0.1); }
.cta-panel-action h3 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; color: #fff; }
.cta-panel-action p { color: var(--text-muted); margin-bottom: 30px; line-height: 1.6; }

/* Contact Page Form */
.contact-hero { text-align: center; padding: 160px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; padding: 60px 0 120px; }
.contact-info-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 40px; border-radius: var(--radius-lg); }
.contact-form-card { background: var(--bg-card); border: 1px solid var(--border); padding: 50px; border-radius: var(--radius-xl); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.form-control { width: 100%; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 16px 20px; color: #fff; font-size: 1rem; transition: var(--transition); font-family: inherit; }
.form-control:focus { border-color: var(--brand-blue); outline: none; background: rgba(37,99,235,0.05); }
textarea.form-control { min-height: 150px; resize: vertical; }
select.form-control option { background: #111118; color: #ffffff; padding: 10px; }

/* Portfolio Filter */
.portfolio-filter { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 40px 0; }
.filter-btn { padding: 10px 24px; border-radius: 100px; background: rgba(255,255,255,0.05); border: 1px solid transparent; color: var(--text-secondary); font-weight: 600; cursor: pointer; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--gradient-brand); color: #fff; }

/* Mega Dropdown for Desktop */
@media(min-width: 1025px) {
  .dropdown-menu { width: 550px; display: grid !important; grid-template-columns: 1fr 1fr; gap: 8px; padding: 24px !important; }
}

@media(max-width: 1024px) {
  .cta-glass-panel { grid-template-columns: 1fr; padding: 40px; gap: 40px; }
  .cta-panel-action { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; align-items: center; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media(max-width: 768px) {
  .cta-glass-panel { padding: 30px 20px; }
  .contact-form-card { padding: 30px 20px; }
}

/* Active Nav state */
.active-nav { color: var(--text-primary) !important; border-bottom: 2px solid var(--brand-blue); }
