/* ================================================  
   ========== CSS RESET & BASE NORMALIZATION ======== 
   ================================================ */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F8FAFB;
  color: #2B3342;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  box-sizing: border-box;
  outline: none;
}

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

:root {
  --primary: #193C5A;
  --secondary: #F0C808;
  --accent: #FFFFFF;
  --pastel-blue: #C5DFFC;
  --pastel-lilac: #F2EAFE;
  --pastel-peach: #FFE8D4;
  --pastel-pink: #FFEEF8;
  --pastel-mint: #E0F7F3;
  --pastel-yellow: #FFF6D6;
  --txt-main: #2B3342;
  --txt-dark: #14222E;
  --shadow: 0 2px 16px 0 rgba(60,65,120,0.10), 0 4px 28px 0 rgba(185,200,255,0.09);
  --radius-main: 18px;
  --radius-soft: 12px;
  --transition-main: 0.2s cubic-bezier(.57,.78,.16,.96);
}

/* ===============================
   ====== LAYOUT CONTAINERS =======
   =============================== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-main);
  background: var(--pastel-blue);
  box-shadow: var(--shadow);
}
@media (min-width: 700px) {
  .section {
    padding: 48px 32px;
    margin-bottom: 80px;
  }
}

/* =====================
   ==== HEADER ========
   ===================== */
header {
  width: 100%;
  background: linear-gradient(90deg, var(--pastel-blue) 60%, var(--pastel-mint) 100%);
  box-shadow: 0 4px 24px rgba(30,52,90,0.05);
  z-index: 1000;
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--primary);
  padding: 7px 13px;
  border-radius: 8px;
  transition: background var(--transition-main), color var(--transition-main);
  position: relative;
}
header nav a:hover,
header nav a:focus {
  background: var(--pastel-lilac);
  color: var(--secondary);
}
header nav .cta {
  background: var(--secondary);
  color: var(--primary) !important;
  font-weight: 700;
  border: none;
  box-shadow: 0 1px 6px rgba(240,200,8,0.10);
  transition: background var(--transition-main), box-shadow var(--transition-main);
}
header nav .cta:hover,
header nav .cta:focus {
  background: #FFEFA6;
  box-shadow: 0 4px 18px rgba(240,200,8,0.17);
}
header img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}

@media (max-width: 900px) {
  header nav {
    gap: 10px;
  }
  header img {
    height: 34px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none !important;
  }
  header .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ====================
   ==== MOBILE MENU ===
   ==================== */
.mobile-menu-toggle {
  display: flex;
  position: fixed;
  top: 25px;
  right: 24px;
  z-index: 2001;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-size: 2.5rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(240,200,8,0.12);
  cursor: pointer;
  transition: background var(--transition-main), color var(--transition-main);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #FFEFA6;
  color: var(--primary);
}

/* Hide burger on desktops */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.97);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.5,.75,.21,1);
  box-shadow: 0 4px 24px rgba(30,52,90,0.06);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 24px;
  background: var(--pastel-lilac);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 42px;
  height: 42px;
  box-shadow: 0 2px 8px rgba(200,185,255,0.09);
  cursor: pointer;
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-main), color var(--transition-main);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
}
.mobile-nav {
  margin-top: 85px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--pastel-mint);
  border-radius: 10px;
  padding: 12px 30px;
  min-width: 220px;
  text-align: center;
  box-shadow: 0 1px 10px rgba(193,220,255,0.09);
  transition: background var(--transition-main), color var(--transition-main);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--pastel-yellow);
  color: var(--secondary);
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

/* ==========================
   === TYPOGRAPHY & HEADINGS =
   ========================== */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.18;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.21;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--txt-main);
  margin-bottom: 6px;
  line-height: 1.25;
}
.subheadline {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: var(--txt-main);
  opacity: 0.84;
  font-weight: 400;
  letter-spacing: 0.09em;
  margin-bottom: 8px;
}
p,
ul li, ol li {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--txt-main);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
ul, ol {
  padding-left: 0;
  margin-bottom: 10px;
  margin-top: 0;
}
strong {
  font-weight: 700;
}

/* ====================
   === BUTTONS/CTAs ===
   ==================== */
.cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--secondary);
  border: none;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(240,200,8,0.12);
  padding: 13px 34px;
  margin: 12px 0 0 0;
  transition: background var(--transition-main), color var(--transition-main), box-shadow var(--transition-main);
  cursor: pointer;
  outline: none;
  letter-spacing: 0.04em;
  min-width: 172px;
  text-align: center;
  gap: 10px;
}
.cta:hover,
.cta:focus,
.btn:hover,
.btn:focus {
  background: #FFF6D6;
  color: var(--primary);
  box-shadow: 0 8px 32px rgba(240,200,8,0.20);
}

/* ======================
   ==== MAIN SECTIONS ====
   ====================== */
main > section {
  margin-bottom: 44px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
@media (min-width: 700px) {
  main > section {
    margin-bottom: 60px;
  }
}

.section {
  background: var(--pastel-blue);
}

/* =======================
   ==== FLEXBOX PATTERNS ==
   ======================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--pastel-mint);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow);
  padding: 28px 22px 30px 22px;
  display: flex;
  flex-direction: column;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.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;
    align-items: flex-start;
    gap: 24px;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--pastel-pink);
  border-radius: var(--radius-soft);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(255,195,230,0.09);
  flex-direction: column;
  max-width: 640px;
}
.testimonial-card p {
  color: var(--txt-dark);
  font-family: 'Roboto', sans-serif;
  font-size: 1.01rem;
}
.testimonial-card strong {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--pastel-lilac);
  border-radius: 14px;
  padding: 20px 14px;
  margin-bottom: 20px;
  box-shadow: 0 0.5px 6px rgba(167,190,255,0.05);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 0 4px 0;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-details img {
  width: 22px;
  height: 22px;
}

/* ===============
   ICONS IN LISTS ==
   =============== */
ul li img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}
ul li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  background: var(--pastel-yellow);
  border-radius: 9px;
  padding: 10px 14px;
  box-shadow: 0 1px 6px rgba(248,246,214,0.09);
}

/* ================
   ==== FOOTER =====
   ================ */
footer {
  width: 100%;
  background: linear-gradient(90deg, var(--pastel-yellow), var(--pastel-blue) 90%);
  color: var(--txt-main);
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 -2px 14px rgba(255,244,214,0.06);
  margin-top: 50px;
  padding: 30px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--primary);
  margin-bottom: 14px;
}
footer nav a {
  color: var(--primary);
  opacity: 0.75;
  border-radius: 5px;
  transition: background var(--transition-main), color var(--transition-main);
  padding: 5px 8px;
}
footer nav a:hover,
footer nav a:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
  opacity: 1;
}
.footer-address {
  font-size: 0.99rem;
  color: var(--txt-dark);
  text-align: center;
  justify-content: center;
  margin-bottom: 10px;
}

@media (min-width: 540px) {
  footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 44px;
  }
  .footer-address {
    text-align: right;
    margin-bottom: 0;
  }
}

/* ===================
   === LINKS =========
   =================== */
a {
  transition: color 0.22s;
}
a:hover, a:focus {
  color: var(--secondary);
}

/* ===============
   == SPACING ALL ==
   =============== */
section, .section {
  margin-bottom: 60px;
}
.card, .testimonial-card, .feature-item, .contact-details, .content-grid {
  margin-bottom: 20px;
}

/* ===========
   = MODAL & COOKIE BANNER =
   =========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--pastel-peach);
  color: var(--primary);
  z-index: 4000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 12px;
  box-shadow: 0 -2px 14px rgba(255,230,212,0.13);
  animation: fadeInCookie 0.7s;
  font-size: 1rem;
}
@keyframes fadeInCookie {
  from {
    opacity: 0; transform: translateY(35px);
  }
  to {
    opacity: 1; transform: translateY(0);
  }
}
.cookie-banner p {
  margin: 0 18px 0 0;
  max-width: 340px;
  font-size: 1rem;
  color: var(--txt-dark);
  font-family: 'Roboto', sans-serif;
}
.cookie-banner .cookie-banner-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  border: none;
  padding: 8px 22px;
  border-radius: 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.99rem;
  font-weight: 600;
  transition: background var(--transition-main), color var(--transition-main);
  margin: 0;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 10px rgba(255,232,212,0.12);
}
.cookie-banner .accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #FFEFA6;
}
.cookie-banner .reject {
  background: var(--pastel-yellow);
  color: var(--primary);
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: var(--pastel-mint);
  color: var(--primary);
}
.cookie-banner .settings {
  background: var(--pastel-lilac);
  color: var(--primary);
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: var(--pastel-blue);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 22px 12px;
  }
  .cookie-banner p {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* ====================
   = COOKIE MODAL =
   ==================== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,52,90,0.20);
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInOverlay 0.3s;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--pastel-lilac);
  border-radius: var(--radius-main);
  padding: 40px 30px 32px 30px;
  box-shadow: 0 4px 28px rgba(100,70,172,0.10);
  min-width: 320px;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  animation: bounceUpCookies 0.40s cubic-bezier(.5,.7,.3,1.2);
}
@keyframes bounceUpCookies {
  0% { transform: translateY(50px) scale(0.95); opacity: 0; }
  80% { transform: translateY(-5px) scale(1.01); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  margin-bottom: 10px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--pastel-mint);
  border-radius: 8px;
  padding: 13px 14px;
  margin-bottom: 9px;
}
.cookie-modal .category label {
  font-size: 1.01rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: var(--txt-main);
}
.cookie-modal .category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--secondary);
  border-radius: 5px;
}
.cookie-modal .essential {
  opacity: 0.68;
  font-style: italic;
}
.cookie-modal .cookie-buttons {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  border: none;
  padding: 8px 18px;
  border-radius: 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  transition: background var(--transition-main), color var(--transition-main);
  cursor: pointer;
}
.cookie-modal .accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal .accept:hover { background: #FFEFA6; }
.cookie-modal .reject {
  background: var(--pastel-pink);
  color: var(--primary);
}
.cookie-modal .reject:hover { background: var(--pastel-yellow); }
.cookie-modal .close-modal {
  background: var(--pastel-blue);
  color: var(--primary);
}
.cookie-modal .close-modal:hover { background: var(--pastel-mint); }

/* ===============
   ==== FORMS =====
   =============== */
input, textarea, select {
  border: 1.2px solid var(--pastel-blue);
  border-radius: 7px;
  padding: 12px 10px;
  font-size: 1rem;
  margin-bottom: 14px;
  background: var(--pastel-mint);
  transition: border-color var(--transition-main), box-shadow var(--transition-main);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  background: #FFFDE7;
}

/* ==========
   = ANIMATIONS =
   ========== */
.card, .testimonial-card, .section, .feature-item {
  transition: box-shadow 0.20s cubic-bezier(.57,.78,.16,.96), transform 0.20s cubic-bezier(.57,.78,.16,.96);
}
.card:hover, .testimonial-card:hover, .feature-item:hover, .section:hover {
  box-shadow: 0 4px 30px 0 rgba(150,120,180,0.11);
  transform: translateY(-4px) scale(1.015);
}

/* ==========  
   == SCROLLBAR==
   ========== */
::-webkit-scrollbar { width: 8px; background: var(--pastel-mint); }
::-webkit-scrollbar-thumb { background: var(--pastel-blue); border-radius: 8px; }

/* ============== 
   == RESPONSIVE ==
   ============== */
@media (max-width: 600px) {
  .container {
    padding: 0 6px;
  }
  h1, .h1 { font-size: 1.35rem; }
  h2, .h2 { font-size: 1.10rem; }
  h3, .h3 { font-size: 0.98rem; }
  .section { padding: 22px 6px; }
}
@media (max-width: 420px) {
  .cta, .btn { padding: 11px 10px; font-size: 0.97rem; min-width: 112px; }
  .container { padding: 0 2px; }
}

/* ===============
   = SPECIALS ==  
   =============== */
.map-message {
  font-size: 0.98rem;
  font-style: italic;
  background: var(--pastel-mint);
  border-radius: 8px;
  padding: 10px 18px;
  margin-bottom: 15px;
  color: var(--primary);
}

/* ===============
   = UTILS & MISC==
   =============== */
.hide { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-20 { gap: 20px; }

/* ===============
   = Z-INDEX GUARD =
   =============== */
header, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 3000; }

/* END OF STYLE.CSS */
