/* ── MAGRAN IT CONSULTING — SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0B1437;
  --navy-mid: #162050;
  --navy-dark: #080F2E;
  --indigo: #3B4FD4;
  --indigo-light: #5B70F0;
  --coral: #F05A28;
  --coral-light: #FF7A52;
  --gold: #F5C842;
  --teal: #0FA58A;
  --white: #FFFFFF;
  --text-muted: #8A90A8;
  --border: rgba(255,255,255,0.08);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 5%; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(11,20,55,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, var(--indigo), var(--coral));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: white;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.9rem; font-weight: 400; transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.btn-nav {
  background: var(--coral); color: white !important;
  padding: 0.5rem 1.2rem; border-radius: 8px;
  font-weight: 600 !important; transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--coral-light) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--navy-mid); border-bottom: 1px solid var(--border);
  padding: 1.5rem 5%; z-index: 99; flex-direction: column; gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 1rem; padding: 0.4rem 0; border-bottom: 1px solid var(--border); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--coral); color: white;
  padding: 0.85rem 2rem; border-radius: 10px;
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; font-family: var(--font-body);
}
.btn-primary:hover { background: var(--coral-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,90,40,0.3); }
.btn-outline {
  background: transparent; color: white;
  padding: 0.85rem 2rem; border-radius: 10px;
  font-size: 0.95rem; font-weight: 400; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25); transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }

/* ── SECTION COMMON ── */
section { position: relative; z-index: 1; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 5%; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  max-width: 520px; line-height: 1.7; font-weight: 300;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: 68px; min-height: 340px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(59,79,212,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(59,79,212,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-glow {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,79,212,0.2) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; padding: 4rem 5%; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: 0.4; }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,79,212,0.18); border: 1px solid rgba(91,112,240,0.3);
  border-radius: 100px; padding: 0.3rem 1rem;
  font-size: 0.75rem; color: #a0adff; font-weight: 500; margin-bottom: 1rem;
}
.page-hero-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.page-hero-title span { background: linear-gradient(90deg, var(--indigo-light), var(--coral-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 300; max-width: 580px; }

/* ── CARDS ── */
.card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 1.75rem; transition: all 0.25s;
}
.card:hover { border-color: rgba(91,112,240,0.3); background: rgba(59,79,212,0.07); }
.card-icon {
  width: 46px; height: 46px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.ic-blue { background: rgba(59,79,212,0.2); }
.ic-coral { background: rgba(240,90,40,0.18); }
.ic-teal { background: rgba(15,165,138,0.18); }
.ic-gold { background: rgba(245,200,66,0.18); }

/* ── FORMS ── */
.form-input, .form-select, .form-textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  padding: 0.8rem 1rem; color: white; font-size: 0.875rem;
  font-family: var(--font-body); outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--indigo-light); }
.form-select option { background: var(--navy-mid); color: white; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.success-msg {
  display: none; background: rgba(15,165,138,0.15);
  border: 1px solid rgba(15,165,138,0.3); color: #4aded4;
  padding: 1rem; border-radius: 10px; font-size: 0.875rem; text-align: center;
}

/* ── FOOTER ── */
footer { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 3.5rem 5% 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 1.5rem;
}
.footer-brand-desc { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin: 1rem 0 1.25rem; font-weight: 300; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: all 0.2s;
}
.social-link:hover { background: var(--indigo); border-color: var(--indigo); color: white; }
.footer-col-title { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 1rem; }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4); text-decoration: none; color: white; font-size: 1.5rem;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; }
}
