/* ═══════════════════════════════════════
   BUSINESS FOCUS — style.css
   Design Direction: Luxury Futuristic · Dark/Navy Premium
   Fonts: Syne (Display) + Outfit (Body)
═══════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --navy:    #05091A;
  --dark:    #0A0F1E;
  --blue:    #1E6FFF;
  --blue-lt: #3B82F6;
  --red:     #E63946;
  --gold:    #F59E0B;
  --white:   #F0F4FF;
  --white-2: rgba(240,244,255,0.06);
  --white-3: rgba(240,244,255,0.10);
  --glass:   rgba(255,255,255,0.05);
  --glass-b: rgba(255,255,255,0.08);
  --border:  rgba(255,255,255,0.08);
  --border-2:rgba(30,111,255,0.25);
  --shadow:  0 20px 60px rgba(0,0,0,0.5);
  --shadow-b:0 8px 32px rgba(30,111,255,0.25);
  --r:       16px;
  --r-lg:    24px;
  --tr:      0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 99px; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; }
a { text-decoration: none; color: inherit; transition: var(--tr); }

/* ══════════════════════
   LOADER
══════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.fade-out { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }

.loader-logo {
  width: 80px; height: 80px;
  border: 2px solid var(--blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: loaderPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(30,111,255,0.4);
}
.loader-bf {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto 16px;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 99px;
  animation: loadBar 2s ease forwards;
}
.loader-text {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

@keyframes loaderPulse {
  0%,100% { box-shadow: 0 0 20px rgba(30,111,255,0.3); }
  50%      { box-shadow: 0 0 60px rgba(30,111,255,0.7); }
}
@keyframes loadBar {
  0%   { width: 0; }
  100% { width: 100%; }
}

/* ══════════════════════
   CUSTOM CURSOR
══════════════════════ */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.1s;
}
.cursor-outline {
  width: 36px; height: 36px;
  border: 2px solid rgba(30,111,255,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9997;
  transition: transform 0.15s, width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-outline.hovered {
  width: 60px; height: 60px;
  border-color: rgba(230,57,70,0.6);
  transform: translate(-50%, -50%) !important;
}

/* ══════════════════════
   WHATSAPP FLOAT
══════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  animation: waBounce 2s ease-in-out infinite;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.12); color: #fff; }
@keyframes waBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ══════════════════════
   NAVBAR
══════════════════════ */
.navbar {
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(5,9,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border);
}

.brand-logo { display: flex; align-items: center; gap: 14px; }
.brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--red));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(30,111,255,0.35);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.1;
}
.brand-accent { color: var(--red); }
.brand-sub {
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--tr);
}
.nav-link:hover { color: #fff !important; background: var(--white-2); }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue), #0052CC);
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 22px !important;
  border-radius: 10px;
  border: 1px solid rgba(30,111,255,0.3);
  box-shadow: 0 4px 20px rgba(30,111,255,0.25);
  transition: var(--tr);
}
.btn-nav-cta:hover {
  background: linear-gradient(135deg, #3B82F6, var(--blue));
  box-shadow: 0 8px 30px rgba(30,111,255,0.45);
  transform: translateY(-1px);
}

/* Toggler */
.navbar-toggler { border: none; background: none; padding: 0; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.toggler-icon span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--tr);
}

/* ══════════════════════
   HERO
══════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--navy);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  z-index: 1;
}

.hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  animation: floatShape 8s ease-in-out infinite;
}
.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,111,255,0.12) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation-delay: 0s;
}
.shape-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(230,57,70,0.08) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation-delay: -3s;
}
.shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(30,111,255,0.08) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation-delay: -5s;
}
.shape-4 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  top: 20%; right: 30%;
  animation-delay: -2s;
}
@keyframes floatShape {
  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: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(30,111,255,0.12);
  border: 1px solid rgba(30,111,255,0.25);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--blue);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(30,111,255,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(30,111,255,0); }
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.title-line { display: block; }
.title-gradient {
  background: linear-gradient(135deg, var(--blue) 20%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }

.btn-primary-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue), #0044CC);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(30,111,255,0.4);
  transition: var(--tr);
}
.btn-primary-hero:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(30,111,255,0.55);
}
.btn-shine {
  position: absolute;
  top: -50%; left: -100%;
  width: 60%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary-hero:hover .btn-shine { left: 150%; }

.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition: var(--tr);
}
.btn-secondary-hero:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.hero-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; margin-top: 2px; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* Hero card stack */
.hero-card-stack { position: relative; height: 380px; width: 100%; }
.hcard {
  position: absolute;
  background: var(--glass-b);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  transition: var(--tr);
}
.hcard-back {
  width: 200px; height: 120px;
  bottom: 30px; right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  animation: hcardFloat1 6s ease-in-out infinite;
}
.hcard-back i { font-size: 28px; color: var(--blue-lt); }
.hcard-mid {
  width: 210px; height: 120px;
  top: 20px; right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  animation: hcardFloat2 7s ease-in-out infinite;
}
.hcard-mid i { font-size: 28px; color: var(--red); }
.hcard-front {
  width: 280px;
  top: 80px; left: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(30,111,255,0.15);
  animation: hcardFloat3 5s ease-in-out infinite;
}
.hcard-logo {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--red));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.hcard-info h4 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.hcard-info p { font-size: 12px; color: rgba(255,255,255,0.5); margin: 0; }
.hcard-badge {
  display: inline-block;
  background: rgba(30,111,255,0.2);
  border: 1px solid rgba(30,111,255,0.3);
  color: var(--blue-lt);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
  letter-spacing: 1px;
}
@keyframes hcardFloat1 { 0%,100%{transform:translateY(0) rotate(-2deg);}50%{transform:translateY(-12px) rotate(-2deg);} }
@keyframes hcardFloat2 { 0%,100%{transform:translateY(0) rotate(3deg);}50%{transform:translateY(-16px) rotate(3deg);} }
@keyframes hcardFloat3 { 0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);} }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.2);
  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: scrollWheel 2s ease-in-out infinite;
}
.scroll-indicator span { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 2px; text-transform: uppercase; }
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* ══════════════════════
   SECTION COMMONS
══════════════════════ */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  position: relative;
  padding-left: 24px;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.section-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header { margin-bottom: 60px; }

.text-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ══════════════════════
   ABOUT
══════════════════════ */
.about-section {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--red), transparent);
}

.about-visual { position: relative; padding: 30px; }

.about-img-block {
  background: linear-gradient(135deg, rgba(30,111,255,0.08), rgba(230,57,70,0.05));
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  max-width: 350px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about-icon-bg {
  font-size: 80px;
  background: linear-gradient(135deg, var(--blue), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(30,111,255,0.4));
}

.about-tag {
  position: absolute;
  background: var(--glass-b);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 3;
}
.about-tag i { color: var(--blue); margin-right: 8px; }
.about-tag-1 { top: 10px; right: -10px; }
.about-tag-2 { bottom: 20px; left: -10px; }
.about-tag-1 i, .about-tag-2 i { color: var(--gold); }

.about-accent-circle {
  position: absolute;
  width: 200px; height: 200px;
  border: 1px solid rgba(30,111,255,0.1);
  border-radius: 50%;
  top: -20px; left: -20px;
  z-index: 1;
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.about-text {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-text strong { color: var(--white); }

.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.af-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: var(--tr);
}
.af-item:hover { background: var(--white-3); border-color: rgba(30,111,255,0.2); }
.af-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(30,111,255,0.2), rgba(30,111,255,0.05));
  border: 1px solid rgba(30,111,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--blue);
  flex-shrink: 0;
}
.af-item h5 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.af-item p { font-size: 13.5px; color: rgba(255,255,255,0.5); margin: 0; }

/* ══════════════════════
   SERVICES
══════════════════════ */
.services-section {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.services-bg-deco {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,111,255,0.04) 0%, transparent 70%);
  top: -100px; right: -200px;
  pointer-events: none;
}

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

.service-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30,111,255,0.3);
  box-shadow: var(--shadow-b);
}
.service-card-wide { grid-column: 3 / 4; grid-row: 2 / 3; }

.sc-icon-wrap {
  width: 62px; height: 62px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  transition: var(--tr);
}
.sc-blue {
  background: rgba(30,111,255,0.12);
  border: 1px solid rgba(30,111,255,0.2);
  color: var(--blue);
}
.sc-red {
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.2);
  color: var(--red);
}
.sc-gold {
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--gold);
}
.service-card:hover .sc-icon-wrap { transform: scale(1.1) rotate(-5deg); }

.sc-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.sc-content p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 20px; line-height: 1.65; }
.sc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.sc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
}
.sc-list li i { font-size: 10px; color: var(--blue); }

.sc-cta-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--blue), #0044CC);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  transition: var(--tr);
  box-shadow: 0 4px 20px rgba(30,111,255,0.25);
}
.sc-cta-btn:hover {
  color: #fff;
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(30,111,255,0.4);
}

.sc-hover-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,111,255,0.04) 0%, transparent 100%);
  opacity: 0;
  transition: var(--tr);
  pointer-events: none;
}
.service-card:hover .sc-hover-bg { opacity: 1; }

/* ══════════════════════
   WHY US
══════════════════════ */
.whyus-section {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.whyus-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230,57,70,0.5), transparent);
}

.stats-row {}
.stat-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  transition: var(--tr);
}
.stat-card:hover { border-color: var(--border-2); transform: translateY(-4px); }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-plus {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
}
.stat-card p { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 8px; margin-bottom: 0; }

.advantage-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--tr);
}
.advantage-card:hover {
  background: var(--white-3);
  border-color: rgba(30,111,255,0.2);
  transform: translateY(-4px);
}
.adv-icon-ring {
  width: 56px; height: 56px;
  border: 2px solid rgba(30,111,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 20px;
  transition: var(--tr);
  background: rgba(30,111,255,0.06);
}
.adv-icon-ring.adv-red {
  border-color: rgba(230,57,70,0.3);
  color: var(--red);
  background: rgba(230,57,70,0.06);
}
.advantage-card:hover .adv-icon-ring { transform: scale(1.1); }
.advantage-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.advantage-card p { font-size: 14px; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.65; }

/* ══════════════════════
   PORTFOLIO
══════════════════════ */
.portfolio-section {
  padding: 120px 0;
  background: var(--navy);
}

.portfolio-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.pf-btn {
  background: var(--glass);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--tr);
  font-family: 'Outfit', sans-serif;
}
.pf-btn:hover, .pf-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(30,111,255,0.35);
}

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

.p-item { border-radius: var(--r-lg); overflow: hidden; }
.p-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
}
.p-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: rgba(255,255,255,0.15);
  transition: transform 0.5s ease;
}
.p-card:hover .p-card-bg { transform: scale(1.08); }

.p-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--tr);
}
.p-card:hover .p-card-overlay { opacity: 1; transform: translateY(0); }

.p-tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  width: fit-content;
}
.p-card-overlay h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.p-card-overlay p { font-size: 13px; color: rgba(255,255,255,0.65); margin: 0; }

.p-item.hidden { display: none; }

/* ══════════════════════
   CONTACT
══════════════════════ */
.contact-section {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.ci-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 24px;
  transition: var(--tr);
}
.ci-card:hover { border-color: rgba(30,111,255,0.25); background: var(--white-2); }
.ci-icon {
  width: 48px; height: 48px;
  background: rgba(30,111,255,0.12);
  border: 1px solid rgba(30,111,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--blue);
  flex-shrink: 0;
}
.ci-icon.ci-red {
  background: rgba(230,57,70,0.12);
  border-color: rgba(230,57,70,0.2);
  color: var(--red);
}
.ci-card h5 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 4px; letter-spacing: 0.5px; text-transform: uppercase; }
.ci-card p { font-size: 14px; color: var(--white); margin: 0; }
.ci-card a { color: var(--white); }
.ci-card a:hover { color: var(--blue); }

.contact-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.csoc {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  border: 1px solid var(--border);
  transition: var(--tr);
}
.csoc.whatsapp { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.2); color: #25D366; }
.csoc.facebook { background: rgba(24,119,242,0.1); border-color: rgba(24,119,242,0.2); color: #1877F2; }
.csoc.instagram { background: rgba(193,53,132,0.1); border-color: rgba(193,53,132,0.2); color: #C13584; }
.csoc.gmail { background: rgba(234,67,53,0.1); border-color: rgba(234,67,53,0.2); color: #EA4335; }
.csoc:hover { transform: translateY(-3px) scale(1.08); filter: brightness(1.2); }

/* Contact form */
.contact-form-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
}
.contact-form-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 28px; }

.cf-group { display: flex; flex-direction: column; gap: 8px; }
.cf-group label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; text-transform: uppercase; }
.cf-group input,
.cf-group select,
.cf-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: var(--tr);
  width: 100%;
  resize: none;
}
.cf-group select option { background: var(--dark); color: var(--white); }
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: rgba(30,111,255,0.5);
  background: rgba(30,111,255,0.04);
  box-shadow: 0 0 0 3px rgba(30,111,255,0.08);
}

.cf-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), #0044CC);
  border: none;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: 0 8px 30px rgba(30,111,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30,111,255,0.5);
}

/* Map */
.map-section { margin-top: 60px; }
.map-wrapper {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-overlay-label {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(5,9,26,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  z-index: 10;
}
.map-overlay-label i { color: var(--red); }

/* ══════════════════════
   FOOTER
══════════════════════ */
.footer-section {
  background: var(--navy);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.footer-glow {
  position: absolute;
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(30,111,255,0.04) 0%, transparent 70%);
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.footer-brand {}
.fb-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.fb-logo i {
  font-size: 28px;
  background: linear-gradient(135deg, var(--blue), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fb-logo span {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.fb-logo .accent { color: var(--red); }
.fb-logo small {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.fb-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px; }

.fb-socials { display: flex; gap: 10px; }
.fb-socials a {
  width: 40px; height: 40px;
  background: var(--white-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  transition: var(--tr);
}
.fb-socials a:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-3px); }

.footer-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: var(--tr);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--blue);
  transition: width 0.3s;
}
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-links a:hover::before { width: 10px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.footer-contact-list i { color: var(--blue); font-size: 14px; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,0.45); }
.footer-contact-list a:hover { color: var(--blue); }

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom strong { color: rgba(255,255,255,0.6); }
.footer-owner { margin: 0; }

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 991px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: auto; grid-row: auto; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 16px; }
  .navbar-collapse {
    background: rgba(5,9,26,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-top: 16px;
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary-hero, .btn-secondary-hero { width: 100%; justify-content: center; }
  .about-section, .services-section, .whyus-section,
  .portfolio-section, .contact-section { padding: 80px 0; }
  .footer-main { text-align: center; }
  .fb-logo { justify-content: center; }
  .fb-socials { justify-content: center; }
  .contact-form-card { padding: 28px 20px; }
  .hero-stats { justify-content: center; }
  .cursor-dot, .cursor-outline { display: none; }
  body { cursor: auto; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 11px; }
  .hero-subtitle { font-size: 15px; }
  .stat-number { font-size: 32px; }
  .section-title { font-size: 26px; }
  .about-tag { font-size: 11px; padding: 8px 14px; }
  .about-tag-1 { right: 0; }
  .about-tag-2 { left: 0; }
}
