/* ===== 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;
}
.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: cover; }
.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;
}
@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: cover;
  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: cover; 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: 2fr 1fr 1fr 1.5fr; gap: 60px; 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);
  }
  .dropdown-menu { position: relative; top: 0; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 10px 0 0 10px; background: transparent; }
  
  .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; }
}
