/* ============================================================
   PMH GROUP OF COMPANIES — MAIN STYLESHEET
   Design: Clean, minimal, corporate & professional
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --navy:          #0B1D3A;
  --navy-mid:      #122444;
  --navy-light:    #1C3560;
  --red:           #C8001A;
  --red-hover:     #A6001A;
  --black:         #000000;
  --silver:        #A6A9AA;
  --silver-light:  #F0F1F2;
  --off-white:     #F7F8FA;
  --white:         #FFFFFF;
  --text:          #1C2333;
  --text-muted:    #5A6578;
  --border:        #E2E5EA;
  --shadow-sm:     0 2px 8px rgba(11,29,58,.07);
  --shadow-md:     0 6px 24px rgba(11,29,58,.10);
  --shadow-lg:     0 16px 48px rgba(11,29,58,.14);
  --radius:        8px;
  --radius-lg:     14px;
  --transition:    .25s ease;
  --container:     1200px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-muted); line-height: 1.8; }

.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
  padding: .35rem 1rem;
  border: 2px solid var(--white);
  border-radius: 999px;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 90px 0; }
.section--alt { background: var(--off-white); }
.section--navy { background: var(--navy); }
.section--dark { background: var(--navy-mid); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section__header p { margin-top: .75rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,0,26,.30);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav__logo-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--navy);
}
.nav__logo-tagline {
  font-size: .9rem;
  color: var(--silver);
  letter-spacing: .04em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav__link {
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: .5rem .85rem;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--navy);
  background: var(--off-white);
}

.nav__cta {
  background: var(--red);
  color: var(--white) !important;
  padding: .55rem 1.2rem !important;
  border-radius: 6px;
}
.nav__cta:hover {
  background: var(--red-hover) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,0,26,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero__label {
  color: var(--red);
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 560px; margin-top: .6rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(200,0,26,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--red);
  flex-shrink: 0;
}

/* ── Grid utilities ───────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Stats bar ────────────────────────────────────────────── */
.stats {
  background: var(--navy);
  padding: 52px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stats__item { padding: 1rem; }
.stats__value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stats__label {
  font-size: .85rem;
  color: var(--silver);
  margin-top: .4rem;
  letter-spacing: .03em;
}
.stats__divider {
  width: 1px;
  background: rgba(255,255,255,.1);
  margin: 0 auto;
  height: 100%;
  display: none;
}

/* ── Service cards ────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__number {
  font-family: 'Outfit', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--silver);
  margin-bottom: .5rem;
}

/* ── Team cards ───────────────────────────────────────────── */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.team-card__photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--silver-light);
}
.team-card__photo-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--silver-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--silver);
}
.team-card__photo-placeholder svg { width: 52px; height: 52px; }
.team-card__photo-placeholder span { font-size: .8rem; }
.team-card__body { padding: 1.5rem; }
.team-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.team-card__role {
  font-size: .85rem;
  color: var(--red);
  font-weight: 600;
  margin-top: .2rem;
  margin-bottom: .75rem;
}
.team-card__body p { font-size: .9rem; }

/* ── Value pills ──────────────────────────────────────────── */
.value-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.1rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition);
}
.value-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.value-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── Why choose ───────────────────────────────────────────── */
.reason-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.reason-item:hover { background: var(--off-white); }
.reason-item__num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(200,0,26,.15);
  line-height: 1;
  min-width: 2rem;
  flex-shrink: 0;
}
.reason-item__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: .2rem;
}
.reason-item__body { font-size: .88rem; }

/* ── Contact details ──────────────────────────────────────── */
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(200,0,26,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--red);
  flex-shrink: 0;
  margin-top: .1rem;
}
.contact-item__label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--silver);
  margin-bottom: .25rem;
}
.contact-item__value {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--navy);
  font-size: .97rem;
}
.contact-item__value a:hover { color: var(--red); }

/* ── Contact form ─────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .45rem;
  font-family: 'Outfit', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,29,58,.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 70px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer__logo-img { width: 44px; height: 44px; object-fit: contain; background: var(--white);
border-radius: 50%; padding: 4px; }
.footer__logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.footer__about { font-size: .88rem; line-height: 1.75; }
.footer__social {
  display: flex;
  gap: .6rem;
  margin-top: 1.25rem;
}
.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
  text-decoration: none;
}
.footer__social-link:hover {
  background: var(--red);
  color: var(--white);
}

.footer__col-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--white);
  margin-bottom: 1.1rem;
  letter-spacing: .03em;
}
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__link {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin-bottom: .9rem;
  font-size: .85rem;
}
.footer__contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: .2rem;
  color: var(--red);
}

.footer__bottom {
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--white); }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,0,26,.13) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(28,53,96,.5) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); max-width: 640px; margin: 0 auto .6rem; }
.cta-section p { color: rgba(255,255,255,.6); max-width: 520px; margin: 0 auto 2rem; }
.cta-section__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Divider line ─────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── Badge ────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: .3rem .75rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}
.badge--red { background: rgba(200,0,26,.1); color: var(--red); }
.badge--navy { background: rgba(11,29,58,.08); color: var(--navy); }

/* ── Mobile nav ───────────────────────────────────────────── */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 0 2rem;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  padding: .85rem 32px;
  border-radius: 0;
  font-size: 1rem;
  display: block;
}
.nav__mobile .nav__cta {
  margin: .75rem 32px 0;
  border-radius: var(--radius);
  text-align: center;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section__btns { flex-direction: column; align-items: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
}

/* ── Utility ──────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-white   { color: var(--white); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.flex-wrap { flex-wrap: wrap; }
