* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, .logo-text, .main-nav a, .btn-primary {
  font-family: 'Segoe UI', Arial, sans-serif;
  letter-spacing: 2px;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  border-top: 4px solid #1a1a1a;
  padding: 20px 0;
  position: relative;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  min-width: 0;
}
.logo-img { height: 50px; flex-shrink: 0; }
.logo-text {
  font-size: 1.8rem;
  color: #3a6ea5;
  font-weight: 400;
  white-space: nowrap;
}
.main-nav > ul {
  display: flex;
  list-style: none;
  gap: 35px;
}
.main-nav a {
  text-decoration: none;
  color: #333;
  font-size: 0.85rem;
  font-weight: 600;
}
.main-nav a.active,
.main-nav a:hover { color: #3a6ea5; }
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 220px;
  list-style: none;
  z-index: 10;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 14px 20px;
  font-weight: 400;
  font-size: 0.8rem;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 20;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.8rem;
  color: #3a6ea5;
  font-weight: 400;
  margin-bottom: 25px;
}
.hero .subtitle {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 40px;
}

.hero-img {
  width: 100%;
  border-radius: 2px;
}

.hero-img-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .hero-img-group {
    grid-template-columns: 1fr;
  }
}

.about-blurb {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}
.about-blurb p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.btn-primary {
  display: inline-block;
  background: #3a6ea5;
  color: #fff;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.divider {
  border: none;
  border-top: 1px solid #999;
  max-width: 1300px;
  margin: 0 auto;
}

.features {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 60px 20px;
  text-align: center;
  flex-wrap: wrap;
}
.feature { max-width: 280px; }
.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
.feature h3 {
  color: #3a6ea5;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.clientele {
  text-align: center;
  padding: 60px 20px;
}
.clientele h2 {
  color: #3a6ea5;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.clientele h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #3a6ea5;
  margin: 14px auto 0;
  border-radius: 2px;
}
.clientele-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.client-logo {
  padding: 30px 40px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}
.client-logo img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.25s ease;
}
.client-logo:hover img {
  filter: grayscale(0%);
}
.clientele-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.process {
  padding: 60px 20px 100px;
  text-align: center;
}
.process h2 {
  color: #3a6ea5;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 40px;
}
.process-grid {
  display: flex;
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
  flex-wrap: wrap;
  justify-content: center;
}
.process-steps {
  flex: 1 1 320px;
  min-width: 0;
  max-width: 500px;
  width: 100%;
}
.chevron {
  position: relative;
  background: #2e3d63;
  color: #fff;
  padding: 20px 30px 32px 30px;
  margin-bottom: 22px;
  font-size: 0.95rem;
}
.chevron::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 18px solid #2e3d63;
  z-index: 2;
}
.chevron:last-child { margin-bottom: 0; }
.chevron:last-child::after { display: none; }

.process-image {
  flex: 1 1 300px;
  min-width: 0;
  text-align: center;
}
.process-image img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page-title {
  text-align: center;
  padding: 50px 20px 30px;
}
.page-title h1 {
  color: #3a6ea5;
  font-size: 2.8rem;
  font-weight: 400;
}

.core-beliefs {
  background: #eef2f7;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 50px 40px;
  border-radius: 60px;
  text-align: center;
}
.core-beliefs h2 {
  color: #3a6ea5;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}
.core-beliefs h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #3a6ea5;
  margin: 14px auto 20px;
  border-radius: 2px;
}
.core-beliefs p {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
}

.team {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 20px 20px 50px;
  flex-wrap: wrap;
}
.team-member {
  text-align: center;
  max-width: 280px;
  width: 100%;
}
.team-member img {
  width: 100%;
  max-width: 280px;
  height: 320px;
  object-fit: cover;
  margin: 0 auto 20px;
  background: #ddd;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-member img:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}
.team-member h3 {
  color: #3a6ea5;
  font-size: 1.2rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.team-member h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #3a6ea5;
  margin: 10px auto 0;
  border-radius: 2px;
}

.formation {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}
.formation h2 {
  color: #3a6ea5;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}
.formation h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #3a6ea5;
  margin: 14px auto 0;
  border-radius: 2px;
}
.formation p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.formation .btn-primary {
  margin-top: 20px;
}

.awards {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 20px 80px;
  text-align: center;
}
.awards h2 {
  color: #3a6ea5;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.awards h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #3a6ea5;
  margin: 14px auto 0;
  border-radius: 2px;
}
.awards-photos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.awards-photos img {
  width: 100%;
  max-width: 600px;
  flex: 1 1 460px;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: top center;
  background: #ddd;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.awards-photos img:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}
.awards-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.award-card {
  background: #fff;
  padding: 10px;
  width: 100%;
  max-width: 260px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.award-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}
.award-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  border-radius: 4px;
  background: #f4f4f4;
}

.product-list {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 20px 60px;
  text-align: center;
}
.product-item {
  max-width: 1100px;
  margin: 0 auto 60px;
}
.product-item h2 {
  color: #3a6ea5;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.product-item p {
  max-width: 800px;
  margin: 0 auto 35px;
  font-size: 1.05rem;
  color: #555;
}
.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 10px;
}
.product-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #eee;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.product-gallery img:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}
.product-gallery.gallery-contain {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.product-gallery.gallery-contain img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 600px;
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff;
  flex: 0 1 auto;
}

.product-cta {
  text-align: center;
  padding: 20px 20px 80px;
}

.contact-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px 20px;
}
.contact-intro h1 {
  color: #3a6ea5;
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 30px;
}
.contact-intro p {
  font-size: 1.1rem;
}

.contact-form-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.contact-form label {
  display: block;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: bold;
  margin: 25px 0 10px;
  font-size: 1rem;
}
.contact-form .required {
  font-weight: normal;
  font-style: italic;
  color: #666;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #999;
  border-radius: 4px;
  font-family: Georgia, serif;
  font-size: 1rem;
  resize: vertical;
}
.contact-form button {
  margin-top: 30px;
  border: none;
  cursor: pointer;
}
.form-confirmation {
  display: none;
  text-align: center;
  color: #3a6ea5;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-top: 30px;
}
.form-confirmation.show {
  display: block;
}

.contact-map {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 20px 80px;
  text-align: center;
}
.contact-map img {
  width: 100%;
  max-width: 1300px;
  height: 450px;
  object-fit: cover;
  background: #eee;
  margin: 0 auto 30px;
}
.contact-map p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.site-footer {
  background: #1a1a1a;
  color: #ccc;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 50px 20px;
  gap: 30px;
  text-align: center;
}
.footer-logo img {
  height: 70px;
  margin: 0 auto;
  background: #fff;
  padding: 8px;
  border-radius: 6px;
}
.site-footer h4 {
  color: #6fa8dc;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .header-inner { padding: 0 20px; }
  .logo-text { font-size: 1.4rem; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  }
  .main-nav.nav-open {
    display: block;
  }
  .main-nav > ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav ul > li {
    border-bottom: 1px solid #eee;
  }
  .main-nav a {
    display: block;
    padding: 16px 20px;
  }
  .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    width: 100%;
  }
  .dropdown.open .dropdown-menu {
    display: block;
  }
  .dropdown-menu li a {
    padding-left: 40px;
    background: #fafafa;
  }

  .mobile-toggle { display: block; }

  .hero h1 { font-size: 2rem; }
  .core-beliefs { border-radius: 20px; padding: 30px 20px; }
  .process-grid { gap: 30px; }

  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .page-title h1 { font-size: 2rem; }
  .clientele h2, .process h2 { font-size: 1.6rem; }
  .awards-photos img { aspect-ratio: 1 / 1; }

  .product-gallery {
    grid-template-columns: 1fr;
  }
}