/* === CSS 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, menu, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f6faff;
  color: #18405d;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
a {
  color: #18405d;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffb400;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
img {
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 24px; }
h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
p, li, address { font-size: 1.06rem; margin-bottom: 12px; }
strong { font-weight: 700; }
blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-style: italic;
  color: #002b3a;
  border-left: 4px solid #ffb400;
  padding-left: 18px;
  margin-bottom: 8px;
  background: rgba(185,214,231,0.13);
}

/* ====== BRAND COLORS ====== */
:root {
  --primary: #18405d;
  --primary-light: #27638a;
  --secondary: #b9d6e7;
  --secondary-light: #ddebf5;
  --accent: #ffb400;
  --accent-dark: #c98900;
  --card-bg: #fff;
  --body-bg: #f6faff;
  --error: #e44125;
}

/* =============== LAYOUT CONTAINERS & SECTIONS =============== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  box-shadow: 0 4px 18px 0 rgba(24, 64, 93, 0.07), 0 1.5px 4px 0 rgba(24,64,93,0.05);
  border-radius: 22px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  min-width: 220px;
  flex: 1 1 245px;
  transition: transform 0.19s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 8px 26px 0 rgba(24,64,93,0.11),0 2.5px 8px 0 rgba(24,64,93,0.08);
  z-index: 1;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}
.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;
  margin-bottom: 40px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features {
  background: linear-gradient(110deg, rgba(255,180,0,0.06) 2%,rgba(185,214,231,0.19) 90%);
  border-radius: 22px;
}

/**** HERO ****/
.hero {
  background: linear-gradient(105deg, var(--primary) 77%, rgba(255,180,0,0.14) 100%);
  color: #fff;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
  padding: 56px 0 76px 0;
}
.hero .container, .cta-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 12px;
}
.hero h1,
.hero h2 {
  color: #fff;
  text-shadow: 0 2px 14px rgba(24,64,93,0.19), 0 1px 2px rgba(0,0,0,0.08);
}
.hero .cta-btn {
  margin-top: 14px;
}

/**** CTA BANNER ****/
.cta-banner {
  background: var(--accent);
  border-radius: 24px;
  margin-bottom: 64px;
  text-align: center;
  color: #18405d;
  box-shadow: 0 6px 14px 0 rgba(24,64,93,0.08);
}
.cta-banner h2 {
  color: #18405d;
}

/**** BUTTONS / CTAs ****/
.cta-btn,
button, .button {
  font-family: 'Montserrat', Roboto, Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 28px;
  border: none;
  background: var(--accent);
  color: var(--primary);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.22s, box-shadow 0.18s, color 0.2s;
  box-shadow: 0 4px 14px 0 rgba(255,180,0,0.14);
  outline: none;
  margin-right: 14px;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
}
.cta-btn.primary,
button.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px 0 rgba(24,64,93,0.18);
  border: none;
}
.cta-btn.primary:hover, .cta-btn.primary:focus,
button.primary:hover, button.primary:focus {
  background: var(--accent);
  color: var(--primary);
}
.cta-btn.secondary,
button.secondary {
  background: var(--secondary);
  color: var(--primary);
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: var(--accent);
  color: var(--primary);
}
.cta-btn {
  min-width: 140px;
  text-align: center;
}

/**** HEADER & NAVIGATION ****/
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(24,64,93,0.08);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: sticky;
  top: 0;
  z-index: 21;
}
header nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary);
  padding: 11px 16px;
  border-radius: 18px;
  margin-right: 8px;
  transition: background 0.19s, color 0.18s, box-shadow 0.15s;
}
header nav a:hover, header nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
header nav a img {
  height: 32px;
  margin-right: 4px;
  vertical-align: middle;
}
.mobile-menu-toggle {
  background: var(--accent);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  padding: 7px 14px;
  cursor: pointer;
  margin-left: auto;
  display: none;
  transition: background 0.18s, color 0.2s;
  position: relative;
  z-index: 70;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
}

/****** MOBILE MENU DRAWER *******/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,64,93,0.98);
  box-shadow: 0 0 80px 10px rgba(24,64,93,0.22);
  z-index: 999;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.87,.13,.42,.84);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.35rem;
  border: none;
  padding: 18px 24px 10px 14px;
  cursor: pointer;
  margin-left: auto;
  margin-top: 2px;
  margin-bottom: 12px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100vw;
  align-items: flex-start;
  padding-left: 38px;
  padding-top: 24px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Roboto, Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
  padding: 12px 6px;
  border-radius: 10px;
  transition: background 0.15s, color 0.14s;
  width: 100%;
  display: block;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--accent);
  color: var(--primary);
}

/**** FOOTER ****/
footer {
  background: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -2px 12px 0 rgba(24,64,93,0.08);
  padding: 34px 0 18px 0;
  margin-top: 50px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
footer nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 10px;
  transition: background 0.13s, color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
footer .text-section {
  text-align: center;
  color: var(--primary-light);
  font-size: 0.98rem;
}

/**** TESTIMONIAL CARD ****/
.testimonials {
  background: linear-gradient(105deg, var(--secondary) 66%, #fff 100%);
  border-radius: 24px;
  padding: 36px 20px;
}
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 32px 14px 32px;
  margin-bottom: 32px;
  background: #fff;
  box-shadow: 0 2px 9px 0 rgba(24,64,93,0.08), 0 0.5px 2px 0 rgba(41,88,149,0.08);
  border-radius: 18px;
  border-left: 7px solid var(--accent);
  position: relative;
}
.testimonials .testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card blockquote {
  color: #18405d;
  background: none;
  border-left: 0;
  font-size: 1.16rem;
  line-height: 1.35;
  margin-bottom: 6px;
}
.testimonial-card p {
  color: var(--primary-light);
  font-size: 1rem;
  text-align: right;
  margin-top: 0;
}

/**** UTILITIES ****/
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

/**** ICONS IN LISTS ****/
ul li img, .text-section ul li img {
  vertical-align: middle;
  margin-right: 8px;
  height: 22px;
}

/**** TABLES (for comparison content) ****/
table {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  border-collapse: collapse;
  border-spacing: 0;
  box-shadow: 0 2.5px 8px 0 rgba(24,64,93,0.08);
  margin-bottom: 28px;
}
th, td {
  border: 1px solid #ddebf5;
  padding: 14px 12px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: var(--secondary-light);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
}
tr:nth-child(even) { background: rgba(185,214,231,0.07); }

/**** ARTISTIC ACCENTS & DECOR ****/
.card:before {
  content: "";
  display: block;
  position: absolute;
  top: -18px; left: -18px;
  width: 52px; height: 52px;
  background: rgba(255,180,0,0.14);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.18s;
  opacity: 1;
}
.card:hover:before {
  opacity: 0.7;
}
.features ul li,
.services ul li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 0px;
  font-size: 1.1rem;
}
.features ul li:before,
.services ul li:before {
  content: "";
  display: inline-block;
  background: var(--accent);
  width: 10px;
  height: 10px;
  border-radius: 2px;
  margin-right: 14px;
  vertical-align: middle;
  box-shadow: 0 1px 3px 0 rgba(255,180,0,0.09);
}

/**** FORMS (for possible contact etc.) ****/
input, textarea {
  font-size: 1.04rem;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid #b9d6e7;
  margin-bottom: 20px;
  background: #fff;
  color: #18405d;
  transition: border 0.17s;
}
input:focus, textarea:focus {
  border-color: var(--accent);
  outline: none;
}
label {
  font-family: 'Montserrat', Roboto, Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

/* ============ COOKIE BANNER ============= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 -3px 24px 0 rgba(24,64,93,0.10);
  padding: 25px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  --cookie-accent: #ffb400;
  animation: slideUpCookie 0.6s ease;
}
@keyframes slideUpCookie {
  0% { bottom: -120px; opacity: 0; }
  90% { opacity: 1; }
  100% { bottom: 0; }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.cookie-consent-banner .cookie-btn {
  font-family: 'Montserrat', Roboto, Arial, sans-serif;
  font-weight: 700;
  padding: 8px 28px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  font-size: 1.03rem;
  transition: background 0.18s, color 0.18s;
}
.cookie-consent-banner .accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-consent-banner .reject {
  background: #f6faff;
  color: var(--primary);
  border: 1px solid #d5e5f2;
}
.cookie-consent-banner .settings {
  background: var(--primary);
  color: #fff;
  border: none;
}
.cookie-consent-banner .cookie-btn:focus, 
.cookie-consent-banner .cookie-btn:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 95vw;
  max-width: 410px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 48px 0 rgba(24,64,93,0.20);
  z-index: 2002;
  transform: translate(-50%,-60%) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s, transform 0.19s;
  display: flex;
  flex-direction: column;
  padding: 32px 22px 22px 22px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-modal label {
  font-size: 1.03rem;
  font-weight: 600;
  margin-bottom: 12px;
  cursor: pointer;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}
.cookie-modal .close {
  position: absolute;
  top: 10px; right: 18px;
  color: var(--primary-light);
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/**** RESPONSIVE QUERIES (mobile first) ****/
@media (max-width: 1079px) {
 .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  h1 {
    font-size: 2rem;
  }
  .card {
    min-width: 160px;
    padding: 19px 10px;
  }
  .cta-btn { min-width: 90px; font-size: 0.98rem; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  header nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  .content-wrapper,
  .features .content-wrapper,
  .section .content-wrapper {
    gap: 18px;
  }
  .section, section {
    margin-bottom: 34px;
    padding: 26px 4px;
  }
  .hero {
    border-radius: 0 0 22px 22px;
    padding: 33px 0 44px 0;
  }
  .cta-banner {
    padding: 32px 6px;
    margin-bottom: 34px;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonials .testimonial-card {
    padding: 12px 5vw 8px 5vw;
  }
  .text-image-section,
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  footer {
    padding: 22px 0 11px 0;
    font-size: 0.97rem;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.12rem; }
  .container { padding: 0 3vw; }
  .hero,
  .cta-banner {
    padding: 24px 0 22px 0;
  }
  .testimonials .testimonial-card { padding: 10px 2vw 6px 2vw; }
  .section, section { padding: 11px 1vw; }
}

/* ============= ARTISTIC TYPOGRAPHY HIERARCHY ============= */
h1, h2, h3 {
  letter-spacing: 0.01em;
  /* Artistic large drop shadow on hero */
}
h1 {
  background: linear-gradient(105deg, var(--accent) 0%, var(--primary) 85%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 6px rgba(24,64,93,0.13);
}
.hero h1, .hero h2 {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
h2 {
  color: var(--primary);
  text-shadow: 0 1px 1px rgba(255,180,0,0.05);
}
h3 { color: var(--primary-light); }

/**** SCROLLBARS - subtle artistic ****/
*::-webkit-scrollbar {
  width: 12px;
  background: #e2f0fa;
  border-radius: 10px;
}
*::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 7px;
}

/**** MICRO-INTERACTIONS ****/
.cta-btn, .button, button, .cookie-btn {
  transition: background 0.22s, color 0.17s, transform 0.15s,
    box-shadow 0.21s;
}
.cta-btn:active, button:active, .button:active {
  transform: scale(0.98);
  box-shadow: 0 0 0 rgba(24,64,93,0.01);
}
.card:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px 0 rgba(24,64,93,0.09);
}

/**** FOCUS OUTLINES FOR ACCESSIBILITY ****/
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  outline: 3px dashed var(--accent);
  outline-offset: 2px;
  background: var(--secondary-light);
  color: var(--primary);
}

/**** ARTISTIC ELEMENTS - RANDOM SPOTS (decor) ****/
.features, .services, .testimonials {
  position: relative;
  overflow: hidden;
}
.features:after, .testimonials:after {
  content: '';
  display: block;
  position: absolute;
  right: 3vw;
  bottom: -33px;
  width: 76px;
  height: 76px;
  background: rgba(185,214,231, 0.28);
  border-radius: 44px 66px 80px 34px;
  z-index: 0;
  pointer-events: none;
}

/* Hide decorative on mobile */
@media (max-width: 600px) {
  .features:after, .testimonials:after { display: none; }
}

/*======== END OF FILE ==========*/
