/* style.css — Zenora Legacy: Modern Bold Style */
/* CSS RESET & NORMALIZE */
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,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,main,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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #15417B;
  background: #F4F6FB;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #12708F;
  transition: color 0.22s cubic-bezier(.69,.01,.33,.99);
  font-weight: 600;
}
a:hover, a:focus {
  color: #15417B;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(27,154,183,0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* =====================
  TYPOGRAPHY
======================== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  color: #15417B;
  letter-spacing: -0.7px;
  margin-bottom: 0.1em;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.11;
  margin-bottom: 10px;
}
h2 {
  font-size: 2rem;
  line-height: 1.21;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #12708F;
}
h4 {
  font-size: 1.08rem;
  color: #183269;
}
p, li, blockquote {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 0.7em;
}
strong {
  font-weight: bold;
  color: #12708F;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #12708F;
  padding-left: 16px;
  margin-left: 0;
  color: #183269;
  background: #F4F6FB;
}
/* =====================
  HEADER & NAVIGATION
======================== */
header {
  padding: 0;
  background: #ffffff;
  box-shadow: 0 3px 18px 0 rgba(21,65,123,0.04);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
}
nav a {
  position: relative;
  padding: 8px 0;
  color: #15417B;
  border-radius: 3px;
  transition: background 0.18s;
}
nav a:hover, nav a:focus {
  color: #fff;
  background: #12708F;
  outline: none;
  padding: 8px 16px;
}
header img {
  width: 170px;
  height: auto;
  margin-right: 24px;
}
/* =============== MOBILE MENU BURGER =================== */
.mobile-menu-toggle {
  display: none;
  background: #12708F;
  color: #fff;
  font-size: 2.3rem;
  padding: 6px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1600;
  transition: background 0.18s, color 0.27s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #15417B;
  color: #F4F6FB;
}
.mobile-menu {
  position: fixed;
  z-index: 2001;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: #fff;
  box-shadow: 0 8px 40px 0 rgba(21,65,123,0.25);
  transform: translateX(-110vw);
  transition: transform 0.44s cubic-bezier(.8,.06,.36,.92);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
  padding: 36px 24px 24px 36px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: #12708F;
  color: #fff;
  font-size: 2.15rem;
  border: none;
  border-radius: 8px;
  padding: 2px 12px;
  margin-bottom: 18px;
  cursor: pointer;
  align-self: flex-end;
  transition: background 0.18s, color 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E32164;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.32rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #15417B;
  border-radius: 5px;
  padding: 12px 8px;
  transition: background 0.18s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #12708F;
  color: #fff;
}
@media (max-width: 1024px) {
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}
/* =====================
  BUTTONS & LINKS
======================== */
.btn-primary {
  background: #12708F;
  color: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 14px 0 rgba(27,154,183,0.13);
  letter-spacing: .03em;
  margin-top: 7px;
  margin-bottom: 7px;
  display: inline-block;
  transition: background 0.22s cubic-bezier(.69,.01,.33,.99), box-shadow 0.18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #15417B;
  color: #fff;
  box-shadow: 0 6px 18px 0 rgba(21,65,123,0.15);
}
/* Minor link style for deep links */
.content-wrapper a:not(.btn-primary),
li a:not(.btn-primary) {
  font-weight: 700;
  color: #12708F;
  border-bottom: 2px solid #12708F;
  transition: color 0.16s, border-bottom 0.18s;
}
.content-wrapper a:not(.btn-primary):hover {
  color: #15417B;
  border-bottom-color: #15417B;
}
/* =====================
  FLEXBOX LAYOUTS & SECTIONS
======================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.card {
  background: #fff;
  box-shadow: 0 3px 16px 0 rgba(27,154,183,0.08);
  border-radius: 19px;
  margin-bottom: 20px;
  padding: 36px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 7px 34px 0 rgba(21,65,123,0.15);
  transform: translateY(-2px) scale(1.017);
}
.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;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 25px;
  background: #F4F6FB;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(21,65,123,0.07);
  margin-bottom: 20px;
  border-left: 6px solid #12708F;
  transition: box-shadow 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 14px 0 rgba(27,154,183,0.13);
}
.testimonial-card blockquote {
  color: #15417B;
  margin: 0 0 7px 0;
  padding: 0;
  font-size: 1.14rem;
  font-style: normal;
}
.testimonial-card footer {
  color: #12708F;
  font-weight: 700;
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1rem;
  margin-top: -7px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 12px;
  border-radius: 12px;
  background: #F4F6FB;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px 0 rgba(21,65,123,0.06);
}
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  margin-bottom: 15px;
}
.team-members > div {
  background: #fff;
  border-radius: 15px;
  padding: 18px 16px 15px;
  box-shadow: 0 2px 8px 0 rgba(27,154,183,0.08);
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 260px;
}
.service-category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F4F6FB;
  border-radius: 17px;
  padding: 22px 17px;
  margin-bottom: 24px;
  box-shadow: 0 2px 7px rgba(21,65,123,0.05);
  border-left: 5px solid #12708F;
}
.solution-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.solution-grid > div {
  background: #F4F6FB;
  border-radius: 16px;
  box-shadow: 0 2px 7px 0 rgba(21,65,123,0.06);
  padding: 20px 14px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 10px;
  border-left: 4px solid #12708F;
  transition: box-shadow 0.19s;
}
.solution-grid > div:hover {
  box-shadow: 0 6px 14px 0 rgba(21,65,123,0.12);
  background: #e7f9fe;
}
.technology-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0;
}
.technology-list > div {
  background: #fff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  box-shadow: 0 2px 9px 0 rgba(21,65,123,0.064);
  padding: 18px 16px 15px;
  max-width: 248px;
  min-width: 185px;
  flex: 1 1 175px;
  border-left: 4px solid #12708F;
}
.stat-highlights {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.stat-highlights p {
  font-size: 1.4rem;
  color: #12708F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.blog-post {
  background: #F4F6FB;
  border-radius: 14px;
  padding: 20px 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(21,65,123,0.07);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.blog-post h3 {
  font-size: 1.25rem;
  color: #12708F;
}
.blog-post a {
  align-self: flex-start;
  font-weight: bold;
  font-size: 1.01rem;
  border-bottom: 2px solid #15417B;
  color: #15417B;
  transition: color 0.18s, border 0.16s;
}
.blog-post a:hover {
  color: #fff;
  background: #15417B;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  justify-content: center;
}
.footer-menu a {
  color: #12708F;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s;
  font-size: 1rem;
  padding: 6px 3px;
  border-radius: 5px;
}
.footer-menu a:hover {
  color: #fff;
  background: #12708F;
}
.company-info {
  color: #15417B;
  font-size: 0.95rem;
  text-align: center;
}
footer {
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 -4px 20px 0 rgba(21,65,123,0.06);
  padding: 35px 0 12px 0;
}
ul li img {
  width: 24px;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 2px;
}
@media (max-width: 950px) {
  .container {
    padding: 0 10px;
  }
  .solution-grid, .team-members, .technology-list, .stat-highlights, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 680px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  .card, .service-category, .solution-grid > div, .technology-list > div {
    padding: 12px 9px;
    font-size: 0.97rem;
  }
}
/* =====================
  COOKIE CONSENT BANNER & MODAL
======================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #15417B;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 18px 12px 20px 12px;
  box-shadow: 0 -8px 27px 0 rgba(21,65,123,0.12);
  z-index: 9999;
  font-size: 1rem;
  transition: transform 0.30s cubic-bezier(.65,.01,.43,.98), opacity 0.25s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #fff;
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  flex: 1 0 180px;
}
.cookie-btn {
  background: #1B9AB7;
  border: none;
  color: #fff;
  border-radius: 7px;
  padding: 9px 22px;
  margin-left: 8px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.settings {
  background: #fff;
  color: #12708F;
  border: 1px solid #12708F;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #2be186;
  color: #15417B;
}
.cookie-btn.reject {
  background: #E32164;
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #c31650;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #12708F;
  color: #fff;
}
/* Cookie modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; width: 100vw; height: 100dvh;
  background: rgba(10,22,55,0.44);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #15417B;
  border-radius: 18px;
  box-shadow: 0 4px 40px 0 rgba(21,65,123,0.21);
  max-width: 430px;
  padding: 34px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  color: #12708F;
  font-size: 1.25rem;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}
.cookie-category label {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  width: 40px;
  height: 23px;
  background: #F4F6FB;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  transition: background 0.16s;
  position: relative;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle span {
  display: block;
  height: 16px;
  width: 16px;
  background: #12708F;
  border-radius: 50%;
  margin-left: 3px;
  transition: margin 0.16s, background 0.17s;
  box-shadow: 0 1px 6px 0 rgba(21,65,123,0.11);
}
.cookie-toggle input:checked + span {
  margin-left: 21px;
  background: #2be186;
}
.cookie-modal .cookie-btn.save {
  background: #12708F;
  color: #fff;
  font-size: 1.09rem;
  margin: 12px 0 0;
  border-radius: 5px;
  padding: 11px 25px;
}
.cookie-modal .cookie-btn.save:hover {
  background: #15417B;
}
.cookie-modal .cookie-btn.close {
  background: none;
  color: #15417B;
  border: none;
  position: absolute;
  right: 18px; top: 9px;
  font-size: 1.8rem;
  cursor: pointer;
}
/* =====================
  GENERAL SPACING
======================== */
@media (max-width: 500px) {
  section {
    padding: 20px 5px;
    border-radius: 0;
  }
  .cookie-modal {
    padding: 16px 7px 14px 7px;
    border-radius: 10px;
  }
}
section, .card, .testimonial-card, .solution-grid > div, .blog-post, .feature-item, .service-category, .technology-list > div, .team-members > div {
  margin-bottom: 20px;
}
/* ================ UTILITIES ================= */
.text-center {
  text-align: center !important;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.gap-20 {
  gap: 20px;
}
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.mb-16 { margin-bottom: 16px; }
.mt-16 { margin-top: 16px; }
/* =============== ANIMATIONS & MICRO-INTERACTIONS ================= */
.btn-primary, .cookie-btn, .card, .testimonial-card, .footer-menu a, nav a, .mobile-nav a, .blog-post, .service-category, .company-info {
  transition: box-shadow 0.17s, background 0.17s, color 0.14s, transform 0.16s;
}
section {
  animation: fadeInUp 1.15s cubic-bezier(.03,.93,.38,1) 0.07s both;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(45px); }
  100% { opacity: 1; transform: translateY(0); }
}
.card, .testimonial-card, .solution-grid > div, .technology-list > div, .service-category, .blog-post {
  will-change: box-shadow, transform;
}
.btn-primary:active, .cookie-btn:active {
  transform: scale(0.98);
  filter: brightness(0.97);
}
.card:active, .testimonial-card:active { transform: scale(0.985); }

/* =============== ACCESSIBLE FOCUS OUTLINES ================= */
a, button, .btn-primary, .cookie-btn {
  outline: 0;
}
a:focus, .btn-primary:focus, .cookie-btn:focus {
  box-shadow: 0 0 0 3px #7CE2F9;
  outline: none;
}

/* =============== SCROLLBAR ================== */
body::-webkit-scrollbar {
  width: 9px;
  background: #F4F6FB;
}
body::-webkit-scrollbar-thumb {
  background: #c9eaff;
  border-radius: 4px;
}

/* =============== PRINT =============== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section {
    box-shadow: none !important;
    background: #fff !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: 23px !important;
  }
}
