/* 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, 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;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  line-height: 1.6;
  background: #F4F6F9;
  color: #23211E;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: disc inside none;
  margin-left: 24px;
}
a {
  color: #134A8E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B69844;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #101217;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #205175;
}

p, li, blockquote {
  font-size: 1rem;
  color: #23211E;
}

blockquote {
  border-left: 3px solid #B69844;
  padding-left: 18px;
  font-size: 1.1rem;
  font-style: italic;
  color: #19180E;
  background: #F8F8F7;
  margin-bottom: 12px;
}
blockquote span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-style: normal;
  color: #7C6007;
  margin-top: 8px;
  display: block;
}

/* BRAND & LUXURY_PALETTE */
:root {
  --color-primary: #134A8E;
  --color-secondary: #21A179;
  --color-accent: #F9FBFF;
  --color-dark: #101217;
  --color-muted: #F4F6F9;
  --color-gold: #B69844;
  --color-premium-dark: #23211E;
  --color-premium-bg: #F8F8F7;
}

/* CONTAINERS & SECTION SPACING */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 rgba(18,17,15,.03);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

/* HEADER & NAVBAR */
header {
  background: #fff;
  border-bottom: 1.5px solid #E6E2D9;
  box-shadow: 0 4px 22px 0 rgba(21, 18, 7, 0.04);
  z-index: 101;
  position: relative;
  min-height: 68px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 18px 0;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: #19325B;
  font-weight: 500;
  transition: color 0.2s;
  padding: 3px 0;
  border-bottom: 2px solid transparent;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}

header .btn-primary {
  margin-left: 30px;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  color: var(--color-gold);
  border: none;
  cursor: pointer;
  margin-left: 12px;
  z-index: 110;
  transition: color 0.18s;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 8px;
}
.mobile-menu-toggle:focus{
  outline: 2px solid var(--color-gold);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #181B1Eeb;
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.74,.2,.46,1.03);
  display: flex; /* use flex for layout */
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  color: #fff;
  border: none;
  margin: 24px 24px 0 0;
  cursor: pointer;
  border-radius: 8px;
  padding: 2px 12px;
  transition: background 0.2s,color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-gold);
  background: #20252c;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin-top: 60px;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.33rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
  padding: 10px 4px;
  border-radius: 4px;
  font-weight: 600;
  transition: color 0.22s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
  }
  .logo {
    min-width: 120px;
  }
  .main-nav {
    gap: 12px;
  }
  header .btn-primary {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO SECTIONS */
.hero {
  background: var(--color-premium-bg);
  padding: 60px 0 40px 0;
  margin-bottom: 24px;
  box-shadow: 0 12px 32px -8px rgba(20,30,38,0.08);
  border-radius: 0 0 36px 36px;
  position: relative;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding-top: 12px;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.18rem;
  color: #35322e;
  margin-bottom: 22px;
}

@media (max-width: 600px) {
  .hero {
    padding: 38px 0 24px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}

/* BUTTONS */
.btn-primary {
  background: var(--color-gold);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  padding: 12px 35px;
  border-radius: 28px;
  border: none;
  box-shadow: 0 3px 15px 0 rgba(183,152,68,0.09);
  letter-spacing: 0.03em;
  cursor: pointer;
  text-shadow: 0 1px 4px rgba(24,17,7,0.08);
  margin-top: 18px;
  transition: background 0.19s, color 0.19s, transform 0.17s, box-shadow 0.17s;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #A88B34;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 8px 32px -11px #B69844;
  outline: 2px solid var(--color-gold);
}

/* FLEXBOX-BASED LAYOUT COMPONENTS */
.feature-grid, .start-dates-grid, .faq-list, .benefit-callouts ul, .achievement-metrics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-grid > div, .faq-list > div, .start-dates-grid > div, .benefit-callouts ul > li, .achievement-metrics ul > li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 15px -4px rgba(28,24,16,0.04);
  padding: 26px 22px;
  flex: 1 1 240px;
  min-width: 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  border: 1.5px solid #E6E2D9;
  position: relative;
}
.feature-grid > div img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}

.start-dates-grid {
  gap: 40px;
  margin-top: 16px;
}
.start-dates-grid > div {
  background: #F7F5F2;
  border: 1.5px solid #E6E2D9;
  border-radius: 16px;
}

.faq-list > div h3 {
  color: var(--color-primary);
}
.benefit-callouts ul > li, .achievement-metrics ul > li {
  background: #FAFAF9;
  border-left: 4px solid var(--color-gold);
  color: #222;
}

@media (max-width: 900px) {
  .feature-grid, .start-dates-grid, .faq-list, .benefit-callouts ul, .achievement-metrics ul {
    flex-direction: column;
    gap: 20px;
  }
}

/* CARD STYLES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  position: relative;
  border-radius: 16px;
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 16px -4px rgba(32,24,10,0.04);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid #E6E2D9;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 24px;
  box-shadow: 0 3px 16px 0 rgba(183,152,68,0.04);
  border: 1.5px solid #E8E4D9;
  min-width: 220px;
  max-width: 560px;
  position: relative;
}
.testimonial-card blockquote {
  background: transparent;
  color: #181A1F;
  border-left: 3px solid var(--color-gold);
  margin: 0;
  font-size: 1.03rem;
}
.testimonial-card blockquote span {
  color: var(--color-primary);
  font-size: 0.98rem;
  margin-top: 2px;
}

/* Ensure contrast */
.testimonial-card {
  color: #181A1F;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
  }
}

/*****************
 * GRID-LIKE FLEX LAYOUTS
 ****************/
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/************************
 * ABOUT US / TEAM / CONTACT
 ************************/
.about-section ul {
  margin-bottom: 20px;
}
.contact-info,
.phone-email-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.address-block, .phone-email-block > div, .hours-block {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.contact-info img {
  width: 22px;
  height: 22px;
  margin-right: 4px;
}

/************************
 * FOOTER
 ************************/
footer {
  background: #101217;
  color: #eee3c1;
  padding: 40px 0 16px 0;
  margin-top: 60px;
  border-top: 2px solid #E6E2D9;
}
footer p {
  color: white;
}
footer .container {
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #ddc476;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 2px 0;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.contact-details {
  font-size: 0.97rem;
  color: #F9EBC6;
}
.contact-details a {
  color: #B69844;
  text-decoration: underline;
}
small {
  color: #b7a369;
  font-size: 0.9rem;
  display: block;
  margin-top: 18px;
}

@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  footer .container {
    padding: 0 10px;
  }
}

/************************
 * COOKIE CONSENT BANNER
 ************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #181815e9;
  color: #fff;
  z-index: 140;
  box-shadow: 0 -6px 32px -8px #0d0b06;
  padding: 22px 18px 22px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 34px;
  font-size: 1rem;
  border-top: 2px solid #B69844;
  animation: fadeIn 0.8s cubic-bezier(.23,.8,.56,1) 0s;
}
.cookie-banner__text {
  flex: 3 1 260px;
  color: #F6EBC8;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  flex: 1 1 130px;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-btn {
  border: none;
  border-radius: 24px;
  padding: 10px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.17s, color 0.16s;
}
.cookie-btn.accept {
  background: #21A179;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #18805c;
  outline: none;
}
.cookie-btn.reject {
  background: #fff;
  color: #B69844;
  border: 1.5px solid #B69844;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fcf8ee;
  color: #a88b34;
  outline: none;
}
.cookie-btn.settings {
  background: transparent;
  color: #B69844;
  border: 1.5px dashed #B69844;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #181815;
  color: #fff9c6;
  outline: none;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 20px 12px 20px 12px;
    font-size: 0.98rem;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    width: 100%;
  }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,24,21,0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s cubic-bezier(.71,.27,.31,.91);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 38px 0 #231D13cc;
  padding: 38px 30px 28px 30px;
  color: #222;
  width: 95vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  position: relative;
  animation: fadeInDrop .5s cubic-bezier(.19,.65,.64,1);
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: #B69844;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 22px;
  font-size: 1.8rem;
  background: none;
  color: #101217;
  border: none;
  cursor: pointer;
  padding: 0 8px;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #B69844;
  background: #f7f3ea;
  outline: none;
}
.cookie-modal-category {
  margin-bottom: 18px;
}
.cookie-modal-category label {
  font-weight: 600;
  color: #23211E;
  margin-left: 8px;
  cursor: pointer;
  user-select: none;
}
.cookie-modal-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #B69844;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}

@media (max-width: 510px) {
  .cookie-modal {
    padding: 18px 8px 18px 8px;
    width: 99vw;
    max-width: 99vw;
  }
}

@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}
@keyframes fadeInDrop {
  from {opacity: 0; transform: translateY(-24px);}
  to {opacity: 1; transform:translateY(0);}
}

/****************************
 * LUXURY REFINED DETAILS
 ***************************/
.section,
.card,
.feature-grid > div,
.start-dates-grid > div,
.testimonial-card {
  border: 1.5px solid #ecdfbc;
  box-shadow: 0 4px 28px -7px #B6984450, 0 1.5px 10px -4px #1A18144a;
  transition: box-shadow 0.25s, transform 0.16s;
}
.feature-grid > div:hover, .card:hover, .testimonial-card:hover {
  box-shadow: 0 16px 44px -14px #B6984450, 0 4px 22px -8px #1A18144d;
  transform: translateY(-2px) scale(1.0165);
  border-color: #bfa44d;
}

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-thumb {
  background: #b69844cc;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background: #f6f4ec;
}

/****************************
 * SPACING & RESPONSIVENESS
 ***************************/
@media (max-width: 540px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 1.58rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .section {
    padding: 22px 6vw;
    margin-bottom: 30px;
  }
}

/****************************
 * TYPOGRAPHY
 ***************************/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

body,
input,
select,
textarea,
button {
  font-family: 'Open Sans', Arial, sans-serif;
}
h1, h2, h3, .logo, .btn-primary, .main-nav, .footer-nav, .mobile-nav, .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
}

/***************************
 * UTILITIES
 ***************************/
.flex {
  display: flex !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}
.align-center {
  align-items: center !important;
}
.justify-between {
  justify-content: space-between !important;
}
.gap-24 {
  gap: 24px !important;
}

/***** MISCELLANEOUS & PRINT *****/
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  body { background: #fff; color: #000 !important; }
}

/* END OF STYLE.CSS */
