/* ============================================
   AARIZON SERVICES — Global Stylesheet v2
   Editorial · Professional · Distinctive
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #0B2545;
  --navy-mid:    #13315C;
  --blue:        #1A56DB;
  --blue-mid:    #2563EB;
  --blue-light:  #EFF6FF;
  --accent:      #E85D04;
  --accent-light:#FFF0E6;
  --white:       #FFFFFF;
  --off-white:   #F9FAFB;
  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-400:    #9CA3AF;
  --gray-500:    #6B7280;
  --gray-600:    #4B5563;
  --gray-800:    #1F2937;
  --gray-900:    #111827;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --shadow-xs:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md:  0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.05);
  --shadow-lg:  0 20px 40px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.06);
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.01em; }
h4, h5     { font-family: var(--font-body); font-weight: 600; line-height: 1.3; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; }
p  { font-size: 1rem; color: var(--gray-500); line-height: 1.8; font-weight: 400; }

/* ── Layout ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ── Overline label ── */
.overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px; font-family: var(--font-body);
}
.overline::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--accent); flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 2px 12px rgba(232,93,4,0.3); }
.btn-primary:hover { background: #c94e00; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,93,4,0.4); }
.btn-navy   { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost  { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 28px; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(11, 37, 69, 0.97);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07), 0 4px 24px rgba(0,0,0,0.2);
}
.navbar-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: var(--font-body); font-size: 1.25rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.06em; text-transform: uppercase;
}
.logo span { color: var(--accent); }
.logo em {
  font-style: normal; font-weight: 300; letter-spacing: 0.12em;
  font-size: 0.65rem; display: block; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.2em; line-height: 1;
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 500;
  padding: 7px 13px; border-radius: 6px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.09); }
.nav-cta {
  background: var(--accent) !important; color: var(--white) !important;
  padding: 9px 22px !important; border-radius: 7px !important;
  margin-left: 6px;
}
.nav-cta:hover { background: #c94e00 !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--navy); padding: 12px 24px 24px; z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; color: rgba(255,255,255,0.8); font-weight: 500;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition); font-size: 0.95rem;
}
.mobile-menu a:hover { color: var(--white); padding-left: 8px; }
.mobile-menu a:last-child { border-bottom: none; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 130px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  width: 480px; height: 480px; border-radius: 50%;
  background: rgba(26, 86, 219, 0.18);
  top: -120px; right: -80px; pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(232, 93, 4, 0.1);
  bottom: -60px; left: 8%; pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero p  { color: rgba(255,255,255,0.68); font-size: 1.1rem; max-width: 600px; line-height: 1.75; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb .sep { font-size: 0.6rem; }
.breadcrumb span { color: rgba(255,255,255,0.8); }

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); padding: 32px;
  transition: var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #DBEAFE; }

/* ── STATS ── */
.stats-strip { background: var(--navy); padding: 60px 0; }
.stats-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stat-item .num {
  font-family: var(--font-head); font-size: 3.2rem; font-weight: 700;
  color: var(--accent); line-height: 1; font-style: italic;
}
.stat-item .label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 10px; font-weight: 500; letter-spacing: 0.02em; }

/* ── DIVIDER RULE ── */
.rule { width: 48px; height: 3px; background: var(--accent); border-radius: 2px; margin: 18px 0 26px; }
.rule-center { margin-left: auto; margin-right: auto; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy); padding: 88px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(26,86,219,0.15);
  top: -200px; right: -100px; pointer-events: none;
}
.cta-band::after {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(232,93,4,0.08);
  bottom: -120px; left: 5%; pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 540px; margin: 0 auto 36px; }
.cta-band .container { position: relative; z-index: 1; }

/* ── FOOTER ── */
footer { background: var(--gray-900); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
}
.footer-brand .logo { font-size: 1.1rem; display: block; margin-bottom: 14px; }
.footer-brand > p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.75; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.82rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-col h5 {
  font-family: var(--font-body); color: rgba(255,255,255,0.9); font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.contact-item .icon { color: var(--accent); margin-top: 3px; flex-shrink: 0; font-size: 0.85rem; }
.contact-item span { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-700, #374151); margin-bottom: 7px; letter-spacing: 0.01em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--gray-200); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.92rem; color: var(--gray-800);
  background: var(--white); transition: var(--transition); outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  padding: 14px 22px; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem;
  z-index: 9999; display: none; align-items: center; gap: 10px; box-shadow: var(--shadow-lg);
}
.toast.success { background: #1B5E20; color: #fff; display: flex; }
.toast.error   { background: #B71C1C; color: #fff; display: flex; }

/* ── PROCESS TIMELINE ── */
.process-timeline { position: relative; padding-left: 52px; }
.process-timeline::before {
  content: ''; position: absolute; left: 18px; top: 8px; bottom: 8px;
  width: 1px; background: var(--gray-200);
}
.process-step { position: relative; margin-bottom: 40px; }
.process-step:last-child { margin-bottom: 0; }
.process-dot {
  position: absolute; left: -43px; top: 2px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: var(--font-body); font-weight: 700; font-size: 0.78rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--gray-200);
}
.process-step h4 { color: var(--navy); margin-bottom: 6px; font-size: 0.98rem; }
.process-step p  { font-size: 0.9rem; }

/* ── TAGS ── */
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 5px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  background: var(--blue-light); color: var(--blue);
}
.tag-accent { background: var(--accent-light); color: var(--accent); }
.tag-navy   { background: rgba(11,37,69,0.08); color: var(--navy); }

/* ── SCROLL REVEAL ── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-reveal].visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 2.2rem; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
.animate-up   { animation: fadeUp 0.6s ease both; }
.animate-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.animate-up-3 { animation: fadeUp 0.6s 0.3s ease both; }

/* ── MISC UTILITIES ── */
.text-navy    { color: var(--navy) !important; }
.text-accent  { color: var(--accent) !important; }
.text-muted   { color: var(--gray-400) !important; }
.bg-off-white { background: var(--off-white); }
.border-top   { border-top: 1px solid var(--gray-200); }
