/* RESET & BASE TYPOGRAPHY */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #222E3A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #FFB300;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #222E3A;
  text-decoration: underline;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* TYPOGRAPHY & HEADINGS */
h1, h2, h3, h4, h5, h6 {
  color: #222E3A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .02em;
  margin-bottom: 18px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
blockquote {
  border-left: 5px solid #FFB300;
  background: #F6F8FA;
  color: #222E3A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 18px 26px;
  margin-bottom: 10px;
  border-radius: 8px;
}

p, li, label, input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #222E3A;
}
strong {
  font-weight: 700;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 19px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}
.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* NAVIGATION & HEADER */
header {
  width: 100%;
  background: #222E3A;
  position: sticky;
  top: 0;
  z-index: 1002;
  box-shadow: 0 3px 18px 0 rgba(34,46,58,0.08);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 18px 0 18px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.main-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a.cta-btn {
  background: #FFB300;
  color: #222E3A;
  margin-left: auto;
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 8px;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 24px 0 rgba(255,179,0,0.06);
  transition: background 0.22s cubic-bezier(.4,0,.2,1), color 0.22s;
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: #FFD65A;
  color: #222E3A;
}
.main-nav a:hover, .main-nav a:focus:not(.cta-btn) {
  background: #fff;
  color: #222E3A;
}
.main-nav img {
  height: 37px;
  margin-right: 15px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #FFB300;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 24px;
  top: 13px;
  z-index: 1060;
  padding: 7px 6px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E5E7EB;
  color: #222E3A;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #222E3A;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1050;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.39,.58,.57,1);
  box-shadow: 7px 0 34px 0 rgba(34,46,58,0.12);
  width: 100vw;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFB300;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  align-self: flex-end;
  margin: 20px 25px 0 0;
  z-index: 1061;
  padding: 7px 6px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #E5E7EB;
  color: #222E3A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-top: 20px;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 13px 8px 13px 0;
  letter-spacing: 0.02em;
  transition: color 0.18s;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #FFB300;
  text-decoration: underline;
}

/* Hide main nav on mobile, show burger */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: none!important;
  }
}

/* HERO */
.hero {
  width: 100%;
  background: #222E3A;
  color: #fff;
  margin-bottom: 0;
  padding: 60px 0 64px 0;
  position: relative;
  overflow: hidden;
  display: flex;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-height: 260px;
}
.hero h1, .hero p {
  color: #fff;
}
.hero h1 {
  font-size: 2.5rem;
  letter-spacing: 0.02em;
}
.hero p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  line-height: 1.5;
  margin-bottom: 23px;
  font-weight: 400;
}

/* GENERAL CTA BUTTONS */
.cta-btn, .content-wrapper .cta-btn, .hero .cta-btn {
  border: none;
  display: inline-block;
  padding: 14px 34px;
  background: #FFB300;
  color: #222E3A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.12rem;
  border-radius: 9px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 16px 0 rgba(255,179,0,0.10);
  cursor: pointer;
  margin-top: 24px;
  text-align: center;
  transition: background .16s, color .16s, box-shadow 0.24s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFD65A;
  color: #222E3A;
  box-shadow: 0 4px 24px 0 rgba(255,179,0,0.17);
  text-decoration: none;
}

/* FEATURES + ICON CARDS */
.features ul,
section ul,
.about ul,
.project-highlights ul,
.services ul,
.content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.features ul li,
section ul li,
.project-highlights ul li,
.services ul li,
.content-wrapper ul li {
  background: #F6F8FA;
  border-radius: 15px;
  padding: 28px 23px 21px 23px;
  min-width: 215px;
  min-height: 140px;
  flex: 1 1 245px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 12px 0 rgba(34,46,58,0.07);
  gap: 10px;
  margin-bottom: 18px;
  transition: box-shadow 0.22s, transform 0.23s;
  position: relative;
  border: 2px solid #fff;
}
.features ul li img,
section ul li img {
  max-width: 49px;
  margin-bottom: 9px;
  border-radius: 7px;
  background: #FFB300;
  padding: 7px;
  box-shadow: 0 1px 7px rgba(255,179,0,0.14);
}
.features ul li:hover, section ul li:hover {
  box-shadow: 0 6px 26px 0 rgba(34,46,58,.16),0 1.5px 5px #FFB30033;
  transform: translateY(-6px) scale(1.01) rotate(-1deg);
  border-color: #FFB300;
}

/* CARDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px 0 rgba(34,46,58,0.09);
  padding: 34px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 265px;
  flex: 1 1 320px;
  transition: box-shadow .18s, transform .20s;
  border: 1.5px solid #E5E7EB;
  z-index: 1;
}
.card:hover {
  box-shadow: 0 9px 44px 0 rgba(255,179,0,.19);
  border: 1.5px solid #FFB300;
  transform: translateY(-4px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F8FA;
  border-radius: 13px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px 0 rgba(34,46,58,0.05);
  border: 2px solid #FFB300;
  flex: 1 1 320px;
  max-width: 800px;
}
.testimonial-card blockquote {
  margin-bottom: 0;
  color: #222E3A;
  background: transparent;
  border-left: 4px solid #FFB300;
  font-size: 1.12rem;
}
.testimonial-card p {
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* BLOG LIST */
.blog-list .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.blog-list article {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 rgba(34,46,58,0.08);
  padding: 29px 21px 23px 21px;
  margin-bottom: 20px;
  border: 1.3px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.19s, border 0.15s;
}
.blog-list article:hover {
  box-shadow: 0 9px 35px 0 rgba(255,179,0,.14);
  border: 1.3px solid #FFB300;
}
.blog-list a {
  color: #FFB300;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  transition: color 0.16s;
}

/* CONTACT FORM */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 470px;
}
.contact-form label {
  font-weight: 700;
  margin-bottom: 3px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.contact-form input,
.contact-form textarea {
  border: 1.5px solid #E5E7EB;
  padding: 12px 13px;
  border-radius: 8px;
  font-size: 1rem;
  background: #F6F8FA;
  color: #222E3A;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border 0.16s, box-shadow 0.17s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: #FFB300;
  box-shadow: 0 0 0 2px #FFB30022;
}
.contact-form textarea {
  min-height: 95px;
  max-width: 100%;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-form button[type="submit"] {
  background: #222E3A;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.09rem;
  letter-spacing: 0.03em;
  padding: 13px 0;
  margin-top: 7px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
}
.contact-form button[type="submit"]:hover,
.contact-form button[type="submit"]:focus {
  background: #FFB300;
  color: #222E3A;
  box-shadow: 0 2px 12px 0 #FFB30033;
}

/* LEGAL SECTIONS */
.legal {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 15px 0 rgba(34,46,58,0.06);
  margin-bottom: 60px;
  padding: 40px 23px 35px 23px;
}
.text-section ul {
  gap: 14px;
}
.text-section ul li {
  background: #F6F8FA;
  padding: 14px 16px;
  border-radius: 11px;
  margin-bottom: 7px!important;
  box-shadow: 0 2px 5px 0 rgba(34,46,58,0.05);
}

/* FOOTER */
footer {
  background: #222E3A;
  color: #fff;
  padding: 44px 0 37px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
footer nav.footer-nav {
  display: flex;
  gap: 17px;
}
footer nav.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  opacity: 0.87;
  transition: color 0.18s;
}
footer nav.footer-nav a:hover,footer nav.footer-nav a:focus {
  color: #FFB300;
  opacity: 1;
}
footer img {
  height: 30px;
}
footer p {
  color: #E5E7EB;
  font-size: 0.96rem;
  margin-left: auto;
}

/* COOKIE BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  z-index: 1200;
  background: #222E3A;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 28px 19px 23px 19px;
  box-shadow: 0 -2px 22px 0 rgba(34,46,58,0.17);
  font-size: 1rem;
  transition: transform .22s cubic-bezier(.17,.67,.83,.67), opacity .22s;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner.show {
  transform: none;
  opacity: 1;
}
.cookie-btns {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  border-radius: 8px;
  border: none;
  padding: 12px 24px;
  margin: 0 2px;
  font-size: 1.01rem;
  cursor: pointer;
  transition: background 0.17s, color .17s;
  box-shadow: 0 1px 7px 0 #FFD65A22;
}
.cookie-btn.accept {
  background: #FFB300;
  color: #222E3A;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FFD65A;
}
.cookie-btn.reject {
  background: #E5E7EB;
  color: #222E3A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F6F8FA;
}
.cookie-btn.settings {
  background: #222E3A;
  color: #fff;
  border: 1.5px solid #FFB300;
}
.cookie-btn.settings:hover,.cookie-btn.settings:focus{
  background: #363F4F; color: #FFB300;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1300;
  background: #222E3Acc;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity .16s;
}
.cookie-modal {
  background: #fff;
  color: #222E3A;
  border-radius: 18px;
  padding: 44px 32px 33px 32px;
  width: 95%;
  max-width: 425px;
  box-shadow: 0 9px 44px 0 #222E3A19;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalShow 0.37s cubic-bezier(.39,.58,.57,1);
}
@keyframes modalShow {
  0% { opacity: 0; transform: translateY(50px) scale(0.9); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-toggle {
  appearance: none;
  width: 39px;
  height: 21px;
  background: #E5E7EB;
  border-radius: 11px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .19s;
}
.cookie-toggle:checked {
  background: #FFB300;
}
.cookie-toggle:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 #00000009;
  transition: transform .21s cubic-bezier(.4,0,.2,1);
}
.cookie-toggle:checked::before {
  transform: translateX(18px);
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 24px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 19px;
  background: none;
  border: none;
  font-size: 1.44rem;
  color: #FFB300;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus{ color: #222E3A;}

/* RESPONSIVE FLEXBOX LAYOUTS */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 1200px) {
  .container {
    max-width: 990px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 770px;
  }
  .features ul,
  .section ul,
  .project-highlights ul,
  .services ul,
  .content-wrapper ul {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.35rem; }
  .container { padding: 0 8px; }
  .section, section { padding: 20px 4px; margin-bottom: 37px; }
  .hero { padding: 36px 0 34px 0; }
  .main-nav {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .features ul,
  .section ul,
  .project-highlights ul,
  .services ul,
  .content-wrapper ul {
    flex-direction: column;
    gap: 16px;
  }
  .features ul li,
  section ul li,
  .project-highlights ul li,
  .services ul li,
  .content-wrapper ul li {
    min-width: unset;
    flex: 1 1 100%;
    padding: 16px 12px 15px 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 13px;
    gap: 14px;
  }
  .card-container {
    gap: 14px;
  }
  .card {
    min-width: unset;
    flex: 1 1 100%;
    padding: 18px 10px 18px 10px;
  }
  .content-grid {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* UTILITIES & MICRO-INTERACTIONS */
.fade-in {
  animation: fadeIn .57s cubic-bezier(.17,.67,.83,.67) both;
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.shadow-hover:hover, .shadow-hover:focus {
  box-shadow: 0 8px 28px 0 #FFB30022;
}

/* VISIBILITY HELPERS */
.hide { display: none !important; }

/* FOCUS STYLES for ACCESSIBILITY */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #FFB300;
  outline-offset: 2px;
}

::selection { background: #FFB30099; color: #222E3A; }

/* BRAND CUSTOM FONT IMPORTS (Montserrat & Roboto) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
