/* =====================================================================
 * CSS RESET & 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;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  min-height: 100%;
}
body {
  min-height: 100vh;
  background: #F5F7FA;
  color: #205485;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #FAFAFF;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.18s;
}
ul, ol {
  list-style: none;
}

/* ===============================
  FONTS
=============================== */
h1, h2, h3, h4, h5, h6, .tagline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #205485;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.18;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}
.tagline {
  font-size: 1.18rem;
  color: #4A6FA5;
  letter-spacing: 0.02em;
  margin: 36px 0 0 0;
  text-shadow: 0 1px 12px rgba(178,210,255,0.22);
}
p {
  margin-bottom: 12px;
  color: #35638E;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}

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

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

.card-container, .card-grid, .features, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(190,210,250,0.21);
  background: #fff;
  overflow: hidden;
  padding: 24px;
  min-width: 280px;
  transition: box-shadow 0.24s;
}
.card:hover {
  box-shadow: 0 6px 36px rgba(100,130,200,0.19);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff9f7;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 2px 8px rgba(190, 210, 250, 0.06);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FDFDFF;
  padding: 28px 26px 22px 26px;
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(119,167,228,0.11);
  margin-bottom: 20px;
  border: 1.5px solid #e1eaf8;
}
@media (max-width: 900px) {
  .container { max-width: 96vw; }
}
@media (max-width: 768px) {
  .container { padding-left: 7vw; padding-right: 7vw; }
  .content-wrapper { gap: 13px; }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .card-container, .card-grid, .features {
    flex-direction: column;
  }
  .section {
    margin-bottom: 32px;
    padding: 26px 10px;
  }
}

/* ===============================
  HEADER & NAV BAR
=============================== */
header {
  background: #ffffffbb;
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px 18px 20px;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 9px rgba(185,204,235,0.08);
}
header img[alt="Breeze Velocity"] {
  height: 46px;
  width: auto;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 4px;
  border-radius: 6px;
  color: #4682B4;
  transition: background 0.19s, color 0.16s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #e9f3fb;
  color: #FF9057;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: #FEE8DF;
  color: #CB5A12;
  border-radius: 32px;
  padding: 13px 32px;
  margin-left: 28px;
  border: none;
  box-shadow: 0 2px 12px rgba(245,180,154,0.17);
  cursor: pointer;
  transition: background 0.18s, color 0.19s, box-shadow 0.19s;
  letter-spacing: 0.01em;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #FD8A45;
  color: #fff;
  box-shadow: 0 6px 32px rgba(240,170,100,0.21);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #205485;
  cursor: pointer;
  margin-left: 18px;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #e9f3fb;
  color: #FD8A45;
}
@media (max-width: 980px) {
  header { padding-right: 14px; }
  .main-nav { gap: 15px; }
  .cta-button { margin-left: 12px; }
}
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    flex-direction: row;
    padding: 12px 6vw 12px 6vw;
  }
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===============================
  MOBILE MENU OVERLAY
=============================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1200;
  background: rgba(248,251,255,0.98);
  box-shadow: 0 4px 36px rgba(175,190,225,0.13);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.43,0,.43,1);
  opacity: 1;
  /* Initially closed */
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #205485;
  font-size: 2.1rem;
  font-weight: bold;
  position: absolute;
  right: 24px;
  top: 22px;
  cursor: pointer;
  transition: background 0.18s, color 0.15s;
  border-radius: 8px;
  z-index: 10;
  padding: 5px 10px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFEEE6;
  color: #CB5A12;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 80px;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  color: #205485;
  font-weight: 500;
  width: 90vw;
  padding: 18px 0;
  display: block;
  border-bottom: 1px solid #e6f0f8;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fcebe2;
  color: #FD8A45;
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ===============================
  HERO / SECTIONS / LISTS / IMG
=============================== */
section {
  margin-bottom: 60px;
  padding: 40px 0px;
  background: none;
}
.content-wrapper > a.cta-button {
  margin-top: 6px;
  min-width: 180px;
}
ul, ol {
  margin: 14px 0 0 0;
  padding: 0;
  font-size: 1rem;
  color: #3263a0;
  line-height: 1.8;
}
ul li, ol li {
  padding-left: 0px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
ul li img {
  height: 28px;
  width: 28px;
  object-fit: contain;
  margin-right: 10px;
}

img {
  max-width: 100%;
  height: auto;
}

.service-card {
  background: #fff4ee;
  border-radius: 18px;
  box-shadow: 0 3px 20px rgba(254,138,69,0.09);
  padding: 24px 24px 18px 24px;
  min-width: 260px;
  margin-bottom: 20px;
  margin-right: 0;
  color: #205485;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.21s, background 0.19s;
}
.service-card:hover {
  background: #fff7f3;
  box-shadow: 0 8px 38px rgba(212,120,61,0.11);
}
.price-tag {
  display: inline-block;
  font-size: 1rem;
  margin-top: 6px;
  color: #CB5A12;
  font-weight: 600;
}

@media (max-width: 800px) {
  .service-card { min-width: 160px; }
  .testimonial-card { padding: 16px; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.07rem; }
  .container { padding-left: 2vw; padding-right: 2vw; }
}

/* ===============================
  TESTIMONIALS
=============================== */
.stars {
  font-size: 1.3em;
  color: #FD8A45;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px #ffe3d7;
}
.testimonial-card p {
  color: #212f41;
  font-size: 1.07rem;
  margin: 0 0 0.5em 0;
}
.testimonial-card span {
  color: #8195B0;
  font-size: 0.98rem;
  font-style: italic;
}

/* ===============================
  FOOTER
=============================== */
footer {
  background: #F5F7FA;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 38px 10px 20px 10px;
  border-top: 3px solid #E7EBF7;
}
footer img[alt="Breeze Velocity"] {
  height: 48px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  margin-bottom: 8px;
  font-size: 0.97em;
}
.footer-nav a {
  color: #487aad;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FD8A45;
  text-decoration: underline;
}
address {
  font-style: normal;
  color: #6295c5;
  font-size: 0.98em;
}
.footer-note {
  color: #8DA2BA;
  font-size: 0.96em;
  margin-top: 6px;
}
@media (max-width: 650px) {
  .footer-nav { gap: 10px; }
  footer { gap: 9px; }
}

/* ===============================
  BUTTONS & LINKS
=============================== */
button,
input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  background: #FEE8DF;
  color: #CB5A12;
  border-radius: 32px;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.19s, color 0.18s, box-shadow 0.16s;
  box-shadow: 0 2px 9px rgba(254,138,69,0.08);
  margin-right: 8px;
}
button:hover, button:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: #FD8A45;
  color: #fff;
  box-shadow: 0 6px 30px rgba(255,170,100,0.18);
}

/* ===============================
  COOKIE CONSENT BANNER & MODAL
=============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 3000;
  background: #FFFAF3;
  box-shadow: 0 -2px 28px rgba(200,210,240,0.13);
  border-top: 2px solid #f6e0d3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 26px 16px 18px 16px;
  gap: 16px;
  opacity: 1;
  transition: bottom 0.33s cubic-bezier(.43,0,.43,1), opacity 0.33s;
}
.cookie-banner.hide {
  bottom: -200px;
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #205485;
  font-size: 1.03rem;
  margin: 0 14px 0 0;
  max-width: 420px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #FEE8DF;
  color: #CB5A12;
  border-radius: 32px;
  border: none;
  margin-right: 10px;
  padding: 10px 22px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(254,138,69,0.07);
  transition: background 0.19s, color 0.19s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FD8A45;
  color: #fff;
}
.cookie-btn.settings {
  background: #eaf9ff;
  color: #205485;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #4abbeb;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 20px 10px 15px 10px;
  }
  .cookie-banner p { margin: 0 0 6px 0; }
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3200;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(81,116,179,0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 58px rgba(160,190,255,0.23);
  padding: 36px 28px 32px 28px;
  max-width: 400px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}
.cookie-category label {
  flex: 1;
  color: #205485;
  font-size: 1rem;
}
.cookie-switch {
  position: relative;
  width: 44px;
  height: 26px;
}
.cookie-switch input { display: none; }
.cookie-switch span {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #EAF1FB;
  border-radius: 24px;
  transition: background 0.18s;
}
.cookie-switch input:checked + span {
  background: #FD8A45;
}
.cookie-switch span::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 20px;
  transition: transform .21s cubic-bezier(.23,1.1,.32,1);
}
.cookie-switch input:checked + span::before {
  transform: translateX(18px);
  background: #fffaf8;
}
.cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #CB5A12;
  font-size: 1.6rem;
  position: absolute;
  right: 16px; top: 10px;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #205485;
}

/* ===============================
  ANIMATIONS & MICRO-INTERACTIONS
=============================== */
a, .cta-button, button, .service-card, .main-nav a, .mobile-nav a, .testimonial-card, .feature-item, .cookie-btn, .card {
  transition: all 0.18s cubic-bezier(.43,0,.43,1);
}

/* ===============================
  PASTEL SOFT PASTEL COLOR PALETTE 
  + INTERFACE ACCENTS
=============================== */
:root {
  --primary: #205485;
  --accent: #FD8A45;
  --accent-light: #FFF1E5;
  --pastel-blue: #E1EAF8;
  --pastel-aqua: #D5F3F0;
  --pastel-pink: #FEE8DF;
  --pastel-yellow: #FFF7DD;
  --soft-grey: #F5F7FA;
  --font1: 'Montserrat', Arial, sans-serif;
  --font2: 'Lato', Arial, sans-serif;
}

body,
.section {
  background: var(--soft-grey);
}

/* ========== HELPERS & MISC ========== */
.hide { display: none !important; }
.show { display: block !important; }
.text-center { text-align: center; }
.mt-2 { margin-top: 20px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 32px; }
p.lead {
  font-size: 1.12em;
  color: #3B608A;
}

/* FOR FORMS (if present in future) */
input, textarea, select {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #DBEAF7;
  border-radius: 9px;
  background: #fffaf6;
  padding: 14px 12px;
  margin-bottom: 14px;
  width: 100%;
  color: #205485;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #FD8A45;
  border-color: #FD8A45;
  background: #FFF1E5;
}

/* ===============================
  ACCESSIBILITY: FOCUS STYLES
=============================== */
a:focus, button:focus, .cta-button:focus, .mobile-menu-close:focus {
  outline: 2px dashed #FD8A45;
  outline-offset: 2px;
}

/* ===============================
  VISUAL HIERARCHY & SPACING
=============================== */
main {
  margin-top: 20px;
  margin-bottom: 38px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width:600px){
  main { gap:20px; }
}

/* ===============================
  ENSURE NO LAYOUT OVERLAP
=============================== */
section, .container, .content-wrapper, .service-card, .testimonial-card, .card, .feature-item {
  margin-bottom: 20px;
  box-sizing: border-box;
}

/* END OF STYLE */
