/* =========================================================
   Radiance Hut Modern Bold CSS (Flexbox Only, Mobile-first)
   ========================================================= */
/* 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #153B64;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
ul, ol {
  padding-left: 1.7em;
}
strong, b {
  font-weight: 800;
}

/* =======================
   GLOBAL LAYOUT & UTILITY
   ======================= */
:root {
  --primary:#153B64;
  --secondary:#E5F0FA;
  --accent:#FDBF32;
  --textDark:#153B64;
  --textLight:#fff;
  --cardBg:#fff;
  --shadow:0 2px 20px 0 rgba(21,59,100,0.08);
  --radius:18px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==================
   TYPOGRAPHY (BOLD)
   ================== */
@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');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.012em;
  line-height: 1.12;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.03rem;
  margin-bottom: 10px;
}
p, ul, ol, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #273856;
  margin-bottom: 12px;
  line-height: 1.7;
}
p:last-child {
  margin-bottom: 0;
}
.tagline {
  display: inline-block;
  background: var(--accent);
  color: var(--textDark);
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

/* =========================
   HEADER & NAVIGATION (BOLD)
   ========================= */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(21,59,100,0.07);
  position: sticky;
  top: 0;
  z-index: 11;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 30px;
}
header a img {
  height: 46px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  padding: 5px 0;
  transition: color 0.23s, background 0.3s;
  border-radius: 3px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent);
  background: var(--secondary);
}
.cta-btn {
  background: var(--primary);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 11px 32px;
  border-radius: 30px;
  border: none;
  margin-left: 10px;
  box-shadow: 0 3px 20px 0 rgba(21,59,100,0.08);
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.18s, color 0.17s, box-shadow 0.20s;
  letter-spacing: 0.09em;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 6px 32px 0 rgba(253,191,50,0.19);
}
.cta-btn-secondary {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 11px 32px;
  border-radius: 30px;
  border: none;
  margin: 25px 0 0 0;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.19s, color .18s;
  letter-spacing: 0.09em;
  outline: none;
  box-shadow: 0 2px 16px 0 rgba(253,191,50,0.13);
}
.cta-btn-secondary:hover, .cta-btn-secondary:focus {
  background: var(--primary);
  color: var(--accent);
}

/* =======================
   MOBILE NAV (HAMBURGER)
   ======================= */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--accent);
  color: var(--primary);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  margin-left: 18px;
  box-shadow: 0 1px 6px rgba(253,191,50,0.11);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.17s;
  z-index: 101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 3px 28px 0 rgba(21,59,100,0.12);
}
@media (min-width:1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,59,100,0.98);
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.73,0,.24,1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  right: 18px;
  top: 24px;
  background: var(--accent);
  color: var(--primary);
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  z-index: 10001;
  box-shadow: 0 2px 8px 0 rgba(253,191,50,.15);
  cursor: pointer;
  transition: background 0.19s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 94px;
  gap: 26px;
  padding: 0 40px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  padding: 19px 0 10px 0;
  border-bottom: 1px solid rgba(229,240,250,0.10);
  transition: color 0.22s, background 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: rgba(253,191,50,0.15);
  border-radius: 8px;
}
@media (min-width:1025px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}
@media (max-width:1024px) {
  .main-nav {
    display: none !important;
  }
}

/* ===============
   HERO SECTION
   =============== */
.hero {
  background: linear-gradient(98deg, var(--secondary) 55%, rgba(253,191,50,0.09) 100%);
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero .container {
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
  gap: 18px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.08;
}
.hero p {
  font-size: 1.17rem;
  color: #29436f;
  margin-bottom: 10px;
}

/* ===============================
   FLEXBOX UTILITY & CORE PATTERNS
   =============================== */
.feature-grid, .service-list, .benefits-list, .faq-list, .customer-quotes, .process-steps, .card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.card-container { gap: 24px; }
.card { box-shadow: var(--shadow); border-radius: var(--radius); background: var(--cardBg); margin-bottom: 20px; position: relative; padding: 24px; min-width: 260px; max-width: 100%; display: flex; flex-direction: column; }
.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 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(21,59,100,0.10);
  margin-bottom: 22px;
  min-width: 260px;
  max-width: 390px;
}
.testimonial-card p {
  color: #232c39;
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.02rem;
  margin-top: 3px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** Additional for pricing table, FAQ, lists *****/
.pricing-table {
  background: var(--secondary);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 25px;
  overflow-x: auto;
}
.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}
.pricing-table th, .pricing-table td {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.04rem;
  color: var(--primary);
  padding: 12px 8px;
  text-align: left;
}
.pricing-table tbody td {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.01rem;
  color: #273856;
}
.pricing-table th {
  color: #fff;
  background: var(--primary);
}
.pricing-table tr {
  background: #fff;
}
.pricing-table tr:nth-child(even) {
  background: #f5f8fb;
}
.pricing-table .best-value {
  margin-top: 10px;
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  background: #fff8e2;
  border-radius: 18px;
  padding: 15px 12px;
  display: inline-block;
}
.faq-list,
.service-explanations,
.benefits,
.feature-comparison,
.customer-feedback {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 17px;
}
.feature-comparison ul, .benefits ul, .service-explanations ul {
  margin-bottom: 0;
}

/******* Section Spacing ******/
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
}

/******* Cards & Visual Blocks *******/
.card, .feature-grid > div, .service-list > div, .faq-list > div {
  background: #fff;
  box-shadow: 0 2px 16px rgba(21,59,100,.11);
  border-radius: 18px;
  padding: 25px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  min-height: 152px;
  transition: box-shadow 0.23s, background 0.13s;
  margin-bottom: 20px;
}
.card:hover, .feature-grid > div:hover, .service-list > div:hover, .faq-list > div:hover {
  box-shadow: 0 6px 32px 0 rgba(21,59,100,0.15);
  background: #F6F9FC;
}
.card img, .feature-grid img, .service-list img {
  width: 48px;
  height: 48px;
  margin-bottom: 13px;
}

/******* Testimonial Slider & Cards ******/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

/******* Reservation ******/
.reservation-info h3 {
  color: var(--accent);
  margin-bottom: 8px;
}
.calendar-placeholder {
  background: var(--secondary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100%;
  margin: 16px 0;
}
.submit-note {
  margin-top: 14px;
}

/****** Contact details, icons, CTA *****/
.contact-details img, .contact-info img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 7px;
}
.contact-info a, .contact-details a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.19s;
}
.contact-info a:hover, .contact-details a:hover {
  color: var(--accent);
}

/******* Footer *******/
footer {
  background: var(--primary);
  color: #fff;
  padding: 46px 0 18px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo img {
  width: 56px;
  height: 56px;
  margin-bottom: 15px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.14s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 310px;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-contact a:hover {
  color: var(--accent);
}

/****** Divider for minimum spacing between cards/sections *******/
.feature-grid > div, .service-list > div, .faq-list > div:not(:last-child), .testimonial-card:not(:last-child) {
  margin-right: 0;
}
.feature-grid, .service-list, .faq-list {
  margin-bottom: 24px;
  gap: 24px;
}

/****** List spacing ******/
ul, ol {
  padding-left: 23px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 7px;
}

/**** Comparison lists ****/
.feature-comparison, .disclaimers {
  background: var(--secondary);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 1px 6px rgba(21,59,100,0.07);
  margin-bottom: 23px;
}

/******* Micro-interactions and transitions *******/
button, .cta-btn, .cta-btn-secondary, .mobile-menu-close, .mobile-menu-toggle {
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
}
.card, .feature-grid > div, .service-list > div {
  transition: box-shadow 0.22s, background 0.18s;
}
.testimonial-card {
  transition: box-shadow 0.19s, background 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(21,59,100,0.18);
  background: var(--secondary);
}

/**** Responsive spacing & font scale ****/
@media (max-width:850px) {
  h1 { font-size: 2rem; }
  .section { padding: 35px 12px; }
  .hero .container { min-height: 190px; }
}
@media (max-width:600px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.08rem; }
  .section, section { padding: 25px 2px; margin-bottom: 36px; }
  .card, .feature-grid > div, .service-list > div, .faq-list > div { padding: 22px 8px; min-width: unset; }
  .testimonial-card { padding: 16px 6px; min-width: 185px; }
  .footer-nav, .footer-contact, .footer-logo { max-width: 98vw; }
  .footer-logo img { width: 40px; height: 40px; }
}

/*********** FLEX COLUMN ON MOBILE **********/
@media (max-width: 900px) {
  .feature-grid, .service-list, .card-container, .content-grid, .testimonial-slider, .customer-quotes {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .footer .container {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .card-container, .card-grid, .testimonial-slider, .customer-quotes {
    flex-direction: column;
    gap: 20px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .main-nav {
    display: none !important;
  }
}

/****** Hide elements if not needed ******/
@media (max-width:410px) {
  .footer-contact p {
    font-size: 0.95rem;
  }
}

/* ================== */
/* COOKIE CONSENT UI  */
/* ================== */
#cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #222c3f;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 -4px 32px 0 rgba(21,59,100,0.21);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 19px 8vw 19px 8vw;
  z-index: 12000;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(.55,0,.15,1), opacity 0.3s;
}
#cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
#cookie-banner .cookie-text {
  flex: 1 1 auto;
  max-width: 470px;
}
#cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 11px 24px;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin: 0 3px;
  transition: background 0.16s, color 0.17s;
  outline: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn.secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--accent);
}
.cookie-btn.secondary:hover,
.cookie-btn.secondary:focus {
  background: var(--accent);
  color: var(--primary);
}

/**** Cookie Preferences Modal ****/
#cookie-modal {
  position: fixed;
  z-index: 13500;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(21,59,100,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
#cookie-modal.open {
  display: flex;
}
#cookie-modal .modal-content {
  background: #fff;
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 22px;
  padding: 44px 23px 32px 23px;
  box-shadow: 0 10px 48px 0 rgba(21,59,100,0.19);
  max-width: 420px;
  width: 95vw;
  max-height: 85vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
}
#cookie-modal .modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: var(--accent);
  color: var(--primary);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(253,191,50,0.14);
}
#cookie-modal .modal-close:hover,
#cookie-modal .modal-close:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary);
  padding: 12px 18px;
  margin-bottom: 10px;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
}
.cookie-toggle input[type="checkbox"] {
  accent-color: var(--accent);
  width: 22px;
  height: 22px;
}
.cookie-category {
  font-weight: 800;
}
.cookie-description {
  font-size: 0.96rem;
  color: #355180;
}

@media (max-width:700px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 15px 16px 15px;
  }
  #cookie-banner .cookie-actions {
    flex-direction: row;
    gap: 8px;
    width: 100%;
    justify-content: flex-start;
  }
  #cookie-modal .modal-content {
    padding: 18px 6px 22px 6px;
    max-width: 97vw;
  }
}

/* ==========================
   SCROLLBAR (for bold look)
   ========================== */
::-webkit-scrollbar {
  width: 11px;
  background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 12px;
}

/***** Simple Animations on elements (appear & hover bounce) *****/
@keyframes fadeInUp {
  0%{opacity:0;transform:translateY(36px)}
  100%{opacity:1;transform:translateY(0)}
}
.section, .card, .testimonial-card, .feature-grid > div, .service-list > div {
  animation: fadeInUp 0.77s cubic-bezier(.57,0,.2,1) both;
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.015);
  transition: transform .17s cubic-bezier(.57,0,.21,1);
}

/* =================
   OTHER UTILITIES
   ================= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map-embed {
  background: var(--secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin: 14px 0;
  min-height: 88px;
}

/********* Misc Spacing *********/
.benefits-list ul, .advisor-cta ul, .next-steps ul {
  padding-left: 23px;
}
.disclaimers p {
  font-size: 0.97rem;
  color: #275477;
  margin-bottom: 0;
}

/********* Responsive fix for table overflow *******/
@media (max-width: 640px) {
  .pricing-table table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td {
    display: block;
    width: 100%;
    text-align: left;
  }
  .pricing-table tr { margin-bottom: 18px; }
}
