/* =========
   Base
   ========= */

:root {
  --colour-primary: #e53935;
  --colour-primary-dark: #c62828;
  --colour-accent-soft: #ffe6e6;
  --colour-bg: #ffffff;
  --colour-bg-soft: #fff7f7;
  --colour-text-main: #222222;
  --colour-text-muted: #555555;
  --colour-border-soft: #f0d7d7;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.06);
  --radius-card: 18px;
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--colour-text-main);
  background-color: #fafbff;
}

/* Utility */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background-color: var(--colour-bg-soft);
}

.section-heading-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-heading-centered h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.section-heading-centered p {
  margin: 0;
  color: var(--colour-text-muted);
  line-height: 1.6;
}

/* Typography */

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  margin-top: 0;
}

h1 {
  font-size: 2.2rem;
  line-height: 1.25;
}

h2 {
  font-size: 1.9rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--colour-text-muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.18s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--colour-primary);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(229, 57, 53, 0.3);
}

.btn-primary:hover {
  background: var(--colour-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(229, 57, 53, 0.35);
}

/* =========
   Hero
   ========= */

.hero {
  position: relative;
  padding: 2.5rem 0 4.5rem;
  background: #ffffff url("images/hero-bg.jpg") no-repeat center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.98) 50%,
    #ffffff 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
  z-index: 1;
}

.hero-left {
  flex: 1.1;
}

.hero-right {
  flex: 0.9;
  display: flex;
  justify-content: flex-end;
}

.hero-right img {
  max-width: 360px;
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 2.2rem;
}

.hero-content p {
  margin-top: 0.75rem;
  margin-bottom: 1.4rem;
}

/* =========
   Two-column layout
   ========= */

.two-column {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.two-column .column {
  flex: 1 1 280px;
}

.image-column img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* =========
   Feature cards
   ========= */

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

.feature-card {
  background: #ffeef0;
  border-radius: var(--radius-card);
  padding: 1.6rem 1.4rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--colour-primary);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

/* =========
   Solutions
   ========= */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
  margin-bottom: 1.8rem;
}

.solutions-column {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.solutions-column h4 {
  margin-bottom: 0.8rem;
}

.solutions-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solutions-column li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.solutions-column li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--colour-primary);
}

.solutions-highlight {
  margin-top: 1.6rem;
  background: #ffe3e3;
  border-radius: var(--radius-card);
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--colour-border-soft);
  font-size: 0.95rem;
}

/* =========
   Leadership
   ========= */

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

.leadership-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: center;
}

.leader-card {
  text-align: center;
  background: #ffffff;
  border-radius: 22px;
  padding: 1.8rem 1.2rem 2rem;
  box-shadow: var(--shadow-soft);
  max-width: 320px;
}

.leader-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.leader-role {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: #777777;
}

.leader-bio {
  font-size: 0.92rem;
}

/* =========
   Stats
   ========= */

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

.stat-card {
  text-align: center;
  padding: 0 1.4rem;
}

.stat-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 5px solid rgba(229, 57, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--colour-primary-dark);
}

/* =========
   Contact
   ========= */

.contact-wrapper {
  align-items: flex-start;
}

.contact-wrapper .lead {
  font-weight: 600;
  color: var(--colour-text-main);
}

.contact-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 0;
}

.contact-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.contact-details {
  padding: 1.5rem 1.6rem 1.7rem;
}

.contact-details h3 {
  margin-bottom: 0.5rem;
}

.contact-meta {
  font-size: 0.95rem;
}

.contact-meta a {
  color: var(--colour-primary-dark);
  text-decoration: none;
}

/* =========
   Office section
   ========= */

.office-wrapper {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.office-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.office-text {
  flex: 1 1 260px;
}

/* =========
   Footer
   ========= */

.site-footer {
  background: #ffffff;
  border-top: 1px solid #ececec;
  padding: 1.2rem 0;
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
  color: #888888;
}

/* =========
   Responsive
   ========= */

@media (max-width: 960px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    justify-content: center;
  }

  .hero-left {
    order: 2;
  }

  .hero-right {
    order: 1;
  }

  .two-column {
    flex-direction: column;
  }

  .feature-cards,
  .solutions-grid,
  .leadership-grid,
  .leadership-grid-two,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .office-wrapper {
    flex-direction: column;
  }

  .contact-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 1.8rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  .section {
    padding: 3.2rem 0;
  }
}
