/* ========== 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;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F6F6FA;
  color: #191919;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color .2s cubic-bezier(.4,0,.2,1);
}
button {
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  appearance: none;
  transition: background .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1);
}


/* ========== FONT IMPORTS ========== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Open+Sans:400,600&display=swap');

:root {
  --primary: #023047;
  --secondary: #8ECAE6;
  --accent: #FFB703;
  --gold: #C3953A;
  --offwhite: #F6F6FA;
  --black: #191919;
  --darkgray: #2A2A2E;
  --lightgray: #E9ECEF;
  --shadow: 0 4px 24px rgba(24,24,24,0.10), 0 1.5px 6px rgba(36,36,36,.06);
  --radius: 18px;
  --transition: all 0.22s cubic-bezier(.5,.03,.27,1);
  --header-h: 72px;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  background: var(--offwhite);
  color: var(--black);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  letter-spacing: -0.01em;
  line-height: 1.17;
  margin-bottom: 18px;
  font-weight: 700;
}
h1 {
  font-size: 2.4rem;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 600;
}
p, li, blockquote, span, dd {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--darkgray);
  line-height: 1.6;
}
strong {
  color: var(--primary);
  font-weight: 600;
}
.subheadline {
  color: var(--gold);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.17rem;
  font-weight: 500;
  margin-bottom: 24px;
}


/* ========== CONTAINER & LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.section:last-child {
  margin-bottom: 0;
}

/* Ensure spacing between .section elements */
main > .section:not(:last-child) {
  margin-bottom: 60px;
}

/* Flexbox content groupings */
.card-container, .testimonial-slider, .testimonial-grid, .feature-grid, .icon-features, .before-after, .statistical-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.card, .testimonial-card, .feature, .icon-feature {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  min-width: 240px;
  flex: 1 1 280px;
}

.card:last-child, .testimonial-card:last-child, .feature:last-child, .icon-feature:last-child {
  margin-bottom: 0;
}

/* Utility Grids */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.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: 28px 24px;
  border-left: 5px solid var(--gold);
  min-width: 260px;
  background: #fff;
  color: #222;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Icon Features */
.icon-features {
  gap: 22px;
}
.icon-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  background: var(--secondary);
  color: var(--primary);
  padding: 20px 10px 12px;
  min-width: 120px;
  max-width: 180px;
}
.icon-feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.icon-feature p {
  margin: 0;
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
}

/* ========== BUTTONS & CTAs ========== */
.cta, .primary, .secondary, .banner-btn, .cookie-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 38px;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: 0 2px 6px rgba(36,36,36,.05);
  margin-top: 12px;
  margin-bottom: 6px;
}
.cta.primary, .btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--gold);
  box-shadow: 0 3px 10px rgba(2,48,71,0.06);
}
.cta.primary:hover, .btn-primary:hover, .cta.primary:focus {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--primary);
}
.cta.secondary, .btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--accent);
}
.cta.secondary:hover, .btn-secondary:hover, .cta.secondary:focus {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* For button variants in cookie banner */
.banner-btn, .cookie-btn {
  min-width: 120px;
  font-size: 1rem;
  font-weight: 600;
  justify-content: center;
  margin-right: 14px;
}
.banner-btn:last-child, .cookie-btn:last-child {
  margin-right: 0;
}
.banner-btn.accept {
  background: var(--gold);
  color: var(--primary);
  border: none;
}
.banner-btn.reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--gold);
}
.banner-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.banner-btn.accept:hover { background: var(--accent); }
.banner-btn.reject:hover { background: var(--gold); color: #fff; }
.banner-btn.settings:hover { background: var(--secondary); }


/* ========== HEADER & NAV ========== */
header {
  background: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1020;
  min-height: var(--header-h);
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  border-radius: 7px;
  padding: 4px 12px;
  position: relative;
  transition: background-color .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--gold);
}

.mobile-menu-toggle {
  display: none;
  background: var(--gold);
  color: var(--primary);
  font-size: 2.1rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-left: 12px;
  align-items: center;
  justify-content: center;
  transition: background .17s, color .17s;
  z-index: 1200;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent);
  color: #191919;
  outline: none;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
  header .container { gap: 8px; }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2,48,71,0.98);
  transform: translateX(-100vw);
  z-index: 1201;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .35s cubic-bezier(.64,.04,.35,1);
  box-shadow: 0 0 138px 40px rgba(2,48,71,0.16);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 26px;
  background: var(--gold);
  color: var(--primary);
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1202;
  border: none;
  box-shadow: 0 2px 10px #3332;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 92px;
  padding-left: 38px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  color: #fff;
  font-weight: 500;
  padding: 8px 0 8px 0;
  transition: color .18s, background .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
  background: transparent;
  outline: none;
}

@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}


/* ========== MAIN SECTIONS & CUSTOM ELEMENTS ========== */
main {
  padding-top: 20px;
  padding-bottom: 40px;
}

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

.content-wrapper {
  gap: 36px;
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.06rem;
}
.contact-info img {
  height: 20px;
  width: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

/* FAQ/Resource Lists */
.resource-list, .faq-list {
  margin-bottom: 18px;
}
.resource-list li, .faq-list dt {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.faq-list dd {
  margin-bottom: 14px;
  margin-left: 0.95em;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 18px;
}
.service-list li {
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  margin-bottom: 0;
  font-size: 1.07rem;
}
.service-list h3 {
  color: var(--primary);
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 18px 18px;
  font-size: 1.03em;
  box-shadow: 0 1.5px 6px rgba(36,36,36,.05);
}

.notification {
  background: var(--secondary);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 4px 30px 0 rgba(36,36,36,.10);
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 1.08em;
}


/* ========== TESTIMONIALS, HIGHLIGHTS, CARDS ========== */
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.testimonial-card, blockquote {
  font-size: 1.05rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  color: #191919;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card p {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.14rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.testimonial-card span {
  display: block;
  color: var(--gold);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
blockquote {
  font-style: italic;
  border-left: 4px solid var(--gold);
  background: #fff;
  padding: 28px 24px 18px 30px;
  margin-bottom: 20px;
  color: var(--primary);
  position: relative;
}
blockquote span {
  color: var(--accent);
  font-size: 0.98rem;
  margin-top: 8px;
  display: block;
  font-style: normal;
}

.before-after, .summary-highlights, .statistical-highlights {
  background: var(--offwhite);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.summary-highlights ul, .statistical-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.summary-highlights li, .statistical-highlights li {
  font-weight: 500;
  color: var(--primary);
  font-size: 1.02rem;
}

/* ========== FOOTER ========== */
footer {
  background: var(--primary);
  color: #fff;
  padding-top: 50px;
  padding-bottom: 26px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--accent);
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: color .16s;
}
.footer-nav a:hover {
  color: var(--gold);
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 10px;
}
.footer-contact {
  color: #fff;
  font-size: 0.99rem;
  opacity: 0.96;
  text-align: center;
}
.footer-contact span {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin: 0 3px;
}
.footer-contact span{
  color: #fff;
}
.footer-copy {
  color: var(--secondary);
  font-size: 0.98rem;
  margin-top: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  opacity: 0.92;
}


/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2000;
  background: #fff;
  box-shadow: 0 -4px 36px 7px rgba(2,48,71,0.10);
  padding: 26px 22px 26px 30px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
  border-top: 1.5px solid var(--gold);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  animation: cookieSlideInTop 0.6s cubic-bezier(.64,.04,.35,1);
}
@keyframes cookieSlideInTop {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  flex: 2 1 400px;
  font-size: 1.02rem;
  color: var(--primary);
}
.cookie-banner-buttons {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
}
@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    gap: 20px;
    padding: 20px 10px;
  }
  .cookie-banner-buttons {
    justify-content: flex-start;
    gap: 10px;
  }
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2,48,71,0.80);
  z-index: 2100;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.36s cubic-bezier(.4,0,.2,1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  max-width: 440px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 32px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  color: var(--primary);
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: none;
  background: var(--secondary);
  font-size: 2rem;
  color: var(--primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--gold);
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category-toggle label {
  font-size: 1.01em;
  font-weight: 500;
  color: var(--primary);
}
.cookie-toggle input[type="checkbox"] {
  accent-color: var(--gold);
  width: 20px;
  height: 20px;
}
.cookie-category-essential {
  font-weight: 700;
  color: var(--accent);
}


/* ========== LUXURY/PREMIUM ACCENTS ========== */
.card, .icon-feature, .testimonial-card, .service-list li {
  border: 2.5px solid #f5e7c6;
} /* Soft gold border */
.card, .testimonial-card, .icon-feature, .service-list li {
  box-shadow: 0 2px 18px 0 rgba(195,149,58,0.06), var(--shadow);
}
h1, h2, h3, .cta.primary, .footer-brand img {
  letter-spacing: 0.02em;
}
h1, h2, h3 {
  color: var(--primary);
  text-shadow: 0 2.5px 0.5px rgba(255,183,3,0.08);
}
.cta.primary {
  box-shadow: 0 8px 20px -3px rgba(255,183,3,0.13), 0 2px 9px rgba(2,48,71,0.04);
  border-width: 2.5px;
}
.cta.primary:after {
  content: '';
  display: inline-block;
  margin-left: 9px;
  width: 18px; height: 18px; 
  border-radius: 50%;
  border: 2px solid var(--gold);
  vertical-align: middle;
  box-shadow: 0 1.5px 3px rgba(255,183,3,0.13);
  background: linear-gradient(145deg,transparent 60%,var(--gold) 60%);
  opacity: 0.14;
}


/* ========== HOVER & ACTIVE MICRO-INTERACTIONS ========== */
.card, .testimonial-card, .footer-nav a, .service-list li {
  transition: box-shadow 0.22s, transform 0.12s, border-color 0.22s;
}
.card:hover, .icon-feature:hover, .testimonial-card:hover, .service-list li:hover {
  box-shadow: 0 3px 27px 0 rgba(255,183,3,0.14), 0 6px 20px rgba(2,48,71,0.09);
  border-color: var(--gold);
  transform: translateY(-3px) scale(1.012);
}


/* ========== RESPONSIVE DESIGN: MOBILE-FIRST ========== */
@media (max-width: 1000px) {
  .container {
    max-width: 92vw;
  }
  .section {
    padding: 32px 6vw;
  }
}

@media (max-width: 768px) {
  .container, .footer-brand img, .main-nav, .content-wrapper, .icon-features, .card-container, .testimonial-slider, .testimonial-grid, .feature-grid, .before-after, .statistical-highlights {
    max-width: 99vw;
  }
  .section {
    padding: 24px 5vw;
    margin-bottom: 34px;
  }
  h1 {
    font-size: 1.44rem;
  }
  h2 {
    font-size: 1.19rem;
  }
  .card, .testimonial-card, .feature, .icon-feature {
    min-width: 75vw;
    max-width: 98vw;
    padding: 18px 12px;
  }
  .content-grid, .feature-grid, .card-container, .testimonial-slider, .testimonial-grid, .icon-features, .before-after, .statistical-highlights {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .quick-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 540px) {
  .container { padding-left: 2vw; padding-right: 2vw; }
  .section { padding: 14px 2vw; }
  .cta, .primary, .secondary, .banner-btn, .cookie-btn { padding: 11px 10vw; font-size: 1rem; }
  header .container { flex-direction: row; flex-wrap: wrap; min-height: 56px; }
  .logo img { height: 32px; }
  .footer-brand img { height: 32px; }
  .cookie-modal-content {padding: 17vw 4vw 6vw 4vw; max-width: 98vw;}
}

/* Hide container overflow for mobile menu when open */
body.mobile-menu-open {
  overflow: hidden;
}

/* ========== LEGAL AND UTILITY SECTIONS ========== */
.legal-section {
  background: var(--lightgray);
  padding: 18px 16px;
  border-radius: var(--radius);
  box-shadow: 0 1.5px 6px rgba(36,36,36,.06);
  font-size: 1.04em;
  color: var(--primary);
  margin-bottom: 20px;
}
.legal-section ul {
  margin-bottom: 10px;
  margin-left: 18px;
  list-style: disc inside;
}
.legal-section li {
  margin-bottom: 3px;
}
.legal-section a {
  color: var(--accent);
  text-decoration: underline dotted;
}
.legal-section a:hover {
  color: var(--gold);
}

/* ========== ACCESSIBILITY ========== */
a:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
button:focus, .cta:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ========== MISCELLANEOUS ========== */
::-webkit-scrollbar {
  width: 8px;
  background: var(--secondary);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 8px;
}

@media (max-width:400px) {
  .footer-nav { gap: 10px;}
}
