/* ===============================================================
   RESET & BASE
==================================================================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F5F6F8;
  color: #1B263B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #1B263B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #DF7C35;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
hr {
  border: none;
  border-bottom: 1px solid #E5E7EB;
  margin: 32px 0;
}

/* =============================
   TYPOGRAPHY
===============================*/
h1, h2, h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  color: #1B263B;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3 {
  font-size: 1.38rem;
  margin-bottom: 15px;
  line-height: 1.25;
}
h4, h5, h6 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #1B263B;
}
p, li, .subheadline {
  font-size: 1rem;
  color: #384358;
  letter-spacing: 0.01em;
}
.subheadline {
  font-size: 1.18rem;
  margin-bottom: 20px;
  color: #525f76;
  font-weight: 400;
}
strong {
  font-weight: 700;
}

/* =============================
   LAYOUT CONTAINERS
===============================*/
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px 2px rgba(30,40,56,0.05);
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* =============================
   NAVIGATION
===============================*/
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(30,38,56,0.03);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1100;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 18px 0 18px 0;
  justify-content: flex-start;
  font-size: 1rem;
}
.main-nav > a {
  padding: 7px 0;
  border-radius: 3px;
  font-weight: 500;
  transition: color 0.18s, background 0.22s, box-shadow 0.22s;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 7px;
}
.main-nav > a.primary-btn {
  margin-left: auto;
  margin-right: 0;
}
.main-nav > a:not(.primary-btn):hover, .main-nav > a:not(.primary-btn):focus {
  background: #F6F6F8;
  color: #DF7C35;
}
.main-nav img {
  height: 36px;
  width: auto;
  display: block;
  margin-right: 15px;
}

/* Hamburger (Mobile) */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 16px;
  background: none;
  font-size: 2.0rem;
  color: #1B263B;
  z-index: 1201;
  border: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,38,59,0.98);
  z-index: 1200;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.61,0.04,0.21,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #fff;
  position: absolute;
  top: 16px;
  right: 30px;
  background: none;
  border: 0;
  z-index: 1202;
  width: 44px;
  height: 44px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 70px;
  margin-left: 32px;
  gap: 16px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #fff;
  background: none;
  margin-bottom: 0;
  padding: 13px 0 13px 0;
  border-radius: 2px;
  font-family: 'Oswald',Arial,sans-serif;
  letter-spacing: 0.04em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F9DB6D;
  text-decoration: underline;
  background: rgba(223,124,53,0.11);
}

@media (max-width: 1024px) {
  .main-nav > a.primary-btn {
    margin-left: 0;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 18px;
    font-size: 1rem;
    padding: 12px 0;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header {
    min-height: 58px;
    box-shadow: 0 1px 5px rgba(27,38,59,0.03);
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* =============================
   BUTTONS & LINKS
===============================*/
.primary-btn {
  background: #DF7C35;
  color: #fff;
  font-family: 'Oswald',Arial,sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(223,124,53,0.07);
  display: inline-block;
  transition: background 0.2s, box-shadow 0.22s, color 0.18s;
  border: none;
  text-align: center;
  letter-spacing: 0.04em;
  margin: 7px 0;
}
.primary-btn:hover, .primary-btn:focus {
  background: #b95c1c;
  color: #fff;
  box-shadow: 0 6px 24px rgba(223,124,53,0.14);
}

.secondary-btn {
  background: #F9DB6D;
  color: #1B263B;
  font-family: 'Oswald',Arial,sans-serif;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 22px;
  border: none;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  margin: 7px 0 7px 12px;
  display: inline-block;
}
.secondary-btn:hover, .secondary-btn:focus {
  background: #fff5ce;
  color: #DF7C35;
  box-shadow: 0 6px 20px rgba(170,149,48,0.11);
}

.tertiary-btn {
  background: none;
  color: #1B263B;
  border-radius: 22px;
  border: 2px solid #1B263B;
  font-family: 'Oswald',Arial,sans-serif;
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: 400;
  margin: 7px 0 7px 12px;
  transition: background 0.18s, color 0.18s, border 0.2s;
}
.tertiary-btn:hover, .tertiary-btn:focus {
  background: #1B263B;
  color: #fff;
}

/* =============================
   HERO & HEADINGS
===============================*/
.main-hero {
  min-height: 340px;
  background: #F9DB6D;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 32px 8px rgba(27,38,59,0.04) inset;
  border-radius: 0 0 24px 24px;
}

/* =============================
   FEATURE CARDS & CARD CONTAINERS
===============================*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 0;
}
.feature-card, .value-card, .innovation-card, .sustainability-card, .service-card, .job-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px 0 rgba(27, 38, 59, 0.07);
  padding: 32px 26px 28px 26px;
  min-width: 280px;
  flex: 1 1 300px;
  max-width: 380px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border-left: 5px solid #F9DB6D;
  transition: box-shadow 0.21s, border-color 0.19s, transform 0.16s;
}
.feature-card:hover, .value-card:hover, .innovation-card:hover, .sustainability-card:hover, .service-card:hover, .job-card:hover {
  box-shadow: 0 8px 36px 0 rgba(27,38,59,0.13);
  border-left: 5px solid #DF7C35;
  transform: translateY(-2px) scale(1.015);
}
.feature-card img, .value-card img, .sustainability-card img, .innovation-card img {
  height: 44px;
  margin-bottom: 10px;
  border-radius: 6px;
  background: #f6f3ea;
  padding: 5px;
}

.job-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.job-card {
  align-items: flex-start;
  min-width: 200px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(27,38,59,0.07);
  flex: 1 1 320px;
}

@media (max-width: 1080px) {
  .feature-grid, .card-container, .job-listing {
    flex-direction: column;
    gap: 18px;
  }
}

/* =============================
   FLEX SPACING PATTERNS
===============================*/
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(27,38,59,0.03);
  margin-bottom: 20px;
  font-size: 1.07em;
  flex: 1 1 330px;
  color: #242f43;
}
.testimonial-card span {
  font-size: 0.98em;
  color: #787878;
  margin-left: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================
   SPECIAL SECTIONS
===============================*/
.partner-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .partner-logos {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
  }
}
.success-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.career-faq h3 {
  margin-top: 22px;
  font-size: 1.1em;
}
.career-faq p {
  margin-top: 6px;
  font-size: 1em;
  margin-bottom: 10px;
}

/**** Contact Info grouping ****/
.contact-info-snippet {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
  font-size: 1.05em;
}
.contact-info-snippet img {
  height: 20px;
  margin-right: 5px;
  border-radius: 2px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.1em;
  color: #243047;
  margin-bottom: 12px;
}
.opening-hours {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff5ce;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(249,219,109,0.11);
  padding: 16px;
  margin-bottom: 10px;
}
.contact-details img{
  max-width: 50px;
}
.opening-hours img {
  height: 27px;
}
.directions {
  font-size: 1em;
  background: #f5f6f8;
  border-radius: 9px;
  padding: 15px 19px;
  margin-left: 0;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .contact-details, .opening-hours, .directions {
    font-size: 1em;
    padding-left: 7px;
    padding-right: 7px;
  }
}

/* =============================
   FOOTER
===============================*/
footer {
  background: #fff;
  box-shadow: 0 -3px 24px rgba(27,38,59,0.04);
  margin-top: 50px;
  font-size: 0.95em;
  letter-spacing: 0.01em;
  z-index: 2;
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 28px;
  padding-top: 32px;
  padding-bottom: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-right: 32px;
}
.footer-navigation a {
  color: #384358;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #DF7C35;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.footer-contact img {
  height: 46px;
  border-radius: 6px;
  background: #f9db6d1a;
}
.footer-contact div {
  display: flex;
  flex-direction: column;
  gap: 0px;
  font-size: 1.02em;
}
.footer-social-media {
  display: flex;
  gap: 21px;
  margin-left: auto;
}
.footer-social-media a img {
  height: 30px;
  opacity: 0.84;
  transition: opacity 0.15s;
}
.footer-social-media a:hover img, .footer-social-media a:focus img {
  opacity: 1;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .footer-navigation, .footer-contact, .footer-social-media {
    margin-right: 0;
    margin-left: 0;
  }
  .footer-social-media {
    margin-left: 0;
  }
}

/* =============================
   SPECIALTY PAGE ELEMENTS
===============================*/
.benefit-highlights ul {
  margin-top: 16px;
  margin-bottom: 20px;
  padding-left: 19px;
  color: #424c60;
  font-size: 1.01em;
  list-style-type: disc;
}
.sustainability-goals {
  background: #F6F6F8;
  border-radius: 8px;
  padding: 18px 22px;
  margin-top: 8px;
  margin-bottom: 10px;
}
.sustainability-goals h3 {
  margin-bottom: 9px;
  font-size: 1.15em;
}
.sustainability-goals ul {
  margin-left: 19px;
  font-size: 1em;
  color: #444a5b;
  list-style: circle inside;
}
.success-stories .testimonial-card {
  background: #fff;
  border-left: 5px solid #F9DB6D;
}

/**** Input Styles ****/
input, textarea, select {
  border: 1px solid #dde5ed;
  border-radius: 8px;
  padding: 11px 17px;
  font-size: 1em;
  margin-bottom: 18px;
  background: #f5f6f8;
  color: #1B263B;
  font-family: inherit;
  box-shadow: 0 2px 7px rgba(30,40,56,0.04);
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #DF7C35;
  outline: none;
  background: #fffbe9;
}

/**** Thank You Message ****/
.thank-you-message {
  margin: 32px 0 28px 0;
  padding: 26px 20px;
  background: #f6f6f8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(27,38,59,0.05);
  color: #222e40;
  font-size: 1.08em;
}

/* =============================
   COOKIE CONSENT BANNER
===============================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffef5;
  color: #243047;
  box-shadow: 0 -6px 30px rgba(27,38,59,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 26px 22px 22px 22px;
  z-index: 2000;
  font-size: 1.05em;
  animation: bannerfadein 0.8s;
}
@keyframes bannerfadein {
  0% { transform: translateY(100px); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: none; }
}
.cookie-banner p {
  margin: 0 18px 0 0;
  font-size: 1em;
  color: #2a3447;
}
.cookie-banner .primary-btn,
.cookie-banner .secondary-btn, 
.cookie-banner .tertiary-btn {
  font-size: 1em;
  margin: 0 0 0 10px;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.97em;
    padding: 20px 10px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  background: rgba(27,38,59,0.17);
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.27s;
  animation: modalfadein 0.26s;
}
@keyframes modalfadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(27,38,59,0.16);
  max-width: 400px;
  width: 94vw;
  padding: 36px 28px 30px 28px;
  color: #1B263B;
  font-size: 1.07em;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: modalfadein 0.31s cubic-bezier(.42,.91,.45,1.17);
}
.cookie-modal h2 {
  font-size: 1.2em;
  font-family: 'Oswald',Arial,sans-serif;
}
.cookie-category {
  margin: 13px 0 7px 0;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ececec;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1em;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: #e2e2e2;
  position: relative;
  border: none;
  margin-left: 9px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-toggle.enabled {
  background: #DF7C35;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(28,32,39,0.07);
  transition: left 0.17s;
}
.cookie-toggle.enabled::after {
  left: 21px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 19px;
  background: none;
  border: none;
  font-size: 1.5em;
  color: #1B263B;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal-actions .primary-btn,
.cookie-modal-actions .secondary-btn,
.cookie-modal-actions .tertiary-btn {
  margin: 0;
}

@media (max-width: 420px) {
  .cookie-modal {
    padding: 22px 7px 17px 7px;
  }
}

/* =============================
   RESPONSIVE & MOBILE HELPERS
===============================*/
@media (max-width: 600px) {
  h1 {
    font-size: 1.68rem;
  }
  h2 {
    font-size: 1.23rem;
    margin-bottom: 14px;
  }
  h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }
  .section {
    padding: 19px 7px;
    margin-bottom: 36px;
    border-radius: 6px;
  }
  .feature-card, .value-card, .innovation-card, .sustainability-card, .service-card, .job-card {
    padding: 16px 10px 16px 10px;
    border-radius: 8px;
    min-width: 0;
    font-size: 0.98em;
  }
  .testimonial-card {
    padding: 10px;
    border-radius: 6px;
    font-size: 0.98em;
  }
  .thank-you-message {
    padding: 14px 8px;
    border-radius: 5px;
  }
}

/* ===============
 UTILITY CLASSES
=================*/
.text-center {text-align: center;}
.text-right {text-align: right;}
.text-left {text-align: left;}
.hide {display: none!important;}

/**** Focus ring for accessibility ****/
a:focus, button:focus, input:focus, .primary-btn:focus, .secondary-btn:focus {
  outline: 2px solid #DF7C35;
  outline-offset: 2px;
}

/* =============================
   MISCELLANEOUS
===============================*/
::-webkit-input-placeholder { color: #a6abc1; }
::-moz-placeholder { color: #a6abc1; }
:-ms-input-placeholder { color: #a6abc1; }
::placeholder { color: #a6abc1; }

/* Remove number spinner for inputs for cleaner look (optional) */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* =============================
   BRAND FONTS
===============================*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

/* =============================
   END OF CSS
===============================*/
