/* ═══════════════════════════════════════════════
   MULTICED SOLUTIONS — SHARED DESIGN SYSTEM
   Brand colours extracted from logo
   ═══════════════════════════════════════════════ */

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

:root {
  --blue:       #2a7ab8;
  --blue-dark:  #1a4f7a;
  --blue-deep:  #0f2d47;
  --blue-light: #5aaad4;
  --blue-pale:  #e8f4fb;
  --blue-mid:   #cce5f5;
  --gold:       #e8b84b;
  --gold-dark:  #c49530;
  --gold-pale:  #fdf3dc;
  --navy:       #1a3a5c;
  --white:      #ffffff;
  --cream:      #f8fbfe;
  --muted:      #64788a;
  --border:     #d0e2ef;
  --text:       #1a2f42;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  background: rgba(255,255,255,0.97);
  border-bottom: 2px solid var(--gold);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(42,122,184,0.12); }
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.nav-brand-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.nav-brand-text span {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: none;
  list-style: none;
  gap: 36px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  display: none;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--blue-dark); }
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--white);
  position: absolute;
  top: 100%; left: 0; right: 0;
  z-index: 199;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  padding: 14px 32px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover { color: var(--blue); background: var(--blue-pale); padding-left: 40px; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta   { display: block; }
  .nav-toggle { display: none; }
}

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}

/* ── SECTION HEADING ── */
.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-heading em { font-style: italic; color: var(--blue); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-blue  { background: var(--blue);  color: var(--white); }
.btn-blue:hover  { background: var(--blue-dark); }
.btn-navy  { background: var(--navy);  color: var(--white); }
.btn-navy:hover  { background: var(--blue-deep); }
.btn-ghost { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-ghost:hover { background: var(--blue-pale); }
.btn-gold  { background: var(--gold);  color: var(--navy); }
.btn-gold:hover  { background: var(--gold-dark); color: var(--white); }
.btn-wa    { background: #25d366; color: var(--white); }
.btn-wa:hover    { background: #1ebe5c; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 56px 0 32px;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand img {
  width: 34px; height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}
.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
}
.footer-col-title {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col-links a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bar { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-copy {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}
.footer-credit {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}
.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit a:hover { color: #f5d080; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── SERVICE PAGE HERO ── */
.page-hero {
  background: var(--blue-deep);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=40') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 50%; height: 100%;
  background: var(--blue-dark);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.4;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
}
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero-tag::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--gold);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.8;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb span { color: var(--gold); }

/* ── SERVICE LAYOUT ── */
.service-layout {
  padding: 80px 0 100px;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .service-grid { grid-template-columns: 1fr 340px; gap: 60px; }
}

/* main content */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 44px;
  margin-bottom: 28px;
}
.service-card h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card-sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.75;
}
.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.checklist.two-col { grid-template-columns: 1fr 1fr; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--blue-pale);
  border-left: 3px solid var(--blue);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
}
.checklist li strong { display: block; font-weight: 500; margin-bottom: 2px; }
.checklist li p { font-weight: 300; color: var(--muted); font-size: 0.82rem; }
.check-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--blue);
}
.service-note {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.75;
}
.service-note strong { font-weight: 500; }

/* sidebar */
.sidebar {}
.cta-card {
  background: var(--blue-deep);
  padding: 36px 32px;
  position: sticky;
  top: 88px;
  color: var(--white);
}
.cta-card__label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.cta-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-card h3 em { font-style: italic; color: var(--gold); }
.cta-card p {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 28px;
}
.cta-card .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.cta-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 24px 0;
}
.cta-card-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-card-contact a {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.cta-card-contact a:hover { color: var(--gold); }

@media (max-width: 640px) {
  .checklist.two-col { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }
  .container { padding: 0 20px; }
}
