/* =====================================================
   NOBLIR DIGITAL SOLUTIONS — Premium Site CSS
   2026 Design: Glassmorphism + Gradient + Dark/Light
   ===================================================== */

/* ── Variables ── */
:root {
  --navy: #0f0f0f;
  --navy-2: #141414;
  --navy-3: #1a1a1a;
  --blue: #D41217;
  --blue-light: #ff4d4d;
  --purple: #595959;
  --green: #10b981;
  --orange: #f59e0b;
  --pink: #ec4899;
  --red: #D41217;
  --brand: #D41217;
  --brand-dark: #9B0B10;
  --brand-gray: #595959;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-gray: #f1f5f9;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --gradient: linear-gradient(135deg, #D41217 0%, #9B0B10 100%);
  --gradient-soft: linear-gradient(135deg, rgba(212,18,23,0.08) 0%, rgba(89,89,89,0.06) 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 40px rgba(212,18,23,0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --nav-height: 72px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* ── Typography Utilities ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  padding: 0 32px;
  display: flex; align-items: center;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.nav-container {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: var(--white); transition: color 0.3s;
}
.navbar.scrolled .nav-brand { color: var(--navy); }
.brand-logo { display: block; transition: all 0.3s; }

.brand-icon { font-size: 20px; color: var(--blue); }
.brand-accent { color: var(--blue); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links .nav-link {
  padding: 8px 14px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.85); border-radius: 8px;
  transition: all 0.2s;
}
.navbar.scrolled .nav-links .nav-link { color: var(--text); }
.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  color: var(--white); background: rgba(255,255,255,0.12);
}
.navbar.scrolled .nav-links .nav-link:hover,
.navbar.scrolled .nav-links .nav-link.active {
  color: var(--blue); background: rgba(212,18,23,0.08);
}

.nav-dropdown { position: relative; }
.nav-chevron { font-size: 11px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s ease; z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; font-size: 14px; color: var(--text);
  border-radius: 8px; transition: all 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--gradient-soft); color: var(--blue); }
.nav-dropdown-menu a i { font-size: 15px; color: var(--blue); width: 18px; }

.nav-cta-btn {
  padding: 9px 20px; font-size: 14px; font-weight: 600;
  background: var(--gradient); color: var(--white) !important;
  border-radius: 40px; margin-left: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(212,18,23,0.35);
}
.nav-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,18,23,0.45); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; justify-content: center; align-items: center;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}
.navbar.scrolled .nav-hamburger span { background: var(--navy); }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
}

.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.hero-orb-1 {
  width: 600px; height: 600px; top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(212,18,23,0.22) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px; bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(89,89,89,0.18) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px; top: 40%; left: 50%;
  background: radial-gradient(circle, rgba(212,18,23,0.08) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

.hero-container {
  position: relative; z-index: 1;
  max-width: 900px; text-align: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 40px; margin-bottom: 32px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85);
}
.hero-badge i { color: var(--orange); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900; line-height: 1.08; letter-spacing: -2px;
  color: var(--white); margin-bottom: 24px;
}
.hero-title-gradient {
  background: linear-gradient(135deg, #ff6b6b, #D41217, #ff9f43);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px); color: rgba(255,255,255,0.65);
  max-width: 680px; margin: 0 auto 40px; line-height: 1.7;
}

.hero-cta-group {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin-bottom: 56px;
}

.btn-primary-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; font-size: 15px; font-weight: 700;
  background: var(--gradient); color: var(--white);
  border-radius: 40px; box-shadow: 0 8px 32px rgba(212,18,23,0.45);
  transition: all 0.25s;
}
.btn-primary-hero:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,18,23,0.55); }

.btn-ghost-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px; backdrop-filter: blur(10px);
  transition: all 0.25s;
}
.btn-ghost-hero:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.trust-stat { text-align: center; }
.trust-num {
  display: block; font-size: 36px; font-weight: 800;
  color: var(--white); font-family: var(--font-display); line-height: 1;
}
.trust-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.trust-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
}
.scroll-mouse {
  width: 24px; height: 36px; border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px; background: rgba(255,255,255,0.5);
  border-radius: 2px; animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(8px); opacity: 0.3; } }

/* ── Hero Service Pills ── */
.hero-service-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 36px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 40px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  transition: all 0.22s;
}
.hero-pill i { font-size: 14px; color: #D41217; }
.hero-pill:hover {
  background: rgba(212,18,23,0.15);
  border-color: rgba(212,18,23,0.35);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .hero-service-pills { gap: 8px; }
  .hero-pill { font-size: 12px; padding: 7px 13px; }
}

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee-section {
  background: var(--navy-2); padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.marquee-label {
  text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px;
}
.marquee-track { overflow: hidden; position: relative; }
.marquee-inner {
  display: flex; gap: 48px; align-items: center;
  width: max-content;
  animation: marquee 25s linear infinite;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.marquee-item i { color: rgba(212,18,23,0.5); }

/* =====================================================
   SECTION COMMONS
   ===================================================== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  padding: 6px 16px; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--gradient-soft); color: var(--blue);
  border: 1px solid rgba(212,18,23,0.15);
  border-radius: 40px; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; line-height: 1.2;
  letter-spacing: -1px; color: var(--text); margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px; color: var(--text-muted);
  max-width: 560px; margin: 0 auto;
}
.section-cta { text-align: center; margin-top: 48px; }
.btn-outline-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 14px; font-weight: 600;
  color: var(--blue); background: transparent;
  border: 1.5px solid var(--blue); border-radius: 40px;
  transition: all 0.25s;
}
.btn-outline-primary:hover {
  background: var(--blue); color: var(--white);
  box-shadow: 0 6px 20px rgba(212,18,23,0.3);
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section { padding: 100px 0; background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative; border-radius: var(--radius);
  background: var(--white); overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease; cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,18,23,0.2);
  box-shadow: var(--shadow-lg);
}
.service-card:hover .service-card-glow { opacity: 1; }

.service-card-inner { padding: 32px; position: relative; z-index: 1; }

.service-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 12%, white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: all 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: var(--accent);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 40%, transparent);
}
.service-icon-wrap i {
  font-size: 24px; color: var(--accent);
  transition: color 0.3s;
}
.service-card:hover .service-icon-wrap i { color: white; }

.service-title {
  font-size: 18px; font-weight: 700; color: var(--text);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

.service-card-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 6%, transparent), transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}

/* =====================================================
   WHY SECTION
   ===================================================== */
.why-section {
  padding: 100px 0; background: var(--navy);
  position: relative; overflow: hidden;
}
.why-bg-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,18,23,0.08) 0%, transparent 60%);
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.why-content { position: relative; z-index: 1; }
.why-content .section-tag { background: rgba(212,18,23,0.15); color: #ff8080; border-color: rgba(212,18,23,0.2); }
.why-content .section-title { color: var(--white); }
.why-desc { color: rgba(255,255,255,0.6); margin-bottom: 32px; line-height: 1.8; }

.why-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.why-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm); backdrop-filter: blur(8px);
  transition: all 0.25s;
}
.why-feature:hover { background: rgba(255,255,255,0.07); }
.why-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(212,18,23,0.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--blue);
}
.why-feature h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.why-feature p { font-size: 13px; color: rgba(255,255,255,0.5); }

.btn-primary-sm {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; font-size: 14px; font-weight: 600;
  background: var(--gradient); color: var(--white);
  border-radius: 40px; transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(212,18,23,0.4);
}
.btn-primary-sm:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,18,23,0.5); }

/* Stats Card */
.why-visual { display: flex; justify-content: center; position: relative; z-index: 1; }
.why-stats-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px); border-radius: var(--radius-lg);
  padding: 40px; display: flex; flex-direction: column; align-items: center; gap: 36px;
  max-width: 340px; width: 100%;
}

.stat-ring { position: relative; width: 160px; height: 160px; }
.stat-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 8; }
.ring-progress { fill: none; stroke: url(#ringGrad); stroke-width: 8; stroke-linecap: round; transition: stroke-dasharray 2s ease; }
.ring-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ring-num { font-size: 28px; font-weight: 800; color: var(--white); font-family: var(--font-display); }
.ring-text { font-size: 10px; color: rgba(255,255,255,0.5); text-align: center; text-transform: uppercase; letter-spacing: 0.5px; }

.why-mini-stats { display: flex; gap: 20px; width: 100%; }
.mini-stat {
  flex: 1; text-align: center; padding: 16px 8px;
  background: rgba(255,255,255,0.04); border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.mini-stat i { font-size: 18px; }
.mini-num { font-size: 20px; font-weight: 800; color: var(--white); font-family: var(--font-display); }
.mini-label { font-size: 10px; color: rgba(255,255,255,0.4); }

/* =====================================================
   PORTFOLIO SECTION
   ===================================================== */
.portfolio-section { padding: 100px 0; background: var(--off-white); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.portfolio-card--featured {
  grid-column: span 2;
}

.portfolio-card-img {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--navy-3); position: relative;
}
.portfolio-card--featured .portfolio-card-img { aspect-ratio: 21/9; }
.portfolio-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.portfolio-card:hover .portfolio-card-img img { transform: scale(1.04); }
.portfolio-placeholder {
  height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  font-size: 48px; color: rgba(255,255,255,0.1);
}
.portfolio-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-view-btn {
  width: 48px; height: 48px; background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--blue);
  transform: scale(0.8); transition: transform 0.3s;
}
.portfolio-card:hover .portfolio-view-btn { transform: scale(1); }

.portfolio-card-body { padding: 24px; }
.portfolio-category {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--blue); margin-bottom: 8px;
}
.portfolio-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.portfolio-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tech-tag {
  padding: 4px 10px; font-size: 11px; font-weight: 600;
  background: var(--light-gray); color: var(--text-muted);
  border-radius: 40px;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials-section {
  padding: 100px 0; background: var(--white); position: relative; overflow: hidden;
}
.testimonials-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,18,23,0.03) 0%, transparent 70%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; position: relative; z-index: 1;
}

.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: all 0.3s; position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-size: 80px; line-height: 1;
  color: var(--brand); opacity: 0.1; position: absolute;
  top: 12px; left: 20px; font-family: Georgia, serif;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars i { color: var(--orange); font-size: 14px; }
.testimonial-text {
  font-size: 15px; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; flex-shrink: 0; overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.author-info span { font-size: 12px; color: var(--text-muted); }

/* =====================================================
   PROCESS SECTION
   ===================================================== */
.process-section { padding: 100px 0; background: var(--off-white); }

.process-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: wrap;
}

.process-step {
  flex: 1; min-width: 200px; max-width: 240px;
  text-align: center; padding: 0 16px;
}
.step-number {
  font-size: 13px; font-weight: 700; color: var(--blue); letter-spacing: 2px;
  margin-bottom: 12px;
}
.step-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--blue);
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.process-step:hover .step-icon {
  background: var(--blue); color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(212,18,23,0.35);
  transform: translateY(-4px);
}
.process-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.process-connector {
  flex-shrink: 0; width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--border) 50%, transparent 50%);
  background-size: 10px 2px;
  margin-top: 30px; align-self: flex-start;
}

/* =====================================================
   BLOG SECTION
   ===================================================== */
.blog-section { padding: 100px 0; background: var(--white); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-img {
  aspect-ratio: 16/8; overflow: hidden;
  background: var(--light-gray);
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img img { transform: scale(1.04); }

.blog-body { padding: 24px; }
.blog-category {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--blue); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px;
}
.blog-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-body h3 a { color: var(--text); transition: color 0.2s; }
.blog-body h3 a:hover { color: var(--blue); }
.blog-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-light); }
.blog-meta i { margin-right: 4px; }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  padding: 100px 0; background: var(--navy);
  position: relative; overflow: hidden; text-align: center;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,18,23,0.15) 0%, transparent 60%);
}
.cta-banner-orb-1 {
  position: absolute; width: 400px; height: 400px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(89,89,89,0.2) 0%, transparent 70%);
  border-radius: 50%; filter: blur(60px);
}
.cta-banner-orb-2 {
  position: absolute; width: 400px; height: 400px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(212,18,23,0.2) 0%, transparent 70%);
  border-radius: 50%; filter: blur(60px);
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px); font-weight: 900;
  color: var(--white); margin-bottom: 16px; line-height: 1.2;
}
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.cta-banner-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =====================================================
   PAGE HERO (for inner pages)
   ===================================================== */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 0 80px;
  background: var(--navy); position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212,18,23,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(89,89,89,0.1) 0%, transparent 50%);
}
.page-hero-content {
  position: relative; z-index: 1; max-width: 700px; text-align: center; margin: 0 auto;
}
.page-hero .section-tag { background: rgba(212,18,23,0.15); color: #ff8080; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px); font-weight: 900;
  color: var(--white); margin-bottom: 16px; line-height: 1.1; letter-spacing: -1px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.6); }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-section { padding: 80px 0; background: var(--off-white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start;
}

.contact-info h2 {
  font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 12px;
}
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }

.contact-info-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px; background: var(--white); border-radius: 12px;
  border: 1px solid var(--border);
}
.ci-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gradient-soft); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--blue);
}
.contact-info-item strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.contact-info-item span { font-size: 14px; color: var(--text-muted); }
.contact-info-item a { color: var(--blue); }

.contact-socials { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-muted);
  transition: all 0.2s;
}
.social-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-control {
  padding: 12px 16px; font-size: 14px; font-family: inherit;
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: 10px; color: var(--text);
  transition: all 0.2s; outline: none;
}
.form-control:focus { background: var(--white); border-color: var(--blue); box-shadow: 0 0 0 3px rgba(212,18,23,0.1); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }
.form-error { font-size: 12px; color: var(--red); }

.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; font-size: 15px; font-weight: 700;
  background: var(--gradient); color: var(--white);
  border-radius: 12px; transition: all 0.25s; font-family: inherit;
  box-shadow: 0 6px 20px rgba(212,18,23,0.35);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,18,23,0.45); }

.form-success-message {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2); border-radius: 12px;
  margin-bottom: 24px;
}
.form-success-message i { font-size: 24px; color: var(--green); flex-shrink: 0; }
.form-success-message strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.form-success-message p { font-size: 13px; color: var(--text-muted); }

/* =====================================================
   ERROR PAGE
   ===================================================== */
.error-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--navy); text-align: center;
}
.error-code { font-size: 120px; font-weight: 900; color: rgba(255,255,255,0.06); font-family: var(--font-display); line-height: 1; }
.error-title { font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.error-desc { color: rgba(255,255,255,0.5); margin-bottom: 32px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--navy); padding: 80px 0 0;
  position: relative; overflow: hidden;
}
.footer-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,18,23,0.5), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: var(--white); margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 15px; transition: all 0.2s;
}
.footer-socials a:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }

.footer-links-col h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--white); }

.footer-contact-col h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: rgba(255,255,255,0.5);
}
.footer-contact-list i { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: all 0.3s; box-shadow: 0 4px 16px rgba(212,18,23,0.4);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--brand-dark); box-shadow: 0 6px 20px rgba(155,11,16,0.4); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card--featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,15,30,0.97); backdrop-filter: blur(20px);
    justify-content: center; align-items: center; gap: 8px; z-index: 999;
  }
  .nav-links.open .nav-link { font-size: 20px; color: var(--white); padding: 12px 24px; }
  .nav-links.open .nav-cta-btn { margin: 16px 0 0; font-size: 16px; padding: 14px 36px; }
  .nav-links.open .nav-dropdown-menu { display: none; }

  .hero { padding: calc(var(--nav-height) + 40px) 20px 60px; }

  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { order: -1; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card--featured { grid-column: span 1; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand-col { grid-column: span 2; }

  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 30px; margin: 0; align-self: center; }

  .cta-banner-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-trust { gap: 20px; }
  .trust-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: span 1; }
}
