/* ===================================================
   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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #18191a;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #f3f4f7;
  color: #18191a;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #1b4079;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #18191a;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
}
button {
  font: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

/* ===================================================
   BASIC LAYOUT & CONTAINERS
   =================================================== */
.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

/* ===================================================
   TYPOGRAPHY: Hierarchy & Font Styling
   =================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #0e0f11;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #18191a;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.15rem;
}
p, ul, ol, blockquote {
  margin-bottom: 12px;
}
.subtitle {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #31333a;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
  color: #1b4079;
}
blockquote {
  padding: 20px 24px 18px 38px;
  background: #fff;
  border-left: 4px solid #1b4079;
  border-radius: 8px;
  font-style: italic;
  color: #18191a;
  font-size: 1.08rem;
  margin: 0 0 10px 0;
}
blockquote span {
  display: block;
  font-style: normal;
  color: #64676c;
  margin-top: 8px;
  font-size: 0.98rem;
}

/* Typography Responsive */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
  .subtitle { font-size: 1rem; }
}

/* ===================================================
   HEADER, NAVIGATION, MOBILE MENU
   =================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 14px -6px rgba(24,25,26,0.12);
  border-bottom: 1px solid #e6e6e8;
  z-index: 20;
  position: relative;
}
header .container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
header a img {
  height: 44px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 16px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #1b4079;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 3px;
  padding: 2px 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f3f4f7;
  color: #000;
}
.button.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #18191a;
  color: #fff;
  border-radius: 28px;
  border: none;
  box-shadow: 0 2px 10px -6px rgba(24,25,26,0.12);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.2s;
  margin-left: 24px;
  cursor: pointer;
}
.button.button-primary:hover,
.button.button-primary:focus {
  background: #1b4079;
  color: #f7c873;
  box-shadow: 0 3px 18px -8px rgba(27,64,121,0.22);
  transform: translateY(-1px) scale(1.04);
}
.button {
  outline: none;
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #1b4079;
  margin-left: 16px;
  z-index: 51;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #f7c873;
  color: #18191a;
}

/* MOBILE MENU DRAWER */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #18191a;
  transform: translateX(-102vw);
  transition: transform 0.35s cubic-bezier(.74,0,.24,1); 
  z-index: 550;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0.98;
  box-shadow: 0 8px 44px rgba(24,25,26,0.28);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: relative;
  margin: 28px 0 20px 24px;
  padding: 4px 10px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  align-self: flex-start;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #f3f4f7;
  color: #1b4079;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-left: 28px;
  margin-top: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 2px;
  padding: 7px 0 7px 6px;
  width: 100%;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #f7c873;
  background: #232325;
}
.mobile-menu .button {
  margin-top: 25px;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 20px;
  }
  .button.button-primary {
    padding: 12px 28px;
    margin-left: 14px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 10px;
  }
  .main-nav {
    gap: 14px;
    font-size: 0.99rem;
  }
  .button.button-primary {
    margin-left: 10px;
  }
}
@media (max-width: 840px) {
  .main-nav {
    display: none;
  }
  .button.button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  background: #fff;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px -8px rgba(0,0,0,0.07);
  margin-bottom: 48px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
}
.hero h1 {
  color: #101113;
  font-size: 2.7rem;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 14px;
  text-shadow: 0 5px 24px rgba(24,25,26,0.06);
}
.hero .subtitle {
  color: #353637;
  text-align: center;
  font-size: 1.22rem;
  margin-bottom: 24px;
}
.hero .button.button-primary {
  font-size: 1.07rem;
  padding: 14px 36px;
}

@media (max-width: 600px) {
  .hero {
    min-height: 220px;
    margin-bottom: 32px;
    padding: 16px 0;
  }
  .hero h1 {
    font-size: 1.65rem;
  }
  .hero .subtitle {
    font-size: 0.99rem;
    margin-bottom: 18px;
  }
}

/* ===================================================
   CARD, GRID, FLEX MODULES & PATTERNS
   =================================================== */
/* Card containers & grid layouts */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 18px;
  box-shadow: 0 4px 28px -8px rgba(24,25,26,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 calc(50% - 24px);
  min-width: 290px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 10px 28px -6px rgba(24,64,121,0.15);
  transform: translateY(-2px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.features-grid, .highlight-list, .highlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.features-grid > div, .highlight-list > div {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px -8px rgba(24,25,26,0.09);
  padding: 26px 20px 18px 24px;
  min-width: 190px;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.20s, transform 0.16s;
}
.features-grid > div:hover, .highlight-list > div:hover {
  box-shadow: 0 8px 24px -9px rgba(27,64,121,0.13);
  transform: translateY(-2px) scale(1.01);
}
.highlight-grid {
  flex-direction: column;
  gap: 17px;
  background: #f3f4f7;
  border-radius: 12px;
  padding: 18px 22px;
}

@media (max-width: 850px) {
  .features-grid, .highlight-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* Text-image and feature sections (for future use) */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Testimonials & Reviews */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fcfcfd;
  box-shadow: 0 2px 14px -8px rgba(24,25,26,0.09);
  border-radius: 14px;
  margin-bottom: 20px;
  max-width: 700px;
  border: 1px solid #e8e9ec;
  color: #101113;
  font-size: 1.05rem;
}
.testimonial-card blockquote {
  margin-bottom: 0;
  padding: 0;
  background: none;
  border: none;
  color: #232325;
  font-style: italic;
}
.rating-summary {
  font-size: 1.06rem;
  color: #18191a;
  padding: 13px 22px;
  background: #f3f4f7;
  border-radius: 9px;
  width: fit-content;
}

/* Weather Widget & Tip Boxes */
.weather-widget {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 14px -8px rgba(27,64,121,0.09);
  padding: 14px 16px;
  margin-bottom: 12px;
  font-size: 1.02rem;
  color: #101113;
}
.tip-box {
  background: #f3f4f7;
  border-radius: 8px;
  padding: 11px 16px;
  color: #232325;
  font-size: 1rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-bottom: 10px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
}

/* Feature Items for future modularity */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CONTENT LAYOUT RESPONSIVE (Flex) */
@media (max-width: 768px) {
  .card-container, .content-grid, .features-grid, .highlight-list, .highlight-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 11px;
    padding: 16px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===================================================
   BUTTONS & INTERACTIONS / MICRO-INTERACTIONS
   =================================================== */
.button,
.button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 42px;
  border-radius: 28px;
  padding: 12px 30px;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  outline: none;
  background: #1b4079;
  color: #fff;
  box-shadow: 0 2px 10px -8px rgba(24,64,121,0.08);
  transition: background 0.18s, color 0.18s, transform 0.15s, box-shadow 0.18s;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 12px;
}
.button:hover,
.button:focus {
  background: #18191a;
  color: #f7c873;
  box-shadow: 0 4px 20px -10px rgba(27,64,121,0.21);
  transform: translateY(-1px) scale(1.04);
}
.button.button-secondary {
  background: #fff;
  color: #1b4079;
  border: 1.5px solid #1b4079;
}
.button.button-secondary:hover, .button.button-secondary:focus {
  background: #1b4079;
  color: #fff;
  border-color: #18191a;
}
.button.button-light {
  background: #f3f4f7;
  color: #18191a;
  border: 1.5px solid #f3f4f7;
}
.button.button-light:hover, .button.button-light:focus {
  background: #fff;
  color: #1b4079;
  border-color: #1b4079;
}

/* List Styles (UL, LI) */
ul {
  list-style: disc inside;
  padding-left: 16px;
  margin-bottom: 16px;
}
ol {
  list-style: decimal inside;
  padding-left: 18px;
  margin-bottom: 16px;
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: #101113;
  color: #f3f4f7;
  padding: 35px 0 0 0;
  box-shadow: 0 -4px 32px -10px rgba(24,64,121,0.08);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #f7c873;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.012em;
  transition: color 0.18s;
  padding: 1px 7px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #e0e0e3;
  font-size: 0.99rem;
  margin-bottom: 8px;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 7px;
  vertical-align: middle;
}
.copyright {
  color: #aeb1b9;
  font-size: 0.98rem;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .footer-nav {
    gap: 12px;
    font-size: 0.97rem;
    flex-wrap: wrap;
  }
  footer .container {
    gap: 14px;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
}

/* ===================================================
   COOKIE CONSENT BANNER & MODAL
   =================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1200;
  background: #101113;
  color: #fff;
  padding: 22px 16px 22px 24px;
  box-shadow: 0 -3px 18px -6px rgba(24,64,121,0.23);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100vw;
  transition: transform 0.43s cubic-bezier(.78,0,.2,1);
  font-size: 1.04rem;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner-btns .button {
  min-width: 112px;
  min-height: 38px;
  font-size: 0.99rem;
  border-radius: 23px;
  margin: 0;
}
.cookie-banner-btns .button-primary {
  background: #1b4079;
  color: #fff;
}
.cookie-banner-btns .button-primary:hover {
  background: #18191a; color: #f7c873;
}
.cookie-banner-btns .button-secondary {
  background: #fff;
  color: #1b4079;
  border: 1.5px solid #1b4079;
}
.cookie-banner-btns .button-secondary:hover {
  background: #f7c873;
  color: #101113;
  border-color: #18191a;
}
/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0; 
  background: rgba(24,25,26,0.48);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-bg .3s;
}
@keyframes fadein-bg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #18191a;
  border-radius: 16px;
  box-shadow: 0 8px 40px -10px rgba(27,64,121,0.19);
  padding: 32px 22px 20px 32px;
  min-width: 320px;
  max-width: 94vw;
  position: relative;
  animation: cookieslide 0.38s cubic-bezier(.6,0,.35,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes cookieslide {
  from { transform: translateY(80px) scale(0.98); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #101113;
  margin-bottom: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}
.cookie-category label {
  font-size: 1.01rem;
  font-weight: 500;
  color: #18191a;
}
.cookie-toggle {
  width: 36px;
  height: 22px;
  border-radius: 13px;
  background: #e6e7ea;
  position: relative;
  transition: background 0.18s;
  margin-left: 8px;
  vertical-align: middle;
  border: none;
  outline: none;
  cursor: pointer;
}
.cookie-toggle.enabled {
  background: #1b4079;
}
.cookie-toggle-thumb {
  display: inline-block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px -1px rgba(27,64,121,0.16);
  position: absolute;
  top: 2.5px; left: 2.5px;
  transition: left 0.22s;
}
.cookie-toggle.enabled .cookie-toggle-thumb {
  left: 16.5px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal .button {
  margin: 0 8px 0 0;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: none;
  background: none;
  font-size: 1.6rem;
  color: #b2b3b8;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.18s;
  padding: 1px 6px;
  z-index: 20;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f7c873;
  color: #18191a;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    padding: 14px 7px 16px 7px;
    font-size: 0.96rem;
  }
  .cookie-modal {
    min-width: 95vw;
    padding: 20px 7px 12px 13px;
    font-size: 0.98rem;
  }
}

/* ===================================================
   UTILITY & EXTRA STYLES
   =================================================== */
.bg-dark { background: #101113 !important; color: #fff !important; }
.bg-light { background: #f3f4f7 !important; color: #18191a !important; }
.text-center { text-align: center !important; }
.mt-32 { margin-top: 32px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-8 { margin-top: 8px !important; }
.mb-8 { margin-bottom: 8px !important; }
.shadow-sm { box-shadow: 0 2px 14px -8px rgba(27,64,121,0.07); }
.rounded-md { border-radius: 12px; }

/* Consistent spacing between all content sections/cards */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child {
  margin-bottom: 0 !important;
}
.card, .features-grid > div, .highlight-list > div, .testimonial-card {
  margin-bottom: 20px !important;
}

/* Hide scrollbars for mobile-menu (iOS Safari compatibility) */
.mobile-menu {
  -webkit-overflow-scrolling: touch;
}

/* Accessibility focus outline */
a:focus, .button:focus, button:focus, .cookie-modal-close:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #f7c873;
  outline-offset: 2px;
}

/* For better appearance on print or high-DPI displays */
@media (print) {
  .mobile-menu, .mobile-menu-toggle, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
}
