/*! Vitalis Sparks - Professional Corporate CSS - Generated 2024-06 */
/* RESET & BASELINE NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1a3556;
  background: #f4f7f9;
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1a3556;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.33,.79,.19,.99);
}
a:hover, a:focus {
  color: #d6ae7b;
  text-decoration: underline;
}
:focus {
  outline: 2px solid #1a3556;
  outline-offset: 2px;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
strong {
  font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #1a3556;
  line-height: 1.15;
  margin-bottom: 0.5em;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }
h4 { font-size: 1rem; }
h5 { font-size: 0.95rem; }
h6 { font-size: 0.85rem; }
p, address {
  margin-bottom: 1.2em;
}
small {
  font-size: 80%;
  color: #555a64;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 22px 0 rgba(26,53,86,0.07);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(26,53,86,0.09);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.18s cubic-bezier(.33,.79,.19,.99), transform 0.18s cubic-bezier(.33,.79,.19,.99);
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(26,53,86,0.13);
  transform: translateY(-3px) scale(1.02);
}

.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;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f4f7f9;
  border: 1px solid #e4e8ee;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  color: #243145;
  box-shadow: 0 1px 6px 0 rgba(26,53,86,0.06);
  min-width: 250px;
  max-width: 650px;
  transition: box-shadow 0.17s cubic-bezier(.33,.79,.19,.99);
}
.testimonial-card:hover {
  box-shadow: 0 5px 16px 0 rgba(26,53,86,0.10);
}
.testimonial-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEX ADJUSTMENTS FOR MOBILE */
@media (max-width: 768px) {
  .container { padding: 0 12px; }
  .content-wrapper { gap: 18px; }
  .section { padding: 26px 10px; margin-bottom: 40px; }
  .card-container, .content-grid { flex-direction: column; gap: 16px; }
  .testimonial-card { flex-direction: column; gap: 16px; }
  .text-image-section { flex-direction: column; gap: 16px; }
  .card { padding: 16px; }
}

/* HEADER / NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(26,53,86,0.07);
  position: relative;
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}
header img {
  height: 40px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #1a3556;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 5px 0;
  transition: color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #d6ae7b;
}
.cta-btn {
  background: #1a3556;
  color: #fff !important;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  border: none;
  outline: none;
  border-radius: 24px;
  padding: 12px 32px;
  margin-left: 28px;
  box-shadow: 0 1px 8px 0 rgba(26,53,86,0.09);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.19s, color 0.18s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #d6ae7b;
  color: #1a3556 !important;
  box-shadow: 0 3px 14px 0 rgba(26,53,86,0.16);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 2rem;
  color: #1a3556;
  cursor: pointer;
  z-index: 120;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #eaeff4;
  border-radius: 50%;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  z-index: 200;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.61,.21,.35,.92), opacity 0.2s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: transparent;
  border: none;
  color: #1a3556;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #d6ae7b;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 34px 36px 18px 36px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #1a3556;
  padding: 10px 0;
  width: 100%;
  border-radius: 8px;
  font-weight: 600;
  text-align: left;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f4f7f9;
  color: #d6ae7b;
}
/* Responsive nav visibility */
@media (max-width: 991px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #1a3556;
  color: #fff;
  padding: 32px 0 0 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.footer-nav a {
  color: #d6ae7b;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.contact-snippet {
  color: #e5e9f0;
  font-size: 0.96em;
  margin-top: 3px;
}
footer strong {
  color: #fff;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}
.social-links img {
  width: 28px; height: 28px;
  filter: grayscale(0.2) brightness(0.98);
  transition: filter 0.16s;
  cursor: pointer;
}
.social-links img:hover, .social-links img:focus {
  filter: grayscale(0) brightness(1.2);
}
@media (max-width: 900px) {
  footer .container, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* BUTTONS & INTERACTIONS */
button, .cta-btn {
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, border-color 0.15s;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #b3bfd1;
  padding: 10px 12px;
  margin-bottom: 14px;
  background: #f4f7f9;
  color: #1a3556;
  width: 100%;
  max-width: 440px;
  transition: border 0.13s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #1a3556;
  background: #fff;
  box-shadow: 0 0 0 2px #d6ae7b44;
}

/* LISTS & UTILITIES */
ul {
  padding-left: 22px;
  margin-bottom: 18px;
  color: #1a3556;
}
ul li {
  margin-bottom: 0.6em;
  line-height: 1.6;
}

/* ADDRESS */
address {
  font-style: normal;
  color: #314259;
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 1rem;
}

/* CUSTOM COMPONENTS --------------------------------- */

/* SECTION SPACING */
main > section {
  margin-bottom: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

/* Section applies to .section only, see above */

/* CARDS - FOR SERVICES OR PROJECTS */
.services-list > li, .content-wrapper > ul > li, .feature-item {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 1px 8px 0 rgba(26,53,86,0.06);
  color: #1a3556;
  list-style: none;
  position: relative;
}
.services-list > li strong, .content-wrapper > ul > li strong {
  color: #1a3556;
}
.services-list > li:last-child, .content-wrapper > ul > li:last-child {
  margin-bottom: 0;
}

/* Icon in feature list */
.content-wrapper ul img {
  width: 34px;
  height: 34px;
  vertical-align: middle;
  margin-right: 10px;
}

/* Testimonial icons (if any) */
.testimonial-card img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

/* TEXT-IMAGE SECTION */
.text-image-section img {
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(26,53,86,0.08);
}

/* MODAL/CARD for COOKIES - see below */

/* TYPOGRAPHY SCALE (PROFESSIONAL) */
.display-hero {
  font-size: 2.5rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: #1a3556;
}
@media (max-width: 768px) {
  .display-hero {
    font-size: 1.65rem;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
}

/* ANIMATIONS FOR INTERACTION --- */
.card, .testimonial-card, .cta-btn, .main-nav a, .footer-nav a {
  transition: box-shadow 0.19s, transform 0.16s, color 0.16s, background 0.17s;
}

/* SHADOWS */
.shadow-sm { box-shadow: 0 1px 6px 0 rgba(26,53,86,0.06); }
.shadow-md { box-shadow: 0 2px 12px 0 rgba(26,53,86,0.09); }
.shadow-lg { box-shadow: 0 8px 32px 0 rgba(26,53,86,0.14); }

/* COOKIE BANNER & MODAL --------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a3556;
  color: #fff;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 36px;
  z-index: 250;
  box-shadow: 0 -2px 22px 0 rgba(26,53,86,0.10);
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.28s cubic-bezier(.33,.79,.19,.99);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #fff;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  appearance: none;
  border: none;
  outline: none;
  padding: 10px 24px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 18px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
  box-shadow: 0 1px 7px 0 rgba(26,53,86,0.11);
}
.cookie-btn.accept {
  background: #d6ae7b;
  color: #1a3556;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #f4f7f9;
}
.cookie-btn.reject {
  background: #fff;
  color: #1a3556;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #d6ae7b;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: #d6ae7b;
  border: 2px solid #d6ae7b;
  box-shadow: none;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #d6ae7b;
  color: #1a3556;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 10px 14px 10px;
  }
  .cookie-actions {
    gap: 10px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 260;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 40, 66, 0.35);
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.active {
  display: flex;
  animation: fadeIn .22s cubic-bezier(.4, .99, .43, 1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1a3556;
  border-radius: 18px;
  padding: 36px 22px 24px 22px;
  box-shadow: 0 2px 32px 0 rgba(26,53,86,0.14);
  min-width: 320px;
  max-width: 95vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalSlideIn .22s cubic-bezier(.4, .99, .43, 1);
  position: relative;
}
@keyframes modalSlideIn {
  from { transform: translateY(50px) scale(.95); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: #1a3556;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.32rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #e4e8ee;
  font-size: 1rem;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category .toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #eee;
  border-radius: 20px;
  position: relative;
  outline: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-category .toggle:checked {
  background: #1a3556;
}
.cookie-category .toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px 0 rgba(26,53,86,0.09);
  transition: left 0.17s;
}
.cookie-category .toggle:checked:before {
  left: 18px;
}
.cookie-category .toggle[disabled] {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: #1a3556;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #d6ae7b;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 16px 5vw 12px 5vw;
    min-width: 90vw;
  }
}

/* END COOKIE COMPONENTS --------------------------------- */

/* ADDITIONAL: HELPERS, UTILITIES, EXTRAS */
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.text-center { text-align: center; }
.fw-bold { font-weight: bold; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }

/* Print & hide utils */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
}

/***********************************************************
 * ENSURE NO CSS GRID property anywhere in this CSS!       *
 * All LAYOUTS via FLEXBOX ONLY.                           *
 ***********************************************************/
