/* ==========================================================================
   Wamp Multimedia — Stylesheet
   Edit the variables in :root below to change colors/spacing site-wide.
   ========================================================================== */

:root {
  /* --- Colors (sampled from the Vamp logo gradient) --- */
  --ink: #1b1830;          /* primary text */
  --ink-soft: #52506b;     /* secondary text */
  --indigo-900: #2b2171;   /* deep accent — footer, primary buttons */
  --indigo-700: #3c3a93;
  --indigo-600: #4a57a5;   /* links, secondary accents */
  --sky-500: #5a8fcb;      /* highlights, hover */
  --sky-300: #8fc0ea;      /* illustration accents */
  --bg: #ffffff;
  --bg-alt: #f6f7fc;       /* alternate section background (kept for form panels) */
  --border: #e3e5f0;
  --white: #ffffff;
  --yellow: #aedefa;       /* page-margin accent */
  --yellow-deep: #d99a1b;

  /* --- Extra banner illustration palette --- */
  --coral: #f2745c;
  --teal: #2ca6a4;
  --teal-pale: #eaf6f6;
  --gold-pale: #fdf3da;

  /* --- Type --- */
  --font-heading: "Sora", "Segoe UI", Arial, sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;

  /* --- Layout --- */
  --content-width: 1140px;
  --section-pad-y: 96px;
  --section-pad-y-mobile: 56px;
  --radius: 6px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--yellow);
  padding: 0 clamp(10px, 5vw, 72px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* The page-shell holds header/main/footer on a white background;
   the yellow set on <body> above shows through as side margins. */
.page-shell {
  max-width: 1400px;
  margin: 0 auto;
  background: var(--bg);
  box-shadow: 0 0 0 1px rgba(43, 33, 113, 0.04), 0 40px 70px -40px rgba(43, 33, 113, 0.18);
}
@media (max-width: 900px) {
  body { padding: 0 10px; }
  .page-shell { box-shadow: none; }
}
img { max-width: 100%; display: block; }
a { color: var(--indigo-600); }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 16px 0;
  font-weight: 600;
}
p { margin: 0 0 16px 0; max-width: 68ch; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--sky-500);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--indigo-900);
  color: var(--white);
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad-y) 0;
}
.section--alt {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-eyebrow-free-heading {
  max-width: 60ch;
}
.section-intro {
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--indigo-900);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--indigo-700);
}
.btn-secondary {
  background: transparent;
  color: var(--indigo-900);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--indigo-600);
  color: var(--indigo-600);
}
.btn-whatsapp {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border);
}
.btn-whatsapp:hover {
  border-color: var(--sky-500);
}
.btn-whatsapp svg { flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  height: 32px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav ul {
  display: flex;
  gap: 28px;
}
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-bottom-color: var(--sky-500);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 var(--section-pad-y);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-trust {
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.hero-art {
  animation: hero-rise 0.7s ease both;
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art { animation: none; }
}

/* ---------- What we do ---------- */
.capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.capability {
  border-top: 3px solid var(--sky-500);
  padding-top: 14px;
}
.capability h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.capability p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* ---------- Banner illustrations ---------- */
.banner {
  margin: 40px 0 8px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.banner svg {
  display: block;
  width: 100%;
  height: auto;
}
.page-hero .banner {
  margin-top: 32px;
}

/* ---------- Services ---------- */
.service-list {
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.service-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.service-row h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
  position: relative;
  padding-left: 18px;
}
.service-row h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 1.1em;
  background: var(--indigo-600);
  border-radius: 2px;
}
.service-row p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* ---------- Why choose us ---------- */
.reasons-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.reason {
  background: var(--bg);
  padding: 28px 28px;
  border-left: 3px solid var(--indigo-600);
}
.reason h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.reason p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* ---------- Contact / enquiry section (homepage) ---------- */
.contact-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-method .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo-900);
}
.contact-method h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.contact-method p,
.contact-method a {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-decoration: none;
}
.contact-method a:hover { color: var(--indigo-600); text-decoration: underline; }

/* ---------- Forms ---------- */
.enquiry-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--white);
  color: var(--ink);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--indigo-600);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-required {
  color: var(--indigo-600);
}
.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 4px;
  margin-bottom: 0;
}
.form-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  background: #eef7f0;
  color: #1f6b3a;
  border: 1px solid #c7e7cf;
}
.form-status.is-error {
  background: #fbeeee;
  color: #8a2a2a;
  border: 1px solid #f0caca;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--indigo-900);
  color: #d9dcf2;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 28px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  color: #b9bde3;
  font-size: 0.92rem;
  max-width: 32ch;
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.site-footer a {
  color: #c7cbea;
  text-decoration: none;
  font-size: 0.92rem;
}
.site-footer a:hover { color: var(--white); }
.footer-list li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  font-size: 0.85rem;
  color: #9ea3d1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Contact page specific ---------- */
.page-hero {
  padding: 56px 0 16px;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.map-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
}
.map-frame iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 360px; margin: 0 auto; }
  .capabilities { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 1fr; gap: 8px; }
  .reasons-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root {
    --section-pad-y: var(--section-pad-y-mobile);
  }
  .main-nav { position: fixed; inset: 76px 0 auto 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch; padding: 20px 24px 28px; gap: 18px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity 0.15s ease, transform 0.15s ease; }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 16px; }
  .header-cta .btn-whatsapp span { display: none; }
  .nav-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}
