/* ==========================================================
   CSS RESET & BASE STYLE - mobile first, luxury_premium style
   ========================================================== */
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.6;
  background: #fff;
  color: #222;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em; 
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 22px; }
strong { font-weight: 600; }

/* ===============================================
   LUXURY PREMIUM COLORS & TYPOGRAPHY VARS
   =============================================== */
:root {
  --luxury-primary: #2D3A59;
  --luxury-secondary: #E8EAED;
  --luxury-bg: #F8F8FB;
  --luxury-gold: #CEB05B; /* premium gold accent */
  --luxury-primary-font: 'Montserrat', Arial, Helvetica, sans-serif;
  --luxury-body-font: 'Open Sans', Arial, Helvetica, sans-serif;
  --luxury-accent: #F6D55C;
  --luxury-secondary-green: #5DD39E;
  --luxury-nav-bg-mobile: #23243d;
}

/* ===============================================
   TYPOGRAPHY & HEADINGS
   =============================================== */
h1, .content-wrapper h1 {
  font-family: var(--luxury-primary-font);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.12;
  color: var(--luxury-primary);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h2, .content-wrapper h2 {
  font-family: var(--luxury-primary-font);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--luxury-primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h3, .content-wrapper h3 {
  font-family: var(--luxury-primary-font);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--luxury-primary);
  margin-bottom: 8px;
}
h4, .content-wrapper h4 {
  font-family: var(--luxury-primary-font);
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--luxury-primary);
  margin-bottom: 8px;
}
p, li, ul, ol, dl, dt, dd {
  color: #333;
  font-family: var(--luxury-body-font);
  font-size: 1rem;
  margin-bottom: 16px;
}
ul, ol {
  margin-bottom: 20px;
}

/* ===============================================
   LAYOUT & UTILITY CLASSES
   =============================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--luxury-bg);
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(141, 149, 178, 0.08);
  transition: box-shadow 0.2s 0s;
}
/* Give main sections on homepage white background for extra pop */
.hero, .thank-you, .cta-final, .cta-section, .cta-intake, .cta-signup, .cta-morequestions, .cta-inspire {
  background: #fff;
}

/* ====================
   CARD & FLEX PATTERNS
   ==================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(128, 112, 61, 0.05);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.20s;
  padding: 24px 20px;
}
.card:hover {
  box-shadow: 0 10px 38px -2px rgba(206, 176, 91, 0.32);
  transform: translateY(-4px) 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 {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(206, 176, 91, 0.10);
  margin-bottom: 20px;
  min-width: 0;
  color: #212336;
  transition: box-shadow 0.18s;
  border-left: 5px solid var(--luxury-gold);
  position: relative;
}
.testimonial-card p {
  color: #23243D;
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: var(--luxury-primary);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 9px 0 rgba(46, 58, 89,0.07);
  padding: 18px 16px;
}
/* Used for .features and .feature-grid */
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.feature {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(190, 160, 60, 0.06);
  padding: 22px 18px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 8px rgba(206,176,91,0.15));
}
.feature:hover {
  box-shadow: 0 6px 32px 0 rgba(206, 176, 91, 0.17);
  transform: translateY(-3px) scale(1.02);
}

/* ===================
   NAVIGATION & HEADER
   =================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(46, 58, 89, 0.07);
  position: sticky;
  top: 0;
  z-index: 199;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: var(--luxury-primary-font);
  font-weight: 500;
  font-size: 1rem;
  color: var(--luxury-primary);
  padding: 8px 14px;
  border-radius: 20px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--luxury-gold);
  color: #312303;
}
.cta-primary {
  display: inline-block;
  background: var(--luxury-gold);
  color: #212114;
  font-family: var(--luxury-primary-font);
  font-size: 1.08rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 25px;
  box-shadow: 0 2px 14px 0 rgba(46, 58, 89, 0.13);
  border: none;
  margin-left: 12px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.21s, color 0.18s, box-shadow 0.16s, transform 0.13s;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #ffd44d;
  color: #23243d;
  box-shadow: 0 6px 28px 0 rgba(206, 176, 91, 0.23);
  transform: translateY(-2px) scale(1.045);
}
.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--luxury-gold);
  font-family: var(--luxury-primary-font);
  border: 1.7px solid var(--luxury-gold);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 10px 26px;
  border-radius: 25px;
  margin-left: 10px;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.21s, color 0.15s, border-color 0.18s;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: var(--luxury-gold);
  color: #fff;
}

/* =============================================
   MOBILE MENU - BURGER NAVIGATION
   ============================================= */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--luxury-nav-bg-mobile);
  color: var(--luxury-gold);
  font-size: 2rem;
  padding: 8px 13px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  box-shadow: 0 1.5px 8px rgba(46,58,89,0.10);
  margin-left: 8px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  z-index: 205;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--luxury-gold);
  color: var(--luxury-primary);
  transform: scale(1.04) rotate(-3deg);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--luxury-nav-bg-mobile);
  color: #fff;
  z-index: 210;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-105%);
  transition: transform 0.32s cubic-bezier(0.38,0.01,0,1.01);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--luxury-gold);
  font-size: 2.2rem;
  padding: 0 16px 0 0;
  margin-top: 20px;
  margin-bottom: 22px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 215;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff09d;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
  padding-left: 34px;
}
.mobile-nav a {
  font-family: var(--luxury-primary-font);
  font-size: 1.22rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  width: fit-content;
  transition: color 0.18s, border-bottom 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--luxury-gold);
  border-bottom: 2px solid var(--luxury-gold);
}

/* Only show hamburger on mobile, hide main nav */
@media (max-width: 1020px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex !important;
  }
}
@media (min-width: 1021px) {
  .mobile-menu-toggle { display: none !important; }
  .mobile-menu { display: none !important; }
}

/* =============================================
   HERO SECTION & CTA FINAL
   ============================================= */
.hero {
  background: #fff;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 34px 84px 0 rgba(206,176,91,0.05);
  min-height: 40vh;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding-top: 20px;
}
.hero h1 {
  font-size: 2.25rem;
  color: var(--luxury-primary);
  margin-bottom: 14px;
  line-height: 1.14;
}
.hero p {
  font-size: 1.13rem;
  max-width: 550px;
  margin-bottom: 32px;
}

/* =============================================
   TESTIMONIALS - READABILITY FOCUS
   ============================================= */
.testimonials, .testimonials-main {
  background: var(--luxury-bg);
  border-radius: 22px;
  margin-bottom: 60px;
  padding-top: 30px;
  padding-bottom: 32px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(46, 58, 89, 0.10);
  color: #23243d;
  border-left: 5px solid var(--luxury-gold);
  min-width: 240px;
  max-width: 400px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(206, 176, 91,0.19);
  transform: translateY(-2px) scale(1.025);
}

/* =============================================
   FAQ / DL Styling
   ============================================= */
.faq-list { margin-bottom: 32px; }
.faq-list dt {
  font-family: var(--luxury-primary-font);
  color: var(--luxury-primary);
  font-size: 1.09rem;
  font-weight: 600;
  margin-top: 14px; 
  margin-bottom: 7px;
  line-height: 1.4;
}
.faq-list dd {
  color: #262626;
  margin-left: 0;
  margin-bottom: 14px;
  font-size: 1rem;
  padding-left: 18px;
}


/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: var(--luxury-primary);
  color: #fffde9;
  padding: 44px 0 18px 0;
  border-top: 4px solid var(--luxury-gold);
}
.footer-logo img {
  width: 106px;
  height: auto;
  margin-bottom: 18px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 44px 38px;
  padding: 0 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.footer-nav a {
  color: #fffde9;
  opacity: 0.90;
  font-family: var(--luxury-primary-font);
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1.01rem;
  transition: color 0.19s, opacity 0.16s;
}
.footer-nav a:hover {
  color: var(--luxury-gold);
  opacity: 1;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.99rem;
  margin-bottom: 8px;
  color: #fffde9;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  margin-right: 3px;
}

/* ===================================
   SUBTLE HIGHLIGHT & GOLD ACCENTS
   =================================== */
.feature h3,
.feature-grid h3,
.about-overview strong,
.services-preview strong,
.courses-overview strong,
.legal-main strong {
  color: var(--luxury-gold);
}
.section h2:after, .content-wrapper h2:after {
  content: "";
  display: block;
  width: 48px; height: 2.5px;
  background: var(--luxury-gold);
  margin-top: 7px;
  margin-bottom: 10px;
  border-radius: 2px;
}
.feature img, .footer-contact img {
  filter: drop-shadow(0 2px 7px #ffefbb23);
}

/* ===================
   RESPONSIVE DESIGN
   =================== */
@media (min-width: 700px) {
  h1, .content-wrapper h1 { font-size: 2.8rem; }
  h2, .content-wrapper h2 { font-size: 2.1rem; }
  h3, .content-wrapper h3 { font-size: 1.23rem; }
  .hero h1 { font-size: 2.65rem; }
}
@media (max-width: 768px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .section, section { padding: 30px 7px; margin-bottom: 36px; }
  .content-grid, .features, .feature-grid { flex-direction: column; gap: 20px; }
  .feature { min-width: 0; width: 100%; }
  .footer-contact p, .footer-nav { font-size: 0.97rem; }
  .testimonial-slider { flex-direction: column; gap: 20px; }
  .map-hours h2 { margin-top: 18px; }
  .footer-logo img { width: 79px; }
}
@media (max-width: 520px) {
  h1, .content-wrapper h1 { font-size: 1.45rem; }
  h2, .content-wrapper h2 { font-size: 1.18rem; }
  .hero h1 { font-size: 1.3rem; }
  section, .section { border-radius: 14px; }
  .footer-logo img { width: 60px; }
}
@media (max-width: 1020px) {
  footer .container {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
}


/* ================================================= 
   FORMS, THANK-YOU, & OTHER ELEMENTS
   ================================================= */
input, textarea, select {
  font-family: var(--luxury-body-font);
  font-size: 1rem;
  border-radius: 7px;
  border: 1.4px solid #dadada;
  padding: 8px 13px;
  margin-bottom: 15px;
  background: #fff;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--luxury-gold);
}
button {
  font-family: var(--luxury-primary-font);
}

.thank-you {
  text-align: left;
  margin-top: 55px;
  background: #fff6e5;
  border: 1.2px solid var(--luxury-gold);
  box-shadow: 0 2px 16px 0 rgba(206, 176, 91, 0.16);
}
.thank-you ul {
  margin-left: 15px;
  padding-left: 20px;
}
/* Contact details & hours visually enhanced */
.contact-details {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-details p, .map-hours p {
  font-size: 1.04rem;
  color: #444;
  margin-bottom: 2px;
}

.map-hours {
  margin-top: 20px;
}

/***********************
* COOKIE CONSENT BANNER
************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 -3.5px 28px 2px rgba(46,58,89,0.10);
  border-top: 3px solid var(--luxury-gold);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 21px 16px 17px 16px;
  font-size: 0.98rem;
  animation: cb-enter 0.65s cubic-bezier(0.15,0.93,0.24,1.1);
}
@keyframes cb-enter {
  from { transform: translateY(80px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner__text {
  color: #1a1c22;
  margin-bottom: 6px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
  align-items: center;
}
.cookie-btn {
  font-family: var(--luxury-primary-font);
  font-size: 1.02rem;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, box-shadow 0.11s, border 0.18s;
  margin: 0;
}
.cookie-btn.accept {
  background: var(--luxury-gold);
  color: #182018;
  box-shadow: 0 1.5px 5px 0 rgba(46,58,89,0.10);
}
.cookie-btn.accept:hover { background: #ffe48c; }
.cookie-btn.reject {
  background: transparent;
  color: var(--luxury-gold);
  border: 1.2px solid var(--luxury-gold);
}
.cookie-btn.reject:hover { background: var(--luxury-gold); color:#fff; }
.cookie-btn.settings {
  background: var(--luxury-accent);
  color: #3B4600;
  border: none;
}
.cookie-btn.settings:hover { background: #f7e296; }

/***************************
 * COOKIE SETTINGS MODAL
 ***************************/
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(22,24,28,0.44);
  z-index: 4500;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.28s;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  padding: 32px 24px;
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 420px;
  margin-bottom: 0;
  box-shadow: 0 3px 32px 0 rgba(206,176,91,0.08);
  font-family: var(--luxury-body-font);
  color: #23243D;
  animation: cb-modal-show 0.33s cubic-bezier(0.18,0.93,0.24,1.1);
}
@keyframes cb-modal-show {
  from { transform: translateY(95px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-modal h2 {
  font-family: var(--luxury-primary-font); font-size: 1.28rem;
  margin-bottom: 11px;
}
.cookie-modal .modal-section {
  margin-bottom: 19px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1.07rem;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--luxury-gold);
}
.cookie-modal .btn-row {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.cookie-modal .cookie-btn { font-size: 1rem; }
.cookie-modal .close-modal {
  position: absolute;
  top: 18px; right: 18px;
  background: transparent;
  border: 0;
  font-size: 1.4rem;
  color: var(--luxury-gold);
  cursor: pointer;
}
.cookie-modal .close-modal:hover { color: #face73; }

@media (min-width: 520px) {
  .cookie-modal {
    border-radius: 24px;
    margin-top: 65px;
    margin-bottom: 0;
    max-width: 420px;
  }
}

/***************
  ANIMATIONS
***************/
a, button, .feature, .card, .testimonial-card, .cta-primary, .cta-secondary, .main-nav a, .mobile-nav a, .cookie-btn {
  transition: background 0.2s, color 0.19s, box-shadow 0.15s, border 0.18s, transform 0.13s;
}

/****************************************************
  SCROLLBAR ENHANCEMENT FOR LUXURY STYLE
*****************************************************/
::-webkit-scrollbar { width: 7px; background: #f5f3ee; }
::-webkit-scrollbar-thumb { background: var(--luxury-gold); border-radius: 8px; }

/*****************************************************
  ENSURE MINIMUM SPACING BETWEEN CARDS & SECTIONS
******************************************************/
.section > * + *,
section > * + * {
  margin-top: 20px;
}
.card-container > * {
  margin-bottom: 0;
}
.content-grid > *, .features > *, .feature-grid > * {
  margin-bottom: 0;
}

/****************************************************
 ENSURE ACCESSIBLE COLOR CONTRAST FOR TESTIMONIALS
***************************************************/
.testimonial-card,
.testimonials, .testimonials-main { color: #222; background: #fff; }

/**************************************
 PREVENT ABSOLUTE FOR CONTENT CARDS
**************************************/
.card, .testimonial-card, .feature, .feature-item,
.section, section, .content-wrapper {
  position: relative;
}

/***************************************
 EXTRAS: SHADOWS & MICRO-INTERACTIONS
****************************************/
.feature:hover
, .card:hover
, .testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(206, 176, 91, 0.16), 0 1.5px 10px 0 rgba(46,58,89,0.07) !important;
  border-color: var(--luxury-gold);
}
.main-nav a[aria-current], .mobile-nav a[aria-current] {
  background: var(--luxury-gold);
  color: #23243D;
  font-weight: 700;
}

/***********************
* END CSS
**********************/
