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

:root {
  --navy: #0D1B2A;
  --navy-dark: #08131F;
  --gold: #C9A96E;
  --gold-soft: #D6B87F;
  --cream: #F7F2E7;
  --white: #F6F4EE;
  --text: #E9E7E0;
  --muted: #B2AA9F;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(13, 27, 42, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 0.35em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.25rem;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--navy-dark);
}

[data-en][data-sw] {
  transition: opacity 0.18s ease;
}

.menu-toggle {
  display: none;
  width: 2.2rem;
  aspect-ratio: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 999px;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.9) brightness(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.45), rgba(13, 27, 42, 0.95));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-brand {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--gold);
  font-style: italic;
}

.hero-inner h1,
.section-header h2,
.about-copy h2,
.contact-copy h2,
.cta-inner h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.hero-inner h1 span,
.service-number,
.how-step,
.cta-inner h2 {
  color: var(--gold);
  font-style: italic;
}

.hero-copy {
  margin: 1.5rem 0;
  max-width: 38rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-inner h1 {
  text-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.section-header {
  position: relative;
  margin-bottom: 2rem;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 4rem;
  height: 2px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-large {
  padding: 1.25rem 2.4rem;
}

.about-section,
.services-section,
.how-section,
.contact-section {
  padding: 5rem 0;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(13, 27, 42, 0.70), rgba(13, 27, 42, 0.90)), url('lukinga-contact.jpeg');
  background-size: cover;
  background-position: center 35%;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.55);
  pointer-events: none;
}

.contact-section > .container {
  position: relative;
  z-index: 1;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  min-height: 420px;
  border-radius: 32px;
  background-image: url('mc-lukinga-about.png');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.about-copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.about-copy p {
  margin: 1.5rem 0;
  max-width: 34rem;
  color: var(--text);
  line-height: 1.8;
}

.about-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.about-copy li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text);
}

.about-copy li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header.light {
  background: var(--cream);
  padding: 2.5rem 2rem 1.5rem;
  border-radius: 24px;
}

.section-header.light .eyebrow {
  margin-bottom: 1rem;
  color: var(--navy);
}

.section-header.light h2 {
  color: var(--navy);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #111d2c;
  border: 1px solid rgba(201, 169, 110, 0.16);
  border-radius: 28px;
  padding: 2rem;
  min-height: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), transparent);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.22);
  border-color: rgba(201, 169, 110, 0.24);
}

.service-number {
  display: inline-flex;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
}

.service-card h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.how-section {
  background: var(--cream);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.how-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(13, 27, 42, 0.08);
}

.how-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.how-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  color: var(--navy);
}

.how-card p {
  margin: 0;
  color: #5f5b53;
  line-height: 1.8;
}

.cta-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(180deg, rgba(13, 27, 42, 0.72), rgba(13, 27, 42, 0.90)), url('mc-lukinga-hero.jpg');
  background-size: cover;
  background-position: center 35%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.35), rgba(13, 27, 42, 0.92));
}

.cta-inner {
  position: relative;
  padding: 4rem 0;
  max-width: 720px;
}

.cta-inner h2 {
  margin: 0 0 1.5rem;
  color: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.contact-copy p {
  margin: 1.5rem 0;
  max-width: 38rem;
  color: var(--text);
  line-height: 1.8;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list div {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1rem 1.25rem;
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--gold);
}

.contact-list span {
  font-size: 1.25rem;
}

.contact-card {
  padding: 2.2rem;
  border-radius: 32px;
  background: #111d2c;
  border: 1px solid rgba(201, 169, 110, 0.18);
  box-shadow: var(--shadow);
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-card h3 {
  margin-top: 0;
  font-size: 1.8rem;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
}

.faq-section {
  padding: 5rem 0;
  background: var(--navy-dark);
}

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 780px;
}

.faq-item {
  background: #111d2c;
  border: 1px solid rgba(201, 169, 110, 0.16);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(201, 169, 110, 0.32);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

@media (max-width: 960px) {
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    background: rgba(13, 27, 42, 0.96);
    padding: 1rem 1.25rem 1.25rem;
    border-radius: 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-section,
  .cta-section {
    background-position: center 50%;
  }

  .hero-inner {
    padding: 3rem 0;
  }

  .hero-inner h1,
  .about-copy h2,
  .contact-copy h2,
  .cta-inner h2 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
}

/* ── HERO ENTRANCE ANIMATIONS ────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-delay-1 { animation-delay: 0.15s; }
.reveal-delay-2 { animation-delay: 0.3s; }
.reveal-delay-3 { animation-delay: 0.45s; }

/* ── SCROLL REVEAL ───────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── WHATSAPP FLOAT ──────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

/* ── SECTION HEADING COLOURS (dark bg) ───────── */
.services-section .section-header h2,
.faq-section .section-header h2 {
  color: var(--white);
}

.services-section .section-header .eyebrow,
.faq-section .section-header .eyebrow {
  color: var(--gold);
}
