/* 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,
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;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  color: #222;
}
ul, ol {
  list-style: none;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
*:focus {
  outline: 2px solid #FFD700;
  outline-offset: 2px;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #222;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #234067;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

p, .text-section, blockquote {
  font-size: 1.06rem;
  color: #222;
}

strong {
  font-weight: 700;
  color: #234067;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER + MAIN NAVIGATION */
header {
  width: 100%;
  background: #fff;
  border-bottom: 4px solid #FFD700;
  box-shadow: 0 2px 16px rgba(35,64,103,0.05);
  z-index: 100;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  gap: 30px;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: #234067;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  padding: 2px 0;
  transition: color 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  width: 0%;
  background: #FFD700;
  border-radius: 1px;
  margin-top: 2px;
  transition: width 0.26s cubic-bezier(0.6,0.3,0.48,1.2);
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFD700;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

/* CTA BUTTONS */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 28px;
  min-width: 160px;
  padding: 12px 32px;
  transition: background 0.18s, color 0.17s, box-shadow 0.2s;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 16px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(35,64,103,0.08);
}
.cta.primary {
  background: #234067;
  color: #FFD700;
  border: 2px solid #234067;
}
.cta.secondary {
  background: #FFD700;
  color: #234067;
  border: 2px solid #FFD700;
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFD700;
  color: #234067;
  box-shadow: 0 5px 20px 0 rgba(255,215,0,0.30);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #234067;
  color: #FFD700;
  box-shadow: 0 5px 22px 0 rgba(35,64,103,0.12);
}

/* HAMBURGER MENU MOBILE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 20px;
  top: 18px;
  background: #234067;
  color: #FFD700;
  border-radius: 50%;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 201;
  border: 2px solid #FFD700;
  transition: background 0.15s, color 0.15s, box-shadow 0.21s;
}
.mobile-menu-toggle:active {
  background: #FFD700;
  color: #234067;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #234067;
  color: #FFD700;
  z-index: 200;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 24px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.7,0.2,0.6,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  color: #FFD700;
  font-size: 2.3rem;
  background: none;
  border: none;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 22;
  transition: color 0.17s, background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  background: rgba(255,215,0,0.08);
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 72px 30px 30px 32px;
  width: 100%;
  height: 100%;
}
.mobile-nav a {
  color: #FFD700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  padding: 16px 4px;
  border-radius: 8px;
  transition: background 0.14s, color 0.12s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD700;
  color: #234067;
}

@media (max-width: 1100px) {
  header .container {
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 830px) {
  .main-nav {
    gap: 7px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 8px;
    height: 64px;
  }
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* HERO SECTION */
.hero {
  display: flex;
  background: #234067;
  color: #FFD700;
  min-height: 340px;
  align-items: center;
  justify-content: center;
  padding-top: 38px;
  padding-bottom: 38px;
}
.hero .container {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
.hero h1,
.hero h2 {
  color: #FFD700;
}
.hero p {
  color: #fff;
  font-size: 1.18rem;
  margin-bottom: 10px;
}

/* FEATURES & SECTIONS */
.features, .services, .about, .legal, .contact, .confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features ul, .services ul, .about ul, .text-section ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}
.features ul li, .services ul li, .about ul li, .text-section ul li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  color: #234067;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.features ul li img, .services ul li img {
  width: 32px;
  height: 32px;
}

.accent-bg {
  background: #F5F7FA;
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(35,64,103,0.04);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #234067;
  font-size: 1.06rem;
}
.text-section a {
  color: #234067;
  text-decoration: underline;
  transition: color 0.13s;
}
.text-section a:hover, .text-section a:focus {
  color: #FFD700;
}

.map-placeholder {
  width: 100%;
  height: 180px;
  background: #f1f3f7;
  border: 2px dashed #FFD700;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #234067;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}

/* SERVICES & PRICING */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-item {
  background: #fff;
  border: 2px solid #234067;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(35,64,103,0.065);
  padding: 28px 22px 20px 22px;
  min-width: 260px;
  flex: 1 0 240px;
  transition: box-shadow 0.21s, border-color 0.17s, transform 0.14s;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}
.service-item:hover, .service-item:focus-within {
  border-color: #FFD700;
  box-shadow: 0 7px 28px 0 rgba(35,64,103,0.12);
  transform: translateY(-3px) scale(1.02);
}
.service-item h3 {
  margin-bottom: 0;
  color: #234067;
}
.service-item div {
  color: #FFD700;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}

.pricing-table {
  margin-top: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 9px 0 rgba(35,64,103,0.07);
  overflow-x: auto;
}
.pricing-table table {
  width: 100%;
  min-width: 340px;
  border-collapse: collapse;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #234067;
}
.pricing-table th, .pricing-table td {
  border: 1px solid #F5F7FA;
  padding: 14px 13px;
  text-align: left;
}
.pricing-table th {
  background: #FFD700;
  color: #234067;
  font-weight: 900;
}
.pricing-table td {
  background: #fff;
}

/* TESTIMONIALS */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  border: 2.5px solid #FFD700;
  box-shadow: 0 4px 22px 0 rgba(35,64,103,0.09);
  padding: 20px 28px 18px 28px;
  margin-bottom: 20px;
  max-width: 600px;
  transition: box-shadow 0.2s, border-color 0.17s, transform 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: #234067;
  box-shadow: 0 6px 30px 0 rgba(35,64,103,0.14);
  transform: scale(1.025);
}
.testimonial-card .stars {
  color: #FFD700;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-card blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: italic;
  font-weight: 600;
  color: #234067;
  font-size: 1.09rem;
}
.testimonial-card .name {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #234067;
  font-weight: 900;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
}

/* FOOTER */
footer {
  background: #234067;
  color: #FFD700;
  padding: 38px 0 18px 0;
  border-top: 4px solid #FFD700;
}
.footer-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #FFD700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.18s;
  position: relative;
  padding: 2px 0;
}
.footer-nav a:after {
  content: '';
  display: block;
  height: 2.5px;
  width: 0%;
  background: #FFD700;
  border-radius: 1px;
  margin-top: 2px;
  transition: width 0.21s cubic-bezier(0.7,0.1,0.48,1.4);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-nav a:hover:after, .footer-nav a:focus:after {
  width: 100%;
}
.contact-shortinfo, .newsletter-signup {
  text-align: center;
  font-size: 1.01rem;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.newsletter-signup {
  color: #FFD700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-top: 4px;
}

/* CONTENT LAYOUT UTILS & FLEXPATTERNS */
.card-container,
.card-grid,
.content-grid,
.features .container,
.services .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(35,64,103,0.065);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.17s, transform 0.16s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Legal Section Paragraphs */
.legal .text-section ul,
.legal .text-section p {
  color: #234067;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 8px;
}
.legal h1 {
  color: #234067;
  font-size: 2rem;
  margin-bottom: 16px;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #234067;
  color: #FFD700;
  box-shadow: 0 -2px 20px 0 rgba(35,64,103,0.14);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 28px 18px 26px 18px;
  z-index: 3000;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: transform 0.3s, opacity 0.25s;
}
.cookie-consent-banner[hidden] {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-text {
  flex: 2 1 380px;
  max-width: 540px;
  color: #FFD700;
  margin-right: 14px;
}
.cookie-consent-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border-radius: 26px;
  padding: 9px 28px;
  font-size: 1rem;
  border: none;
  transition: background 0.18s, color 0.17s, box-shadow 0.2s;
  margin: 0 2px;
}
.cookie-btn.accept {
  background: #FFD700;
  color: #234067;
  border: 2px solid #FFD700;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #234067;
  border-color: #FFD700;
  box-shadow: 0 2px 8px 0 rgba(255,215,0,0.12);
}
.cookie-btn.reject {
  background: #fff;
  color: #234067;
  border: 2px solid #234067;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFD700;
  color: #234067;
  box-shadow: 0 2px 8px 0 rgba(255,215,0,0.14);
}
.cookie-btn.settings {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFD700;
  color: #234067;
}

/* Cookie Modal */
.cookie-modal-bg {
  display: none;
  position: fixed;
  z-index: 4000;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,64,103,0.72);
  align-items: center;
  justify-content: center;
}
.cookie-modal-bg.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 80px 0 rgba(35,64,103,0.20);
  padding: 32px 34px 28px 34px;
  max-width: 420px;
  width: 96vw;
  color: #234067;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: popin-modal .48s cubic-bezier(0.55,1.6,0.41,1.06);
}
@keyframes popin-modal {
  0% { transform: scale(0.7); opacity:0; }
  85%{ transform: scale(1.03); }
  100%{ transform: scale(1); opacity:1; }
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: none;
  color: #234067;
  border: none;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFD700;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #FFD700;
}
/* Essential always enabled */
.cookie-category .essential-label {
  color: #234067;
  font-weight: 700;
  border-radius: 4px;
  background: #F5F7FA;
  padding: 2px 8px;
  margin-left: 2px;
}

.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* Responsive - Mobile First */
@media (max-width: 992px) {
  .features, .services, .about, .legal, .contact, .confirmation {
    padding: 32px 9px;
  }
  .section {
    padding: 32px 9px;
  }
  .service-list, .card-container, .content-grid {
    gap: 12px;
  }
  .testimonial-card {
    padding: 18px 10px 16px 14px;
    max-width: 97vw;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 210px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  h1 {
    font-size: 1.5rem;
    line-height: 1.20;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.2rem;
    margin-bottom: 9px;
  }
  .card-container, .card-grid, .content-grid, .service-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .section, .features, .services, .about, .legal, .contact, .confirmation {
    margin-bottom: 34px;
    padding: 18px 4px 24px 4px;
  }
  .testimonial-card {
    max-width: 100vw;
    margin-bottom: 16px;
    padding: 16px 9px 13px 11px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-nav {
    gap: 11px;
    font-size: 0.97rem;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 7px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 24px 6px 24px 6px;
    font-size: 0.95rem;
  }
  .cookie-consent-actions {
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .cookie-modal {
    padding: 20px 8px 15px 12px;
    max-width: 96vw;
  }
}
/* Micro interactions */
.card:hover, .card:focus-within, .service-item:hover, .service-item:focus-within {
  box-shadow: 0 8px 32px 0 rgba(35,64,103,0.14);
  transform: translateY(-3px) scale(1.015);
}
.cta, .cookie-btn {
  transition: background 0.21s cubic-bezier(.86,.38,.56,1.2), color 0.18s cubic-bezier(.91,.12,.56,1.22), box-shadow 0.22s;
}
.cta:active, .cookie-btn:active {
  filter: brightness(0.95);
}

/* Misc Form Elements (future proof) */
input[type="text"], input[type="email"], textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 7px;
  border: 2px solid #234067;
  padding: 10px 12px;
  font-size: 1.04rem;
  margin-bottom: 15px;
  width: 100%;
  min-width: 0;
  transition: border-color 0.18s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #FFD700;
}

::-webkit-input-placeholder { color: #B8BFCF; }
::-moz-placeholder { color: #B8BFCF; }
:-ms-input-placeholder { color: #B8BFCF; }
::placeholder { color: #B8BFCF; }

/* Accessibility - focus state */
a:focus, button:focus, .cta:focus, .cookie-btn:focus {
  outline: 2.5px solid #FFD700;
  outline-offset: 1.8px;
  box-shadow: 0 0 0 2.5px rgba(255,215,0,0.38);
}

/***** GEOMETRIC SHAPES DECOR (JUST FOR MODERN BOLD MOOD) *****/
.hero:after {
  content: '';
  display: block;
  width: 98px;
  height: 98px;
  border-radius: 30% 70% 70% 30%/70% 35% 65% 30%;
  background: #FFD700;
  opacity: 0.09;
  position: absolute;
  right: -46px;
  top: 26px;
  z-index: 2;
}
@media (max-width: 900px) {
  .hero:after { display: none; }
}

/***** MODERN BOLD COLOR HIGHLIGHTS *****/
h2:after {
  content: '';
  display: inline-block;
  height: 6px;
  width: 38px;
  background: #FFD700;
  margin-left: 15px;
  border-radius: 4px;
  vertical-align: middle;
}

/* Utility */
.hide-visually {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/***** END ****/
