/* ========================
   FuseBolt Shield CSS Reset
   ======================== */
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;
  background: #F5F7FA;
  color: #243552;
}
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
a { color: inherit; text-decoration: none; transition: color 0.25s; }
img { max-width: 100%; display: block; border: 0; }

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F5F7FA;
  color: #243552;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #243552;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 12px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; font-weight: 600; }
h4 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 500; }
h5, h6 { font-size: 1rem; }

p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #36405c;
  line-height: 1.6;
  font-size: 1rem;
}
strong {
  font-weight: 600;
  color: #243552;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(36,53,82,0.08);
}

/* =====================
   Luxury Color Palette
   ===================== */
:root {
  --gold: #C6A34F;
  --gold-rgb: 198,163,79;
  --primary: #243552;
  --secondary: #6CB39E;
  --accent: #F5F7FA;
  --text: #243552;
  --section-bg: #F5F7FA;
  --card-bg: #fff;
  --shadow: 0 8px 32px rgba(36,53,82,0.10);
  --border-light: #E4E8F0;
}

/* ========================
   Header & Navigation
   ======================== */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(36,53,82,0.03);
  padding: 0;
  position: sticky; top: 0; z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}
header img {
  height: 48px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.07rem;
  color: #243552;
  letter-spacing: 0.01em;
  padding: 8px 10px;
  border-radius: 8px;
  position: relative;
  transition: background 0.23s, color 0.23s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--gold);
  background: rgba(var(--gold-rgb),0.12);
}

.cta-btn {
  background: var(--gold);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 26px;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  margin-left: 12px;
  box-shadow: 0 3px 18px rgba(var(--gold-rgb),0.15);
  border: none;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.24s, transform 0.14s;
  border: 2px solid transparent;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #af8f36;
  color: #fff;
  box-shadow: 0 6px 26px rgba(var(--gold-rgb),0.16);
  transform: translateY(-1px) scale(1.04);
  border: 2px solid #c6a34f;
}

/* ===============
   Mobile Menu
   =============== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: transparent;
  border: none;
  color: #243552;
  cursor: pointer;
  margin-left: 12px;
  z-index: 81;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--gold);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 200;
  box-shadow: 0 8px 48px rgba(36,53,82,0.13);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #243552;
  padding: 24px 28px 0 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 201;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 32px 32px 0 32px;
  margin-top: 18px;
}
.mobile-nav a {
  color: #243552;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 0;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
  background: rgba(var(--gold-rgb),0.12);
}

/* Hide main-nav in mobile */
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .cta-btn {
    display: none;
  }
}

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

/* ===================================
   Hero Section + General Section Spacing
   =================================== */
.hero {
  background: linear-gradient(135deg, #f9f7f1 75%, #f5f7fa 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 48px rgba(36,53,82,0.07);
  padding: 40px 0 24px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #243552;
  margin-bottom: 12px;
  line-height: 1.16;
}
.hero p {
  color: #4f5d75;
  font-size: 1.12rem;
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin-top: 10px;
}

.section, .features, .about, .services, .cta, .contact, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(36,53,82,0.08);
}

/* ===================================
   Flexbox Patterns for Content Layouts
   =================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  padding: 28px 22px;
  transition: box-shadow 0.2s, transform 0.21s;
  border: 1px solid var(--border-light);
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(var(--gold-rgb),0.13);
  transform: translateY(-4px) scale(1.018);
  border-color: var(--gold);
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F6FA;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 3px 16px rgba(36,53,82,0.04);
  border: 1px solid #efedea;
  color: #243552;
  font-size: 1.06rem;
  transition: box-shadow 0.2s, border-color 0.15s;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #243552;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #C6A34F;
  letter-spacing: 0.01em;
  margin-left: 12px;
  font-weight: 600;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================
   FEATURES Grids
   ================ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px 28px 24px;
  flex: 1 1 280px;
  min-width: 240px;
  box-shadow: 0 2px 16px rgba(36,53,82,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border: 1.5px solid #f0efd7;
  transition: box-shadow 0.23s, border-color 0.14s;
}
.feature-card:hover, .feature-card:focus-within {
  box-shadow: 0 8px 36px rgba(var(--gold-rgb),0.09);
  border-color: var(--gold);
}
.feature-card img {
  width: 52px; height: 52px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1.1rem;
  color: #243552;
}
.feature-card p {
  color: #4f5d75;
  font-size: 1rem;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.service-item {
  background: #F5F6FA;
  border-radius: 16px;
  padding: 28px 18px 20px 18px;
  min-width: 220px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 1px 8px rgba(36,53,82,0.04);
  border: 1px solid #ececf3;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.service-item h3 {
  font-size: 1.13rem;
  color: #243552;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-price {
  font-size: 1.03rem;
  color: #C6A34F;
  margin-top: 12px;
  font-weight: 700;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 6px 28px rgba(var(--gold-rgb),0.11);
  border-color: var(--gold);
}

/* ================
   About/Team Cards
   ================ */
.team-member-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.team-member-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(36,53,82,0.07);
  min-width: 210px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 18px 20px 18px;
  border: 1.5px solid #ececf3;
  gap: 7px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border-color 0.14s;
}
.team-member-card:hover, .team-member-card:focus-within {
  box-shadow: 0 7px 22px rgba(var(--gold-rgb),0.10);
  border-color: var(--gold);
}
.team-member-card img {
  height: 48px;
  margin-bottom: 8px;
}

/* ============
   Process Stepper
   ============ */
.process-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 18px;
  justify-content: space-between;
}
.process-step {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px rgba(36,53,82,0.07);
  border: 1.5px solid #f0efd7;
  flex: 1 1 220px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 26px 14px 20px 16px;
  transition: box-shadow 0.17s, border-color 0.12s;
  margin-bottom: 20px;
}
.process-step img {
  height: 38px;
  margin-bottom: 12px;
}
.process-step h4 {
  color: #243552;
  font-size: 1.07rem;
}
.process-stepper .process-step:hover,
.process-stepper .process-step:focus-within {
  box-shadow: 0 5px 18px rgba(var(--gold-rgb),0.10);
  border-color: var(--gold);
}

/* ===================
   News/Events styling
   =================== */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 29px;
}
.news-list li {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 8px rgba(36,53,82,0.06);
  padding: 20px 18px 16px 18px;
  border-left: 5px solid var(--gold);
  transition: box-shadow 0.17s, border-color 0.12s;
}
.news-list li:hover, .news-list li:focus-within {
  box-shadow: 0 4px 18px rgba(var(--gold-rgb),0.10);
  border-color: #A88636;
}
.news-list h3 {
  color: #243552;
  font-size: 1.13rem;
  font-weight: 600;
}
.news-highlights {
  background: #F5F6FA;
  border-radius: 14px;
  padding: 16px 14px;
  margin-top: 10px;
  color: #36405c;
  box-shadow: 0 0.5px 3px rgba(36,53,82,0.05);
  border-left: 4px solid var(--gold);
}

/* =========================
   Text Section Styling
   ========================= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section h3 {
  margin-top: 10px;
  margin-bottom: 4px;
  font-size: 1.09rem;
}
.text-section ul {
  margin-left: 20px;
  list-style: disc;
  margin-bottom: 8px;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1rem;
}
.text-section a {
  color: #6CB39E;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
.text-section a:hover, .text-section a:focus {
  color: var(--gold);
  text-decoration: none;
}

.map-placeholder {
  width: 100%;
  height: 250px;
  background: #E4E8F0;
  border-radius: 15px;
  margin-top: 16px;
  position: relative;
  box-shadow: 0 1px 6px rgba(36,53,82,0.04);
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1rem;
  color: #C6A34F;
}

/* ===================
   CTA Section
   =================== */
.cta {
  background: linear-gradient(87deg,#f8f6ef 65%, #f5f7fa 100%);
  border-radius: 22px;
  box-shadow: 0 5px 16px rgba(var(--gold-rgb),0.06);
  margin-bottom: 60px;
  padding: 40px 20px 35px 20px;
}
.cta-section {
  margin-top: 18px;
}
.cta-btn {
  display: inline-block;
}

/* =============
   Footer
   ============= */
footer {
  background: #243552;
  color: #fff;
  padding: 0;
  font-size: 1rem;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 30px 16px 14px 16px;
}
footer img {
  height: 36px;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  opacity: 0.80;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.19s, opacity 0.22s;
  border-radius: 5px;
  padding: 3px 7px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #C6A34F;
  opacity: 1;
  background: rgba(198,163,79,0.07);
}
.footer-info span {
  font-size: 0.99rem;
  color: #fff;
  opacity: 0.82;
  margin-top: 8px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* =============================
   Responsive Layout
   ============================= */
@media (max-width: 1200px) {
  .main-nav { gap: 12px; }
  .feature-grid, .services-list, .team-member-cards, .process-stepper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 32px 0 10px 0; border-radius: 0 0 22px 22px; }
  .section, .features, .about, .services, .cta, .contact, .testimonials {
    margin-bottom: 32px;
    padding: 24px 6px;
    border-radius: 12px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .feature-grid, .services-list, .team-member-cards, .process-stepper {
    flex-direction: column;
    gap: 14px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    padding: 13px;
    border-radius: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .map-placeholder {
    height: 160px;
    border-radius: 10px;
  }
  .footer-nav {
    gap: 9px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.23rem; }
}

/* ============
   Micro-interactions
   ============ */
.feature-card, .card, .service-item, .team-member-card, .process-step {
  transition: box-shadow 0.22s, border-color 0.12s, transform 0.11s;
}
.feature-card:active, .card:active, .service-item:active, .process-step:active, .team-member-card:active {
  transform: scale(0.99);
  box-shadow: 0 1px 2px rgba(198,163,79,0.08);
}

/* ============
   Cookie Consent Banner
   ============ */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #243552;
  box-shadow: 0 -3px 16px rgba(36,53,82,0.13);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 18px 16px 18px;
  border-radius: 18px 18px 0 0;
  transition: transform 0.2s;
  font-size: 1rem;
}
.cookie-consent-banner.hide {
  display: none;
}
.cookie-consent-banner p {
  font-size: 1rem;
  color: #243552;
  margin-bottom: 6px;
}
.cookie-consent-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--gold);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 16px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 6px;
  box-shadow: 0 1px 8px rgba(var(--gold-rgb),0.15);
  transition: background 0.19s, box-shadow 0.19s;
}
.cookie-btn.reject {
  background: #243552;
  color: #fff;
}
.cookie-btn.settings {
  background: #F5F7FA;
  border: 2px solid #C6A34F;
  color: #C6A34F;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #af8f36;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fffbe5;
  color: #C6A34F;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,53,82,0.64);
  display: flex;
  align-items: center; justify-content: center;
  z-index: 5200;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.33s;
}
.cookie-modal.hide {
  display: none;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 460px;
  width: 93vw;
  box-shadow: 0 8px 40px rgba(var(--gold-rgb),0.11);
  padding: 32px 24px 22px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-pop-in 0.4s cubic-bezier(.68,-0.31,.94,1.42);
}
@keyframes cookie-pop-in {
  0% { opacity:0; transform: scale(0.85) translateY(40px); }
  100% { opacity:1; transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 1.7rem;
  background: none;
  color: #243552;
  border: none;
  cursor: pointer;
  z-index: 1;
  transition: color 0.22s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--gold);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #243552;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #C6A34F;
  margin-right: 5px;
}
.cookie-category.essential label {
  color: #6CB39E;
}

@media (max-width: 450px) {
  .cookie-modal-content {
    padding: 14px 6px 13px 6px;
    border-radius: 10px;
  }
  .cookie-category {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
} 

/* =============================
   Misc / Utility
   ============================= */
::-webkit-scrollbar { width: 9px; background: #efece5; }
::-webkit-scrollbar-thumb { background: #d6c9a6; border-radius: 8px; }

hr { border: none; border-top: 1px solid #ecece7; margin: 16px 0; }

/* Spacing between sections/cards */
.section, .features, .about, .services, .cta, .contact, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .feature-card, .service-item, .team-member-card, .testimonial-card {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .services-list, .team-member-cards, .content-grid, .process-stepper {
  gap: 20px;
}

/* Ensure no content overlap and use flex only */
.card, .team-member-card, .feature-card, .testimonial-card, .service-item {
  position: relative;
  z-index: 1;
}

/* ===========
   Print Styles
   =========== */
@media print {
  header, footer, .cta, .cookie-consent-banner, .cookie-modal { display: none !important; }
  body, .container { background: #fff; color: #232323; }
  section, .section { background: #fff; box-shadow: none; border-radius: 0; padding: 0; margin: 0; }
}
