/* ======================================================== */
/* 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;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #F5F4F3;
  color: #161616;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1B4977;
  line-height: 1.18;
  margin-bottom: 0.7em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p, ul, ol, li, blockquote {
  color: #242424;
}

a {
  text-decoration: none;
  color: #1B4977;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B19751;
}

strong {
  font-weight: 600;
  color: #1B4977;
}

blockquote {
  font-style: italic;
  color: #161616;
  background: #FFF;
  border-left: 3px solid #B19751;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 6px;
}

/* ======================================================== */
/* Typography Scale                                         */
/* ======================================================== */

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* ======================================================== */
/* LUXURY PREMIUM COLOR PALETTE                             */
/* ======================================================== */
:root {
  --brand-primary: #1B4977;
  --brand-secondary: #23A894;
  --brand-accent: #F8F5F0;
  --lux-gold: #B19751;
  --lux-gold-light: #EADCA6;
  --lux-dark: #161616;
  --lux-bg: #F5F4F3;
  --lux-card-bg: #fff;
  --lux-card-shadow: 0 6px 28px rgba(27, 73, 119, 0.10);
  --lux-border: #EBE6DE;
  --lux-btn-hover: #1B4977;
}

/* ======================================================== */
/* Layout Wrappers & Container                              */
/* ======================================================== */

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  position: relative;
  background: var(--lux-card-bg);
  border-radius: 12px;
  box-shadow: var(--lux-card-shadow);
  margin-bottom: 20px;
  min-width: 220px;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 1.5px solid var(--lux-border);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 12px 40px rgba(27, 73, 119, 0.13);
  border-color: var(--lux-gold);
  z-index: 2;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #FFF;
  margin-bottom: 24px;
  border-radius: 10px;
  border: 1.5px solid var(--lux-border);
  box-shadow: 0 2px 12px rgba(27, 73, 119, 0.05);
  transition: box-shadow 0.2s;
  min-width: 280px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(27, 73, 119, 0.13);
  border-color: var(--lux-gold);
}
.testimonial-meta span {
  font-size: 0.98rem;
  color: var(--lux-gold);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--lux-card-bg);
  border-radius: 12px;
  box-shadow: var(--lux-card-shadow);
  border: 1.5px solid var(--lux-border);
  padding: 24px 20px;
  min-width: 210px;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.feature-item:hover {
  border-color: var(--lux-gold);
  box-shadow: 0 8px 32px rgba(177, 151, 81, 0.13);
}
.feature-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(0) brightness(1.15);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/* Vertical gap for all content cards & sections */
.section > *, .section .content-wrapper > *, .feature-grid > *, .card-container > *, .testimonial-card, .feature-item, .course-item, .story-item {
  margin-bottom: 20px;
}
.section > *:last-child, .section .content-wrapper > *:last-child, .feature-grid > *:last-child, .card-container > *:last-child, .testimonial-card:last-child, .feature-item:last-child, .course-item:last-child, .story-item:last-child {
  margin-bottom: 0;
}

/* ======================================================== */
/* Header & Navigation                                      */
/* ======================================================== */

header {
  background: #fff;
  box-shadow: 0 3px 10px rgba(27, 73, 119, 0.06);
  position: relative;
  z-index: 30;
  border-bottom: 2px solid var(--lux-border);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.03rem;
  letter-spacing: 0.02em;
  color: var(--lux-dark);
  padding: 6px 0;
  transition: color 0.18s;
  position: relative;
}
header nav a:after {
  display: block;
  content: '';
  border-bottom: 2px solid var(--lux-gold);
  transform: scaleX(0);
  transition: transform 0.18s;
  margin-top: 4px;
}
header nav a:hover:after,
header nav a:focus:after {
  transform: scaleX(1);
}
header nav a:hover,
header nav a:focus {
  color: var(--lux-gold);
}

header img {
  width: 132px;
  height: auto;
}

.cta-primary {
  background: var(--lux-gold);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 11px 28px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 10px rgba(177, 151, 81, 0.09);
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.12s;
  outline: none;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--lux-dark);
  color: var(--lux-gold);
  box-shadow: 0 5px 18px rgba(177, 151, 81, 0.15);
  transform: scale(1.05);
}

/* Hamburger/Menu Mobile */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: var(--lux-gold);
  font-size: 2rem;
  cursor: pointer;
  margin-left: 20px;
  display: none;
  z-index: 52;
  line-height: 1;
  padding: 4px 9px;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover {
  color: var(--lux-dark);
}

/* Hide mobile menu on desktop */
@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
}

@media (max-width: 1023px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ======================================================== */
/* Mobile Slide Menu Overlay                                */
/* ======================================================== */

.mobile-menu {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,73,119,0.94);
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(.6,-0.01,.55,1.04);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--lux-gold);
  font-size: 2.5rem;
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 120;
  cursor: pointer;
  padding: 7px 17px;
  border-radius: 50%;
  transition: color 0.2s, background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(177,151,81,0.15);
  color: #fff;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 80px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #fff;
  padding: 7px 0;
  letter-spacing: 0.015em;
  transition: color 0.16s, background 0.16s;
  border-radius: 6px;
  width: 92vw;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--lux-gold);
  color: var(--brand-primary);
}

/* Mobile nav touch area */
.mobile-nav a {
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ======================================================== */
/* HERO SECTION                                            */
/* ======================================================== */

.hero {
  background: var(--brand-primary);
  padding: 60px 0 54px 0;
  color: #fff;
  min-height: 340px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 560px;
  gap: 22px;
}
.hero h1 {
  color: #fff;
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 0.6em;
}
.hero p {
  color: #F8F5F0;
  font-size: 1.18rem;
  line-height: 1.55;
  margin-bottom: 0.7em;
}
.hero .cta-primary {
  background: var(--lux-gold);
  color: #fff;
  border-radius: 32px;
  margin-top: 10px;
}
.hero .cta-primary:hover {
  background: #fff;
  color: var(--brand-primary);
}

/* ======================================================== */
/* Section and Card Responsive Flex Rules                   */
/* ======================================================== */

@media (max-width: 980px) {
  .container {
    max-width: 96vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature-grid, .card-container, .content-grid {
    gap: 12px;
  }
  .section {
    padding: 32px 5px;
    margin-bottom: 36px;
  }
}

@media (max-width: 768px) {
  .feature-grid,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .container {
    padding: 0 6px;
  }
  .hero {
    padding: 38px 0 30px 0;
  }
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 0.45em;
  }
}

/* Minimum space between elements on mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 2px;
  }
  .section {
    padding: 20px 2px;
    margin-bottom: 27px;
  }
}

/* ======================================================== */
/* Cards, Lists, Grids                                      */
/* ======================================================== */
.course-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.course-item {
  background: var(--lux-card-bg);
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(27, 73, 119, 0.09);
  padding: 22px 20px;
  border: 1.25px solid var(--lux-border);
  min-width: 230px;
  flex: 1 1 295px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.16s, transform 0.18s;
}
.course-item:hover {
  border-color: var(--lux-gold);
  box-shadow: 0 12px 40px rgba(27, 73, 119, 0.12);
  transform: translateY(-6px) scale(1.025);
  z-index: 1;
}

.success-story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.story-item {
  background: var(--lux-card-bg);
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(27, 73, 119, 0.09);
  padding: 18px 18px;
  border: 1.2px solid var(--lux-border);
  flex: 1 1 265px;
  min-width: 230px;
  transition: border-color 0.16s, box-shadow 0.16s;
}
.story-item:hover {
  border-color: var(--lux-gold);
  box-shadow: 0 6px 28px rgba(27, 73, 119, 0.11);
}

@media (max-width: 960px) {
  .course-list-grid, .success-story-grid {
    flex-direction: column;
    gap: 18px;
  }
  .course-item, .story-item {
    min-width: unset;
    width: 100%;
  }
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: var(--lux-card-bg);
  border-radius: 6px;
  padding: 8px 16px;
  margin-bottom: 30px;
  font-size: 1.07rem;
}
.filter-bar a {
  font-weight: 500;
  color: var(--brand-primary);
  padding: 1px 8px;
  border-radius: 10px;
  transition: color 0.13s, background 0.12s;
}
.filter-bar a:hover, .filter-bar a.active {
  background: var(--lux-gold-light);
  color: var(--lux-dark);
}

/* ======================================================== */
/* About, Contact, Policy, Schedule Sections                */
/* ======================================================== */

.award-icons {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  font-size: 1.1rem;
}
.experience-list {
  margin: 0 0 20px 0;
  padding-left: 22px;
}

.class-timings-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  background: var(--lux-card-bg);
}
.class-timings-table th, .class-timings-table td {
  border: 1.5px solid var(--lux-border);
  padding: 10px 8px;
  text-align: left;
  font-size: 1rem;
}
.class-timings-table th {
  background: var(--lux-gold-light);
  color: var(--lux-dark);
  font-weight: 700;
}
.class-timings-table tr:nth-child(even) td {
  background: #faf7f3;
}

.map-location h3 {
  margin-bottom: 0.55em;
}

.contact-details p,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.015rem;
}
.contact-details img, .footer-contact img {
  width: 18px;
  height: 18px;
  filter: grayscale(0) brightness(1.12);
}

/* ======================================================== */
/* Call to Action Section                                   */
/* ======================================================== */
.cta {
  background: var(--brand-primary);
  color: #fff;
  border-radius: 14px;
  margin-bottom: 42px;
  padding-top: 46px;
  padding-bottom: 46px;
  box-shadow: 0 1px 14px rgba(27, 73, 119, 0.08);
}
.cta h2,
.cta p {
  color: #fff;
  margin-bottom: 0.6em;
}
.cta .cta-primary {
  background: var(--lux-gold);
  color: #fff;
}
.cta .cta-primary:hover, .cta .cta-primary:focus {
  background: #fff;
  color: var(--lux-gold);
}

@media (max-width: 768px) {
  .cta {
    padding-top: 26px;
    padding-bottom: 26px;
  }
}

/* ======================================================== */
/* FOOTER STYLE                                            */
/* ======================================================== */
footer {
  background: #fff;
  border-top: 2.5px solid var(--lux-border);
  padding: 36px 0 18px 0;
  color: var(--lux-dark);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  flex-direction: row;
  justify-content: space-between;
}
.footer-logo img {
  width: 104px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 18px;
}
footer nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.99rem;
  color: var(--lux-gold);
  letter-spacing: 0.01em;
  transition: color 0.18s, text-decoration 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--brand-primary);
  text-decoration: underline;
}
.footer-contact {
  color: var(--brand-primary);
  font-size: 1rem;
  margin-bottom: 14px;
}
footer p:last-child {
  color: #aaa;
  font-size: 0.99rem;
  margin-top: 8px;
  flex-basis: 100%;
}

@media (max-width: 870px) {
  footer .container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .footer-logo {
    margin-bottom: 12px;
  }
}

/* ======================================================== */
/* Cookie Consent Banner & Modal                            */
/* ======================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #171A18;
  color: #fff;
  z-index: 2000;
  box-shadow: 0 -2px 12px rgba(34,34,34,0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  gap: 18px;
  font-size: 1rem;
  animation: slide-up 0.6s cubic-bezier(.78,.16,.41,1.18);
}
@keyframes slide-up {
  from { transform: translateY(100%); } to { transform: translateY(0); }
}
.cookie-banner p {
  margin-bottom: 0;
  max-width: 69vw;
  font-size: 1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cookie-btn,
.cookie-settings-btn {
  background: var(--lux-gold);
  color: #fff;
  border: none;
  padding: 9px 18px;
  font-size: 1rem;
  border-radius: 8px;
  margin-left: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 0;
  transition: background 0.18s, color 0.18s, box-shadow .16s;
  cursor: pointer;
}
.cookie-btn:hover {
  background: #fff;
  color: var(--lux-gold);
  box-shadow: 0 2px 10px rgba(177, 151, 81, 0.12);
}
.cookie-settings-btn {
  background: transparent;
  color: var(--lux-gold);
  border: 1.5px solid var(--lux-gold);
}
.cookie-settings-btn:hover {
  background: var(--lux-gold);
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    text-align: left;
    padding: 11px 9px 18px 9px;
  }
  .cookie-banner p { max-width: 100vw; font-size: 0.98rem; }
  .cookie-banner .cookie-btns { gap: 10px; }
}

/* ======= Cookie Modal =================================== */
.cookie-modal {
  position: fixed;
  z-index: 2100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,34,44,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.3s;
}
.cookie-modal.hidden {
  display: none;
  opacity: 0;
}
.cookie-modal-content {
  background: #fff;
  padding: 38px 28px 30px 28px;
  border-radius: 15px;
  box-shadow: 0 6px 40px rgba(27, 73, 119, 0.13);
  min-width: 320px;
  max-width: 90vw;
  color: var(--lux-dark);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin: 12px;
}
.cookie-modal-content h2 {
  color: var(--lux-gold);
  margin-bottom: 10px;
  font-size: 1.28rem;
}
.cookie-modal-content .cookie-modal-close {
  background: transparent;
  border: none;
  color: var(--lux-gold);
  font-size: 2rem;
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
  border-radius: 50%;
}
.cookie-modal-content .cookie-modal-close:hover {
  background: var(--lux-gold-light);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category-toggle {
  appearance: none;
  width: 38px;
  height: 21px;
  border-radius: 11px;
  background: #EBE6DE;
  outline: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 1.5px 6px rgba(34,34,34,0.10);
  transition: background 0.18s;
}
.cookie-category-toggle:checked {
  background: var(--lux-gold);
}
.cookie-category-toggle:before {
  content: '';
  position: absolute;
  left: 3.5px;
  top: 2.2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.21s;
  box-shadow: 0 1px 4px rgba(34,34,34,0.06);
}
.cookie-category-toggle:checked:before {
  left: 17.5px;
}
.cookie-category[aria-disabled="true"] label {
  color: #B19751;
  font-style: italic;
}
.cookie-category[aria-disabled="true"] .cookie-category-toggle {
  background: #EBE6DE;
  opacity: 0.75;
  pointer-events: none;
}
.cookie-modal-actions {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  min-width: 118px;
}

@media (max-width: 570px) {
  .cookie-modal-content {
    padding: 14px 7px 17px 7px;
    min-width: 96vw;
    border-radius: 8px;
  }
}

/* ======================================================== */
/* Utilities                                               */
/* ======================================================== */

.hide {
  display: none !important;
}
.text-center {
  text-align: center !important;
}

/* Button focus accessibility */
button:focus, .cta-primary:focus, .cookie-btn:focus {
  outline: 2px solid var(--lux-gold);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--lux-gold-light);
}

/* Icon gold overlay for all inline SVG, icon images etc */
img[src*="/icons/"] {
  filter: sepia(0.15) hue-rotate(-16deg) saturate(1.2) brightness(1.08);
}

/* Misc Elements (before-after, highlights) */
.before-after-highlight {
  background: var(--lux-gold-light);
  padding: 15px 22px;
  border-radius: 9px;
  color: var(--lux-dark);
  margin-bottom: 20px;
  font-size: 1.07rem;
  box-shadow: 0 2px 8px rgba(177,151,81,0.07);
}
.success-story-grid .story-item h3 {
  margin-bottom: 0.25em;
}

.message-confirmation {
  background: #e7ecd5;
  padding: 13px 18px;
  border-radius: 7px;
  color: #1B4977;
  font-weight: 500;
}

/* ======================================================== */
/* Luxury-style Details & Shadows                           */
/* ======================================================== */
.feature-item, .card, .testimonial-card, .story-item, .course-item {
  border-radius: 13px;
  border: 1.3px solid var(--lux-border);
  box-shadow: 0 2px 12px rgba(27,73,119,0.05);
}

/* Gold accent border on hover/focus */
.feature-item:hover, .card:hover, .testimonial-card:hover, .story-item:hover, .course-item:hover {
  border-color: var(--lux-gold);
}

/* Spacing for all major sections & elements */
main > section {
  margin-bottom: 54px;
}

@media (max-width: 550px) {
  .testimonial-card, .feature-item, .course-item, .card {
    padding: 15px 7px !important;
    min-width: unset;
  }
}

/* ======================================================== */
/* Accessibility & Color Contrast                           */
/* ======================================================== */
.testimonial-card {
  background: #fff !important;
  color: #1B4977 !important;
}
.testimonial-card blockquote {
  color: #161616 !important;
  background: #F7F8FA !important;
  border-left-color: var(--lux-gold);
}
.testimonial-meta span {
  color: var(--lux-gold) !important;
  font-size: 0.96rem;
  font-weight: 600;
}

/* ======================================================== */
/* Print Styles (simple, so nothing design-heavy leaks)      */
/* ======================================================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display:none !important; }
  body { color: #000 !important; background: #fff !important; }
}

/* ======================================================== */
/* End Luxury Premium CSS                                   */
/* ======================================================== */
