:root {
  --pink: #D279B1;
  --pink-dark: #9d5a84;
  --navy: #080E32;
  --card-bg: #1e434d;
  --text-main: #EFECE7;
  --max-width: 960px;
  --font-main: 'Montserrat', sans-serif;
}

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

a {
  color: var(--pink);
  transition: color 0.2s;
}

a:hover {
  color: var(--pink-dark);
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text-main);
  line-height: 1.6;
  background-color: #212526;
}

/* ── Header / Hero ── */
header {
  color: white;
  text-align: center;
  padding: 1.5rem 2rem;
  position: relative;
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.logo {
  max-height: 250px;
  width: auto;
  height: auto;
  display: block;
}

.hero-text {
  text-align: left;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0;
  color: var(--navy);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-sub {
  text-align: center;
  max-width: 1100px;
  margin: 1rem auto 0;
  padding: 0 2rem;
}

.hero-sub p {
  margin: 0 auto 1.5rem;
  color: var(--text-main);
  max-width: 600px;
  font-size: 1.2rem;
}

.btn-primary {
  background: var(--pink);
  color: var(--text-main);
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--pink-dark);
}

@media (max-width: 600px) {
  .hero {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .logo {
    max-height: 84px;
  }

  .hero .hero-text {
    text-align: center;
  }

  .hero .hero-text h1 {
    text-align: center;
  }
}

/* ── Sections ── */
section {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
}

/* ── Services grid ── */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--navy);
}

/* ── Intro section ── */
.intro-section {
  max-width: 780px;
  margin: 2.5rem auto;
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--pink);
  background: var(--card-bg);
  border-radius: 0 8px 8px 0;
}

.intro-section p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  opacity: 0.9;
}

.intro-cta {
  text-align: center;
  margin: 1.25rem auto 0;
}

/* ── Process section ── */
.process-section {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.process-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.process-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--text-main);
  opacity: 0.75;
  font-size: 0.95rem;
}

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

.process-card {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  position: relative;
  border-top: 3px solid var(--pink);
  transition: transform 0.2s, box-shadow 0.2s;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.step-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--pink);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text-main);
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-main);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ── Enquiry form ── */
.enquiry {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.enquiry h2 {
  margin-bottom: 1rem;
  text-align: center;
}

.enquiry form {
  display: grid;
  gap: 1rem;
}

.enquiry input,
.enquiry textarea {
  padding: 0.8rem;
  border: 1px solid var(--text-main);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.enquiry button {
  background: var(--pink);
  color: var(--text-main);
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.enquiry button:hover {
  background: var(--pink-dark);
}

/* ── Privacy note ── */
.privacy-note {
  font-size: 0.8rem;
  color: var(--text-main);
  margin: 0;
  text-align: center;
}

.privacy-note a {
  color: var(--text-main);
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

footer a {
  color: var(--text-main);
}
