/* ========== 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%;
  scroll-behavior: smooth;
}
body {
  background: #FBFAFF;
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #233155;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: #547579;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #78A431;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
  color: inherit;
  box-sizing: border-box;
}

/* ========== SOFT PASTEL BRAND VARIABLES ========== */
:root {
  --primary: #233155;
  --secondary: #78A431;
  --accent: #F6F3ED;
  --alt1: #E7F6FB;
  --alt2: #F6EFFE;
  --alt3: #FDF6E7;
  --alt4: #E9F8F3;
  --muted: #ABCFEB;
  --danger: #E77575;
  --pastel1: #FEDFE3;
  --pastel2: #F3F4FD;
  --pastel3: #DEF5ED;
  --shadow: rgba(90,150,170,0.08);
}

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Utility Gaps for Card layouts */
.card-container,
.card-grid,
.feature-grid,
.service-list,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card, .feature, .service-item {
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--alt2);
  box-shadow: 0 4px 16px var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  padding: 24px 20px 22px 20px;
  min-width: 220px;
  max-width: 100%;
}
.card:hover, .feature:hover, .service-item:hover {
  box-shadow: 0 8px 20px rgba(120,164,49,0.13), 0 2px 8px var(--shadow);
  transform: translateY(-2px) scale(1.01);
}
.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;
}
.testimonial-card {
  background: var(--pastel1);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 250px;
  margin-bottom: 20px;
  color: #1d1e2a;
  font-size: 1.08rem;
  font-family: 'Roboto', sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.certification-logos, .trust-factors {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
}
.mini-faq-list, .faq-list, .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ========== TYPOGRAPHY ========== */
html {
  font-size: 16px;
}
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: -0.012em;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 3px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--secondary);
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
}
p, .lead {
  font-size: 1.12rem;
  color: #3A464C;
  margin-bottom: 10px;
}
p.lead, .hero p {
  font-size: 1.2rem;
}
strong {
  color: var(--primary);
  font-weight: bold;
}
ul, ol {
  font-size: 1.06rem;
  color: #314257;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 4px;
}

/* Steps list */
.step-by-step-process ol {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-by-step-process ol li {
  position: relative;
  padding-left: 32px;
}
.step-by-step-process ol li:before {
  content: counter(steps);
  counter-increment: steps;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--muted);
  color: var(--primary);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  width: 100%;
  background: var(--accent);
  box-shadow: 0 2px 14px var(--shadow);
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
}
header img[alt^="Breeze Traverse"] {
  height: 44px;
  min-width: 88px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 4px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--muted);
  color: var(--secondary);
}
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: linear-gradient(90deg, #78A431 60%, #BFEEC5 100%);
  color: #233155;
  font-size: 1.05rem;
  border-radius: 24px;
  padding: 12px 32px;
  margin-left: 18px;
  box-shadow: 0 3px 16px var(--shadow);
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.18s, transform 0.16s, box-shadow 0.16s;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #BFEEC5 0%, #78A431 100%);
  color: #17213E;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(120,164,49,0.18);
}

/* ========== HERO BANNER ========== */
.hero {
  background: linear-gradient(135deg, var(--alt3) 40%, var(--alt1) 100%);
  padding: 54px 0 44px 0;
  display: flex;
  align-items: center;
  margin-bottom: 44px;
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 38px;
  box-shadow: 0 8px 42px var(--shadow);
}
.hero .container {
  align-items: flex-start;
  gap: 0;
}
.hero h1, .hero h2 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero p {
  color: #304055;
}

/* ========== FEATURES & SERVICES GRIDS ========== */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.feature, .service-item {
  background: var(--pastel2);
  border-radius: 18px;
  box-shadow: 0 3px 14px var(--shadow);
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 320px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.15s;
}
.feature:hover, .service-item:hover {
  background: var(--alt1);
  box-shadow: 0 8px 24px var(--shadow), 0 2px 8px var(--muted);
  transform: scale(1.03);
}
.feature img, .service-item img {
  width: 44px;
  height: 44px;
}
.feature h3, .service-item h3 {
  color: var(--secondary);
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature p, .service-item p {
  color: #3A464C;
  font-size: 1rem;
}

/* ========== SPECIAL SECTIONS ========== */
.map-embed {
  background: var(--pastel3);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 1px 8px var(--shadow);
  font-size: 1rem;
  color: #4A6C5E;
  margin-top: 12px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--alt4);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 2px 8px var(--shadow);
}
.contact-details img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  background: linear-gradient(120deg, #FDF6E7 80%, #F6EFFE 100%);
  color: #1d1e2a;
  border-radius: 18px;
  box-shadow: 0 3px 20px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 26px 24px 24px;
  margin-bottom: 20px;
  font-size: 1.12rem;
  font-weight: 400;
  font-family: 'Roboto', Arial, sans-serif;
  max-width: 480px;
  transition: box-shadow 0.19s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(120,164,49,0.11);
  transform: translateY(-2px) scale(1.02);
}
.testimonial-card strong {
  color: var(--primary);
  font-weight: bold;
}

/* ========== TABLES ========== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 28px;
  border-radius: 14px;
  box-shadow: 0 2px 10px var(--shadow);
  background: var(--alt2);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 1.03rem;
}
.pricing-table th {
  background: var(--pastel2);
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-bottom: 2px solid var(--alt1);
}
.pricing-table tr:nth-child(2n) td {
  background: var(--alt3);
}
.pricing-table td {
  color: #37507a;
}

/* ========== FOOTER ========== */
footer {
  background: var(--accent);
  padding: 45px 0 0 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -2px 14px var(--shadow);
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 30px;
}
footer nav.footer-nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 24px;
}
footer nav.footer-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.99rem;
  border-radius: 4px;
  padding: 2px 4px;
  transition: color 0.18s, background 0.15s;
}
footer nav.footer-nav a:hover, footer nav.footer-nav a:focus {
  background: var(--muted);
  color: var(--secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #395288;
  font-size: 0.99rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
  display: inline-block;
}

/* ========== MINI FAQ ACCORDION ========== */
.faq-accordion > li {
  background: var(--alt2);
  border-radius: 9px;
  margin-bottom: 12px;
  box-shadow: 0 1px 6px var(--shadow);
  padding: 20px 16px 12px 16px;
  transition: box-shadow 0.19s;
}
.faq-accordion > li h3 {
  cursor: pointer;
  font-size: 1.11rem;
  color: var(--secondary);
  margin-bottom: 4px;
}
.faq-accordion > li p {
  color: #304055;
  font-size: 1rem;
}

/* ========== RESPONSIVE DESIGN (MOBILE FIRST) ========== */
@media (max-width: 900px) {
  .feature-grid, .service-list, .content-grid, .card-container {
    justify-content: center;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section {
    padding: 32px 8px;
  }
  .footer-contact {
    font-size: 0.93rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    flex-direction: column;
    gap: 0;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
    margin-top: 8px;
  }
  .hero {
    padding: 28px 0 18px 0;
    border-radius: 20px;
  }
  .feature, .service-item, .card {
    min-width: 90%;
    max-width: 97vw;
  }
  .feature-grid, .service-list, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100vw;
    font-size: 1rem;
    padding: 18px 10px 16px 14px;
  }
  .pricing-table {
    font-size: 0.92rem;
    overflow-x: auto;
    display: block;
  }
  .pricing-table th,
  .pricing-table td {
    padding: 9px 12px;
    font-size: 0.94rem;
  }
}
@media (max-width:520px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.37rem; }
  .feature, .service-item, .card {
    padding: 16px 4px;
  }
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 24px;
  z-index: 1100;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  padding: 8px 10px;
  transition: background 0.2s, color 0.18s;
  border-radius: 8px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--muted);
  color: var(--secondary);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--alt2) 96%, var(--pastel3) 100%);
  box-shadow: 0 4px 36px rgba(35,49,85,0.13);
  z-index: 2001;
  padding: 28px 18px 0 24px;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.83,0,0.17,1.2);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: transparent;
  color: var(--secondary);
  border: none;
  padding: 6px 12px;
  margin-right: auto;
  margin-bottom: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--pastel2);
  color: #ce2e2e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  background: transparent;
  border-radius: 6px;
  padding: 12px 6px 12px 10px;
  transition: background 0.16s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--muted);
  color: var(--secondary);
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    right: 13px;
    top: 19px;
    z-index: 2100;
  }
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: linear-gradient(98deg, #F8E9FB 80%, #F3F4FD 100%);
  box-shadow: 0 -2px 14px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 10px 18px 10px;
  gap: 12px;
  font-size: 1.02rem;
  color: var(--primary);
  animation: fadeInUp 0.5s cubic-bezier(0.83,0,0.17,1.2);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(44px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.btn-cookie {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 20px;
  padding: 10px 26px;
  margin: 0 2px;
  background: var(--pastel3);
  color: var(--primary);
  font-size: 0.98rem;
  transition: background 0.14s, box-shadow 0.17s, color .13s;
  box-shadow: 0 1px 6px var(--shadow);
  cursor: pointer;
}
.btn-cookie.accept {
  background: linear-gradient(90deg, var(--secondary) 70%, #C6EDA6 100%);
  color: #233155;
  font-weight: 600;
}
.btn-cookie.accept:hover {
  background: var(--secondary);
  color: #fff;
}
.btn-cookie.reject {
  background: var(--danger);
  color: #fff;
}
.btn-cookie.reject:hover {
  background: #ba3a3a;
}
.btn-cookie.settings {
  background: var(--muted);
  color: var(--primary);
}
.btn-cookie.settings:hover {
  background: var(--alt3);
  color: var(--secondary);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32, 45, 64, 0.21);
  z-index: 4500;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  animation: fadeIn 0.22s cubic-bezier(0.54,0,0.45,1.23);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-inner {
  background: linear-gradient(115deg, #F3F4FD 80%, #E9F8F3 100%);
  border-radius: 22px;
  box-shadow: 0 8px 44px var(--shadow);
  padding: 36px 28px 32px 32px;
  min-width: 310px;
  max-width: 95vw;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  font-size: 1rem;
}
.cookie-modal-inner h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  position: absolute;
  right: 18px;
  top: 14px;
  cursor: pointer;
  padding: 4px 9px;
  border-radius: 7px;
  transition: background 0.15s;
}
.cookie-modal-close:hover {
  background: var(--pastel3);
  color: #ba3a3a;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 6px 0;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--secondary);
}
.cookie-category .label {
  font-size: 1rem;
}
.cookie-category .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--muted);
  border-radius: 22px;
  transition: 0.24s;
}
.switch input:checked + .slider {
  background-color: var(--secondary);
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 2px; bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: 0.22s;
  box-shadow: 0 1px 4px var(--shadow);
}
.switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal-inner .cookie-save-btns {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  justify-content: flex-end;
}

/* ========== MICRO-INTERACTIONS ========== */
.btn-primary, .btn-cookie, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal-close {
  transition: background 0.17s, box-shadow 0.17s, color 0.16s, transform 0.16s;
}
.btn-primary:active, .btn-cookie:active {
  transform: scale(0.96);
}

/* ========== UTILITIES ========== */
.hide {
  display: none !important;
}

/* ========== END OF CSS ========== */
