:root {
  --navy: #0a0e1a;
  --deep: #0d1526;
  --blue: #1a6fc4;
  --cyan: #00b4d8;
  --silver: #b0bec5;
  --white: #f0f4ff;
  --accent: #00e5ff;
  --gold: #ffd166;
  --card-bg: rgba(255,255,255,0.04);
  --border: rgba(0,180,216,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

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

/* ── NAVBAR ── */
.navbar {
  background: rgba(10,14,26,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 1000;
}
.navbar-brand img { height: 48px; }
.navbar-brand span {
  font-weight: 800; font-size: 1.15rem;
  background: linear-gradient(90deg, #fff 40%, var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: .5px;
}
.nav-link {
  color: var(--silver) !important;
  font-weight: 600; font-size: .82rem;
  letter-spacing: 1px; text-transform: uppercase;
  transition: color .25s;
  padding: 6px 14px !important;
}
.nav-link:hover { color: var(--accent) !important; }
.btn-nav {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff !important; border-radius: 30px;
  padding: 7px 22px !important; font-weight: 700;
  font-size: .82rem; letter-spacing: 1px;
  box-shadow: 0 4px 18px rgba(0,180,216,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,229,255,.4); }
.navbar-toggler { border-color: var(--border); }
.navbar-toggler-icon { filter: invert(1); }

/* ── HERO ── */
.hero {
  min-height: 96vh;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26,111,196,.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0,180,216,.12) 0%, transparent 55%),
    linear-gradient(160deg, #080c18 0%, #0d1a30 50%, #080c18 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 0 80px;
}
.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--navy));
}
.hero-grid-lines {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-grid-lines::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,180,216,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-tagline {
  font-size: .78rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--cyan); font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.hero-tagline::before {
  content: ''; width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--cyan) 0%, #5bc8e8 60%, var(--blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.05rem; color: var(--silver); font-weight: 300;
  max-width: 540px; line-height: 1.8; margin-bottom: 36px;
}
.btn-primary-pa {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  border: none; color: #fff; font-weight: 700; font-size: .9rem;
  letter-spacing: 1px; padding: 14px 36px; border-radius: 40px;
  box-shadow: 0 6px 28px rgba(0,180,216,.4);
  transition: all .25s; text-decoration: none; display: inline-block;
}
.btn-primary-pa:hover {
  transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,229,255,.45);
  color: #fff;
}
.btn-outline-pa {
  background: transparent; border: 1.5px solid var(--cyan);
  color: var(--cyan); font-weight: 700; font-size: .9rem;
  letter-spacing: 1px; padding: 13px 36px; border-radius: 40px;
  transition: all .25s; text-decoration: none; display: inline-block;
}
.btn-outline-pa:hover {
  background: var(--cyan); color: var(--navy);
  transform: translateY(-3px);
}
.hero-badge-row {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px;
}
.hero-badge {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 18px;
  font-size: .78rem; font-weight: 600; letter-spacing: .5px;
  color: var(--silver); display: flex; align-items: center; gap: 8px;
  backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--cyan); }
.hero-img-wrap {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-img-glow {
  width: 420px; max-width: 100%;
  background: linear-gradient(135deg, rgba(26,111,196,.2), rgba(0,180,216,.15));
  border: 1px solid var(--border);
  border-radius: 24px; padding: 40px 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 80px rgba(0,180,216,.15), 0 20px 60px rgba(0,0,0,.4);
  position: relative; overflow: hidden;
}
.hero-img-glow::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,.15), transparent 70%);
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-item {
  text-align: center; padding: 20px 10px;
  background: rgba(255,255,255,.03); border-radius: 12px;
  border: 1px solid var(--border);
}
.stat-num {
  font-size: 2rem; font-weight: 900;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.stat-label { font-size: .72rem; color: var(--silver); letter-spacing: 1px; margin-top: 4px; }

/* ── SECTION SHARED ── */
section { position: relative; z-index: 1; }
.section-pad { padding: 90px 0; }
.sec-label {
  font-size: .72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--cyan); font-weight: 700; display: block; margin-bottom: 12px;
}
.sec-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 16px;
}
.sec-sub {
  color: var(--silver); font-size: 1rem; font-weight: 300;
  line-height: 1.8; max-width: 560px;
}
.divider-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px; margin-bottom: 20px;
}

/* ── ABOUT ── */
.about-section { background: var(--deep); }
.about-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px; height: 100%;
  backdrop-filter: blur(8px);
  transition: transform .3s, box-shadow .3s;
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,180,216,.15);
}
.about-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0,180,216,.35);
}
.about-card h4 { font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.about-card p { color: var(--silver); font-size: .9rem; line-height: 1.75; font-weight: 300; }

/* ── SERVICES ── */
.services-section {
  background: linear-gradient(180deg, var(--navy) 0%, #080d1c 100%);
}
.service-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px 28px;
  transition: all .3s; position: relative; overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,180,216,.18);
  border-color: rgba(0,180,216,.35);
}
.service-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,111,196,.3), rgba(0,180,216,.2));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--cyan); margin-bottom: 18px;
}
.service-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 10px; }
.service-card p { color: var(--silver); font-size: .85rem; line-height: 1.7; font-weight: 300; }
.service-list { list-style: none; padding: 0; margin-top: 12px; }
.service-list li {
  color: var(--silver); font-size: .82rem; padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.service-list li::before { content: '✓'; color: var(--cyan); font-weight: 700; }

/* ── MOPH SECTION ── */
.moph-section {
  background: linear-gradient(135deg, #080c1a 0%, #0a1428 50%, #080c1a 100%);
  position: relative; overflow: hidden;
}
.moph-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,196,.08), transparent 65%);
}
.moph-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(26,111,196,.2), rgba(0,180,216,.1));
  border: 1px solid var(--border); border-radius: 30px;
  padding: 6px 20px; font-size: .72rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cyan); font-weight: 700;
  margin-bottom: 20px;
}
.moph-step {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; margin-bottom: 16px;
  display: flex; align-items: flex-start; gap: 18px;
  transition: all .25s;
}
.moph-step:hover {
  border-color: rgba(0,180,216,.4);
  background: rgba(0,180,216,.06);
}
.moph-step-num {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  box-shadow: 0 4px 14px rgba(0,180,216,.35);
}
.moph-step h6 { font-weight: 700; margin-bottom: 4px; font-size: .95rem; }
.moph-step p { color: var(--silver); font-size: .83rem; font-weight: 300; margin: 0; }

/* ── CLIENT LETTER ── */
.letter-section { background: var(--deep); }
.letter-card {
  background: linear-gradient(145deg, rgba(13,21,38,.9), rgba(10,20,36,.95));
  border: 1px solid var(--border); border-radius: 24px;
  padding: 50px 50px 44px;
  position: relative; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.letter-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--blue));
}
.letter-header {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.letter-logo {
  width: 56px; height: 56px; border-radius: 14px; overflow: hidden;
  background: #fff; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.letter-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.letter-from { font-size: .72rem; letter-spacing: 2px; color: var(--cyan); text-transform: uppercase; font-weight: 700; }
.letter-company { font-weight: 800; font-size: 1.1rem; margin-top: 2px; }
.letter-stamp {
  margin-left: auto; text-align: right;
  font-size: .75rem; color: var(--silver); font-weight: 400;
}
.letter-body { font-family: 'Crimson Pro', serif; }
.letter-salutation { font-size: 1.1rem; font-weight: 400; margin-bottom: 16px; color: var(--white); }
.letter-intro { font-size: 1rem; color: var(--silver); line-height: 1.85; margin-bottom: 24px; }
.letter-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.letter-section-title::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.letter-service-list { list-style: none; padding: 0; margin-bottom: 24px; }
.letter-service-list li {
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.04);
  display: flex; align-items: center; gap: 12px;
  font-size: .95rem; color: var(--silver); line-height: 1.5;
}
.letter-service-list li:last-child { border-bottom: none; }
.letter-service-list li i { color: var(--cyan); width: 18px; text-align: center; flex-shrink: 0; }
.letter-closing { font-size: .95rem; color: var(--silver); line-height: 1.85; margin-top: 20px; }
.letter-sign { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.letter-sign-name { font-weight: 800; font-size: 1.05rem; }
.letter-sign-title { color: var(--cyan); font-size: .82rem; font-weight: 600; letter-spacing: 1px; }

/* ── WHY CHOOSE US ── */
.why-section { background: var(--navy); }
.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; border-radius: 16px;
  border: 1px solid transparent;
  transition: all .3s;
}
.why-item:hover {
  background: var(--card-bg);
  border-color: var(--border);
}
.why-icon {
  width: 50px; height: 50px; flex-shrink: 0; border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,111,196,.25), rgba(0,180,216,.15));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--cyan);
}
.why-item h5 { font-weight: 700; font-size: .95rem; margin-bottom: 6px; }
.why-item p { color: var(--silver); font-size: .84rem; line-height: 1.7; font-weight: 300; margin: 0; }

/* ── HOW WE WORK ── */
.how-section { background: var(--deep); }
.process-step {
  text-align: center; padding: 20px;
  position: relative;
}
.process-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff; margin: 0 auto 18px;
  box-shadow: 0 8px 28px rgba(0,180,216,.4);
  position: relative; z-index: 1;
}
.process-step h5 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.process-step p { color: var(--silver); font-size: .85rem; line-height: 1.7; font-weight: 300; }
.process-connector {
  position: absolute; top: 58px; left: calc(50% + 50px);
  width: calc(100% - 100px); height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  z-index: 0;
}

/* ── CONTACT ── */
.contact-section {
  background: linear-gradient(135deg, #070b18 0%, #0a1428 60%, #070b18 100%);
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.07), transparent 65%);
}
.contact-info-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px; margin-bottom: 20px;
}
.contact-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
  box-shadow: 0 4px 16px rgba(0,180,216,.3);
}
.contact-label { font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--silver); font-weight: 600; }
.contact-val { font-weight: 700; font-size: .95rem; color: var(--white); margin-top: 1px; }
.contact-val a { color: var(--white); text-decoration: none; transition: color .2s; }
.contact-val a:hover { color: var(--cyan); }
.form-control-pa {
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  color: var(--white); border-radius: 12px; padding: 14px 18px;
  font-size: .9rem; font-family: 'Montserrat', sans-serif;
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
}
.form-control-pa:focus {
  outline: none; border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,180,216,.15);
  background: rgba(255,255,255,.07);
  color: var(--white);
}
.form-control-pa::placeholder { color: rgba(176,190,197,.5); }
.form-group-pa { margin-bottom: 18px; }
.form-label-pa { font-size: .78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--silver); margin-bottom: 8px; display: block; }

/* ── FOOTER ── */
.footer {
  background: #050810;
  border-top: 1px solid var(--border);
  padding: 50px 0 28px;
}
.footer-brand span {
  font-weight: 800; font-size: 1.1rem;
  background: linear-gradient(90deg, #fff 40%, var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-desc { color: var(--silver); font-size: .83rem; line-height: 1.8; font-weight: 300; margin-top: 12px; max-width: 280px; }
.footer-heading { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--cyan); margin-bottom: 16px; }
.footer-link { display: block; color: var(--silver); font-size: .84rem; font-weight: 400; text-decoration: none; padding: 5px 0; transition: color .2s; }
.footer-link:hover { color: var(--accent); }
.footer-divider { border-color: var(--border); margin: 28px 0 20px; }
.footer-copy { color: rgba(176,190,197,.5); font-size: .75rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--card-bg); border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--silver); font-size: .95rem; transition: all .25s;
  text-decoration: none; margin-right: 8px;
}
.social-btn:hover { background: var(--cyan); border-color: var(--cyan); color: var(--navy); transform: translateY(-3px); }

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }
.fade-up-d4 { transition-delay: .4s; }

/* ── MISC ── */
.glow-border {
  border: 1px solid var(--border);
  box-shadow: 0 0 30px rgba(0,180,216,.08);
}
.text-cyan { color: var(--cyan); }
.bg-gradient-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  margin: 60px 0;
}

@media (max-width: 767.98px) {
  .hero { padding: 80px 0 60px; min-height: auto; }
  .hero-img-glow { display: none; }
  .letter-card { padding: 28px 22px; }
  .process-connector { display: none; }
  .section-pad { padding: 60px 0; }
}
