/* ============================================================
   [COMPANY NAME] LLP — Main Stylesheet
   Design: Deep navy + saffron accent, clean corporate modern
   ============================================================ */

:root {
  --navy:      #0D1B3E;
  --navy-mid:  #162447;
  --navy-light:#1F3A6E;
  --saffron:   #E87722;
  --saffron-lt:#F9A84D;
  --cream:     #F8F6F1;
  --white:     #FFFFFF;
  --grey-100:  #F4F5F7;
  --grey-200:  #E8EAF0;
  --grey-400:  #9BA3B5;
  --grey-700:  #3D4557;
  --text:      #1A1F30;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(13,27,62,0.10);
  --shadow-lg: 0 12px 48px rgba(13,27,62,0.16);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--grey-700); }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--grey { background: var(--grey-100); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.75); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 6px;
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 600;
  transition: all var(--transition); cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-primary   { background: var(--saffron); color: var(--white); }
.btn-primary:hover { background: var(--saffron-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,119,34,0.35); }
.btn-outline   { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy      { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ── Section Header ── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { font-size: 1.05rem; }

/* ── Cards ── */
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--saffron); }
.card__icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(232,119,34,0.12), rgba(232,119,34,0.04));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.6rem;
}
.card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.card p   { font-size: 0.93rem; line-height: 1.6; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,62,0.96); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all var(--transition);
}
.nav.scrolled { background: rgba(13,27,62,0.99); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 2rem;
}
.nav__logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 800;
  color: var(--white); flex-shrink: 0;
}
.nav__logo-mark {
  width: 36px; height: 36px; background: var(--saffron); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: white; font-family: var(--font-head);
  flex-shrink: 0;
}
.nav__links {
  display: flex; align-items: center; gap: 0.25rem; flex: 1; justify-content: center;
}
.nav__links a {
  color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500;
  padding: 0.5rem 0.85rem; border-radius: 6px;
  transition: all var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav__cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav__phone { color: var(--saffron); font-size: 0.88rem; font-weight: 600; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); display: block; }
.nav__mobile { display: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1a2d5a 100%);
  position: relative; overflow: hidden; padding-top: 68px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(232,119,34,0.15); border: 1px solid rgba(232,119,34,0.3);
  border-radius: 100px; padding: 0.4rem 1rem; margin-bottom: 1.5rem;
  font-size: 0.82rem; color: var(--saffron-lt); font-weight: 600;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--saffron); }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,0.72); margin-bottom: 2rem; max-width: 520px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__stats { display: flex; gap: 2rem; }
.hero__stat strong { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero__stat span   { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; display: block; }
.hero__visual {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 2rem; backdrop-filter: blur(8px);
}
.hero__visual-title { color: rgba(255,255,255,0.5); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.service-pill {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; border-radius: 8px;
  background: rgba(255,255,255,0.05); margin-bottom: 0.5rem;
  border: 1px solid rgba(255,255,255,0.06); transition: var(--transition);
}
.service-pill:hover { background: rgba(232,119,34,0.1); border-color: rgba(232,119,34,0.2); }
.service-pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--saffron); flex-shrink: 0; }
.service-pill span { font-size: 0.9rem; color: rgba(255,255,255,0.8); font-weight: 500; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--cream); border-bottom: 1px solid var(--grey-200); padding: 1.5rem 0; }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; font-weight: 600; color: var(--navy-light); }
.trust-item-icon { font-size: 1.2rem; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.why-card {
  text-align: center; padding: 2rem 1.5rem;
  border-radius: var(--radius); background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); transition: var(--transition);
}
.why-card:hover { background: rgba(232,119,34,0.1); border-color: rgba(232,119,34,0.25); }
.why-card__icon { font-size: 2.2rem; margin-bottom: 1rem; }
.why-card h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1rem; }
.why-card p { font-size: 0.88rem; }

/* ── SECTORS ── */
.sectors-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.sector-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: 100px; padding: 0.55rem 1.1rem;
  font-size: 0.88rem; font-weight: 500; color: var(--navy-light);
  transition: var(--transition); box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.sector-tag:hover { border-color: var(--saffron); color: var(--saffron); background: rgba(232,119,34,0.04); }

/* ── PROCESS ── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--navy-light));
  z-index: 0;
}
.process-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.process-step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); border: 3px solid var(--saffron);
  color: var(--saffron); font-family: var(--font-head); font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--grey-100);
}
.process-step h4 { margin-bottom: 0.4rem; font-size: 0.95rem; }
.process-step p  { font-size: 0.84rem; }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(232,119,34,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--saffron); margin-bottom: 0.25rem; }
.contact-item-text span   { font-size: 0.95rem; color: var(--grey-700); }

.contact-form {
  background: var(--white); border-radius: 14px; padding: 2.5rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--grey-200);
}
.contact-form h3 { margin-bottom: 1.5rem; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--grey-700); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid var(--grey-200); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  transition: border-color var(--transition);
  background: var(--grey-100);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--saffron); background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,119,34,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }

/* ── DOWNLOADS ── */
.download-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.download-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--grey-200); padding: 1.75rem;
  display: flex; align-items: center; gap: 1.25rem;
  transition: var(--transition); box-shadow: var(--shadow);
}
.download-card:hover { border-color: var(--saffron); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.download-card__icon {
  width: 56px; height: 56px; background: linear-gradient(135deg,#1F3A6E,#0D1B3E);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0; color: white;
}
.download-card__info { flex: 1; }
.download-card__info h4 { font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--navy); }
.download-card__info p  { font-size: 0.8rem; color: var(--grey-400); margin-bottom: 0.75rem; }
.download-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--saffron); color: white; border-radius: 6px;
  padding: 0.45rem 1rem; font-size: 0.82rem; font-weight: 600;
  transition: var(--transition);
}
.download-btn:hover { background: var(--saffron-lt); }

/* ── FOOTER ── */
.footer { background: #080E20; color: rgba(255,255,255,0.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p  { font-size: 0.9rem; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-col h4   { color: var(--white); font-size: 0.9rem; margin-bottom: 1.1rem; letter-spacing: 0.04em; }
.footer-col li   { margin-bottom: 0.5rem; }
.footer-col a    { font-size: 0.88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--saffron); }
.footer-social   { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--saffron); color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.82rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--saffron); }

/* ── MISC ── */
.saffron-line {
  width: 52px; height: 4px; background: var(--saffron);
  border-radius: 2px; margin: 0.75rem 0 0;
}
.saffron-line--center { margin: 0.75rem auto 0; }

.tag {
  display: inline-block; background: rgba(232,119,34,0.1);
  color: var(--saffron); border-radius: 4px; padding: 0.25rem 0.65rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}

/* Floating CTA */
.float-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem 1.25rem; border-radius: 50px;
  font-size: 0.88rem; font-weight: 700; box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: var(--transition); cursor: pointer;
}
.float-btn-wa  { background: #25D366; color: white; }
.float-btn-wa:hover  { background: #1ebe5a; transform: scale(1.05); }
.float-btn-tel { background: var(--saffron); color: white; }
.float-btn-tel:hover { background: var(--saffron-lt); transform: scale(1.05); }

/* Animation */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__phone { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy); padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav__mobile.open { display: block; }
  .nav__mobile a {
    display: block; padding: 0.75rem 0; color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.95rem;
  }
  .nav__mobile .btn { margin-top: 1rem; width: 100%; justify-content: center; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__stats { gap: 1.25rem; }
  .hero__stat strong { font-size: 1.5rem; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-steps::before { display: none; }
  .trust-bar__inner { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; }
  .float-cta { bottom: 1rem; right: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .fade-in { opacity: 1; transform: none; }
}
