/* =============================
  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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FFFFFF;
  color: #2B3650;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =============================
  Brand fonts
============================= */
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap');

:root {
  --alloc-primary: #2B3650;
  --alloc-secondary: #FFFFFF;
  --alloc-accent: #C89237;
  --alloc-gold: #C89237;
  --alloc-gray: #ECECEC;
  --alloc-shadow: 0 4px 24px 0 rgba(44, 53, 87, 0.07);
  --section-spacing: 60px;
  --container-width: 1200px;
  --radius-main: 18px;
  --radius-card: 14px;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
  --shadow-card: 0 2px 10px 0 rgba(44, 53, 87, 0.06);
  --shadow-hover: 0 6px 32px 0 rgba(200,146,55,0.16);
}

/* =============================
  Utility classes & containers
============================= */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.text-section {
  margin: 18px 0 0 0;
  font-size: 1rem;
  color: var(--alloc-primary);
}

/*****************************************
  TYPOGRAPHY
*****************************************/
h1,h2,h3,h4,h5,h6 {
  font-family: 'Roboto Slab', serif;
  color: var(--alloc-primary);
  margin-bottom: 14px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.85rem;
  color: var(--alloc-primary);
}
h3 {
  font-size: 1.25rem;
  color: var(--alloc-primary);
}
h4,h5,h6 {
  font-size: 1rem;
  color: var(--alloc-primary);
}
p, ul, li, .text-section, span, label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: var(--alloc-primary);
}

/*****************************************
  HEADER & NAVIGATION
*****************************************/
header {
  width: 100%;
  background: var(--alloc-secondary);
  border-bottom: 1.5px solid var(--alloc-gray);
  box-shadow: var(--shadow-card);
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding-top: 18px;
  padding-bottom: 18px;
}
.desktop-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  position: relative;
  font-size: 1rem;
  transition: color var(--transition);
}
.desktop-nav a:hover:not(.btn-primary), .desktop-nav a:focus:not(.btn-primary) {
  color: var(--alloc-gold);
}
.desktop-nav .btn-primary {
  margin-left: 8px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--alloc-primary);
  cursor: pointer;
}

/*****************************************
  BUTTONS & CTAs
*****************************************/
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: var(--alloc-gold);
  color: var(--alloc-secondary);
  padding: 11px 32px;
  border-radius: 40px;
  box-shadow: 0 2px 12px 0 rgba(44, 53, 87, 0.03);
  border: none;
  font-size: 1.15rem;
  letter-spacing: 0.6px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
}
.btn-primary:hover, .btn-primary:focus {
  background: #b38022;
  color: #fffbea;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.025);
}

/* Inline link with accent underline */
a.inline-accent {
  border-bottom: 2px solid var(--alloc-gold);
  padding-bottom: 2px;
  color: var(--alloc-primary);
  font-weight: 500;
  transition: border-color var(--transition), color var(--transition);
}
a.inline-accent:hover {
  color: var(--alloc-gold);
  border-color: var(--alloc-primary);
}

/*****************************************
  FLEX SPACING & LAYOUTS
*****************************************/
.section {
  margin-bottom: var(--section-spacing);
  padding: 40px 20px;
  background: var(--alloc-secondary);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--alloc-secondary);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 34px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.02);
}
.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: #f9f8f2;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(44,53,87,0.07);
  border-left: 6px solid var(--alloc-gold);
}
.testimonial-card p {
  color: #2B3650;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: var(--alloc-primary);
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature grid for icons */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.feature {
  flex: 1 1 210px;
  min-width: 200px;
  max-width: 265px;
  background: var(--alloc-secondary);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border: 1.5px solid #ece6db;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.feature img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 1px 2px #d8c39980);
}
.feature h3 {
  color: var(--alloc-gold);
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.feature:hover, .feature:focus {
  border-color: var(--alloc-gold);
  box-shadow: var(--shadow-hover);
}

/*****************************************
  MAIN & SECTION TYPOGRAPHY
*****************************************/
main {
  width: 100%;
  background: var(--alloc-secondary);
}

section {
  margin-bottom: 60px;
}

/*****************************************
  FOOTER
*****************************************/
footer {
  background: var(--alloc-primary);
  color: #fff1d1;
  padding: 46px 0 24px 0;
  font-size: 0.98rem;
}
footer .container {
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.footer-nav a {
  color: #fffbe7;
  font-weight: 500;
  font-size: 15px;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--alloc-gold);
  background: #fffdf7;
}
footer .text-section {
  color: #f9e9c2;
  font-size: 0.98rem;
  padding-top: 6px;
}
footer img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px #00000024);
}

/*****************************************
  MOBILE NAVIGATION
*****************************************/
@media (max-width: 1023px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    z-index: 102;
    margin-left: auto;
  }
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(43,54,80,0.96);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--alloc-gold);
  font-size: 2.2rem;
  padding: 22px 24px 8px 16px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 18px;
  z-index: 10000;
  filter: drop-shadow(0 2px 12px #00000033);
  transition: color var(--transition);
}
.mobile-menu-close:hover {
  color: #FFD14B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  padding-left: 32px;
  padding-top: 8px;
}
.mobile-nav a {
  color: #fffbe7;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 14px 0 10px 0;
  border-bottom: 1px solid #3d4462;
  width: 85%;
  margin-bottom: 2px;
  transition: color var(--transition), background var(--transition);
  border-radius: 0 18px 18px 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
  color: var(--alloc-gold);
  font-weight: 700;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(255,255,255, 0.12);
  color: var(--alloc-gold);
  outline: none;
}

/*****************************************
  SECTION AND CARD SPACING (FLEX)
*****************************************/
section > .container {
  gap: 0;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

/*****************************************
  FORMS (Contact)
*****************************************/
input, textarea, select {
  font-family: inherit;
  border: 1.5px solid #e0e0d5;
  border-radius: 7px;
  padding: 11px 16px;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--alloc-gold);
  outline: none;
  box-shadow: 0 2px 12px 0 #c8923711;
}
label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

/*****************************************
  ACCENT DETAILS & MICRO-INTERACTIONS
*****************************************/
hr {
  border: none;
  border-top: 1.5px solid #ece6db;
  margin: 34px 0;
}
/* Gold accent lines */
.gold-divider {
  height: 3px;
  width: 44px;
  background: var(--alloc-gold);
  border-radius: 6px;
  margin: 0 0 15px 0;
}

/*****************************************
  ANIMATIONS & TRANSITIONS
*****************************************/
.section, .card, .feature, .btn-primary, .testimonial-card {
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition), border-color var(--transition);
}

/*****************************************
  RESPONSIVE DESIGN
*****************************************/
@media (max-width: 1023px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .footer-nav {
    gap: 12px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.16rem;
  }
  .section {
    padding: 33px 8px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 6px;
  }
}
@media (max-width: 520px) {
  .section {
    padding: 18px 0px;
    margin-bottom: 23px;
  }
  .footer-nav {
    gap: 4px;
  }
  footer .container {
    gap: 6px;
    padding-left: 9px;
    padding-right: 8px;
  }
}

/*****************************************
  COOKIE BANNER & MODAL
*****************************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fffbe7;
  color: #2B3650;
  padding: 20px 28px 20px 18px;
  box-shadow: 0 -2px 18px #d3a04f33;
  border-top: 2px solid var(--alloc-gold);
  z-index: 99998;
  gap: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  animation: cookieFadeIn 0.5s var(--transition);
}
@keyframes cookieFadeIn {
  from {transform: translateY(64px); opacity: 0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 28px;
  padding: 8px 21px;
  background: var(--alloc-gold);
  color: #fff;
  margin-left: 0;
  margin-right: 2px;
  box-shadow: 0 2px 8px #c8923709;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
  cursor: pointer;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: var(--alloc-gold);
  border: 1.5px solid var(--alloc-gold);
  margin-left: 8px;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #b38022;
  color: #fffbea;
  box-shadow: var(--shadow-hover);
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: var(--alloc-gold);
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 8px 13px 10px;
    font-size: 1rem;
  }
  .cookie-banner .cookie-actions {
    gap: 7px;
  }
}

.cookie-modal {
  position: fixed;
  z-index: 99999;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 376px;
  background: var(--alloc-secondary);
  border-radius: 20px;
  box-shadow: 0 6px 48px #454F6190;
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  animation: cookieModalIn 0.23s var(--transition) forwards;
  display: flex;
  flex-direction: column;
  padding: 34px 32px 26px 32px;
  gap: 19px;
}
@keyframes cookieModalIn {
  from {opacity:0;transform:translate(-50%, -42%) scale(.92)}
  to   {opacity:1;transform:translate(-50%, -50%) scale(1)}
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.cookie-modal-header h2 {
  font-size: 1.18rem;
  color: var(--alloc-primary);
  margin-bottom: 0;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--alloc-gold);
  cursor: pointer;
  align-self: flex-start;
}
.cookie-modal-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #f7eee0;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 7px;
  border-left: 3px solid var(--alloc-gold);
  font-size: 1.01rem;
}
.cookie-category label {
  flex: 1 1 auto;
  font-weight: 500;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--alloc-gold);
  width: 19px;
  height: 19px;
  margin-left: 14px;
}
.cookie-category.essential label {
  color: #a89d7d;
}
.cookie-category.essential input[type='checkbox'] {
  display: none!important;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 11px;
  margin-top: 14px;
}
.cookie-modal-footer button {
  font-size: 1.01rem;
  padding: 7px 22px;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 19px 6px 14px 9px;
    max-width: 96vw;
  }
  .cookie-modal-header h2 {
    font-size: 1.05rem;
  }
}

/*****************************************
  MISCELLANEOUS
*****************************************/
::-webkit-scrollbar {
  width: 7px;
  background: #ece3d2;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--alloc-gold);
  border-radius: 5px;
}

::selection {
  background: #fff6e2;
}

/*****************************************
  ACCESSIBILITY & FOCUS
*****************************************/
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2.5px solid var(--alloc-gold);
  outline-offset: 2px;
  z-index: 10;
}

/*****************************************
  IMAGE ICONS (Contact & text blocks)
*****************************************/
.text-section img {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-bottom: -3px;
  margin-right: 7px;
  filter: drop-shadow(0 1px 2px #d8be7b56);
}

/* Overwrite for card grids not in feature-grid */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .card-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/*****************************************
  SPECIAL: THANK-YOU PAGE CTA
*****************************************/
.text-section a.btn-primary {
  margin-top: 14px;
  display: inline-block;
}

/*****************************************
  PRINT SAFE
*****************************************/
@media print {
  * {
    color: #222 !important;
    background: none !important;
    box-shadow: none !important;
  }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  main, section, .container, .content-wrapper {
    width: 100vw !important;
    max-width: 100vw !important;
    background: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* END of Style */
