* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  color: #222;
  scroll-behavior: smooth;
}

/* HEADER */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5em 4em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 1em;
}
.brand img {
  width: clamp(5em, 9vw, 8em);
}
.brand h1 {
  font-size: clamp(1.3em, 2vw, 2em);
  font-weight: 700;
  white-space: nowrap;
}
nav {
  display: flex;
  gap: 2em;
}
nav a {
  text-decoration: none;
  color: white;
  font-size: clamp(0.9em, 1vw, 1.1em);
  transition: color 0.2s ease;
}
nav a:hover {
  color: hsl(210, 90%, 70%);
}

/* =============== HERO / BANNER =============== */
.image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../images/banner - meeting1.jpg") center/cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  color: white;
  text-align: center;
  margin-bottom: 6em;
  overflow: hidden;
}
.banner-container {
  margin-top: 1em;
  padding: 5vh 5vw;
  gap: clamp(1.5em, 5vw, 5em);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-container h2 {
  /* font-size: clamp(2em, 3vw + 1em, 3.5em); */
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 90%;
}
.banner-container p {
  font-size: clamp(1em, 2vw, 1.4em);
  max-width: 70ch;
  line-height: 1.6;
}
.banner-container button {
  background: hsl(210, 90%, 54%);
  border: none;
  padding: 0.8em 3em;
  color: white;
  border-radius: 1em;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}
.banner-container button:hover {
  background: hsl(210, 90%, 44%);
}

/* =============== SECTIONS =============== */
.about-container,
.service-container,
.testimony-container {
  margin: 0 auto;
  max-width: 60%;
  text-align: center;
}
h2 {
  font-family: "Alfa Slab One", serif;
  font-weight: 100;
  font-size: 2.5em;
}
h3 {
  font-size: 1.5em;
}
p {
  font-size: 1.3em;
}

/* =============== ABOUT =============== */
.about-container img {
  width: clamp(8em, 25%, 14em); /* scales with screen size */
  height: auto; /* let height follow width */
  border-radius: 50%;
  object-fit: contain; /* no cropping */
  flex-shrink: 0; /* prevent flexbox from shrinking it too much */
  margin-bottom: 1em;
}

.about-contents {
  display: flex;
  align-items: center;
  text-align: justify;
  gap: 2em;
  line-height: 2em;
  margin-top: 2em;
}

/* =============== SERVICES =============== */
.service-container {
  margin: 6em auto;
}
.service-cards {
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 3em;
}
.service-cards article {
  border-radius: 10%;
  padding: 5em 2em;
  text-align: center;
  background: white;
  line-height: 1.6;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.09);
}
.service-cards p {
  margin-top: 1em;
  text-align: center;
  /* text-justify: inter-word; */
  /* hyphens: auto; */
}
.service-cards article img {
  width: 6em;
  height: 6em;
  object-fit: cover;
  display: block;
  margin: 0 auto 1em; /* centers image and adds space below */
}

/* =============== TESTIMONI =============== */
.testimony-container {
  margin: 6em auto;
  max-width: 70%;
}
.testimony-container h2 {
  margin-bottom: 2em;
}
.testimony-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5em;
  justify-items: center;
}
.testimony-card {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-radius: 1.5em;
  padding: 2em;
  max-width: 350px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimony-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.testimony-card img {
  width: 6em;
  height: 6em;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1em;
}
.testimony-card h4 {
  font-size: 1.2em;
  margin-bottom: 0.5em;
}
.testimony-card p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
}

/* =============== CARA ORDER =============== */
.order-container {
  background: hsl(210, 90%, 54%);
  color: white;
  padding: clamp(3em, 8vw, 6em) 2em;
  text-align: center;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}
.order-container h2 {
  margin-bottom: 2.5em;
}
.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  max-width: 1000px;
  margin: 0 auto;
}
.step {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1em;
  padding: 2em 1.5em;
  transition: transform 0.2s ease, background 0.2s ease;
}
.step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}
.step-number {
  display: inline-block;
  background: white;
  color: hsl(210, 90%, 54%);
  font-weight: 700;
  border-radius: 50%;
  width: 2.2em;
  height: 2.2em;
  line-height: 2.2em;
  margin-bottom: 1em;
  font-size: 1.2em;
}
.step h4 {
  font-size: 1.3em;
  margin-bottom: 0.5em;
}

/* =============== FOOTER =============== */
.contact-container,
.footer {
  background: #252b42;
  color: white;
  text-align: center;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2em;
  min-height: 20vh;
}
.contact-container h3 {
  width: 100%;
  margin-bottom: 1em;
}
.contact-container img {
  width: 2em;
  margin: 0 0.5em;
}
.contact-container p {
  width: 100%;
  margin-top: 1em;
  font-size: 0.9em;
}

.footer {
  padding: clamp(3em, 6vw, 5em) 2em 1.5em;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2em, 4vw, 4em);
  max-width: 1200px;
  margin: 0 auto clamp(2em, 5vw, 3em);
}
.footer-section h3 {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(1.3em, 2vw, 1.7em);
  margin-bottom: 1em;
  color: hsl(210, 100%, 80%);
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 0.6em;
}
.footer-section ul li a {
  color: #e5e5e5;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-section ul li a:hover {
  color: hsl(210, 90%, 65%);
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 1em;
}
.social-icons img {
  width: 1.8em;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.social-icons img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.2em;
  color: #bbb;
  font-size: 0.9em;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
  header { padding: 1em 2em; }
  .about-container, .service-container, .testimony-container { max-width: 80%; }
}
@media (max-width: 768px) {
  header { flex-direction: column; text-align: center; gap: 1em; }
  nav { display: none; }
  .about-contents { flex-direction: column; text-align: center; }
  .about-container img { width: 100%; }
  h2 { font-size: 2em; }
  h3 { font-size: 1.2em; }
  p { font-size: 1em; }
  .order-container { clip-path: none; padding: 3em 1em; }
}
@media (max-width: 480px) {
  .testimony-card img { width: 8em; height: 8em; }
}

