/* =========================================================
   BRIGHT RAFT LUXURY PREMIUM CSS STYLESHEET
   Consistent with brand, luxury_premium aesthetic, flexbox only
   ========================================================= */

/* ---------- RESET & NORMALIZATION ---------- */
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,
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F3F6F7;
}

body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F3F6F7;
  color: #232F34;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #BFA135;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.22,.68,.74,.09);
}
a:hover, a:focus {
  color: #fff;
  background: #BFA135;
  border-radius: 8px;
  transition: background 0.2s cubic-bezier(.68,.04,.37,.94);
}

/* ---------- TYPOGRAPHY (Luxury Premium) ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232F34;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  text-shadow: 0px 2px 8px rgba(191,161,53,0.05);
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 16px;
  font-size: 1.11rem;
  color: #3C484C;
}
strong {
  color: #232F34;
  font-weight: 700;
}
em, i {
  font-style: italic;
  color: #4A90A4;
}
blockquote {
  margin: 0 0 8px 0;
  font-style: italic;
  color: #232F34;
  font-size: 1.18rem;
  padding: 0;
}

/* Luxury Premium Gold Accent */
:root {
  --primary: #232F34;
  --secondary: #4A90A4;
  --accent: #F3F6F7;
  --gold: #BFA135;
  --gold-dark: #967727;
  --white: #fff;
  --shadow: 0 4px 16px rgba(191,161,53,0.05), 0 1.5px 8px rgba(44,44,44,0.04);
  --radius: 16px;
  --border: 1px solid #E1C97B;
}

/* ----------------- HEADER NAVIGATION ----------------- */
header {
  position: relative;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(35,47,52,0.06);
  z-index: 20;
  border-bottom: 1.5px solid #E7D7A7;
}
header nav {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: flex-start;
  padding: 0 24px;
  height: 80px;
}
header nav img {
  height: 40px;
  margin-right: 30px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 9px 14px;
  border-radius: 6px;
  color: var(--primary);
  font-weight: 600;
  transition: background 0.16s, color 0.16s;
}
header nav a.cta.primary {
  background: var(--gold);
  color: var(--white);
  border-radius: 24px;
  margin-left: 12px;
  padding: 11px 32px;
  box-shadow: 0 2px 8px rgba(191,161,53,0.10);
  letter-spacing: 0.05em;
  border: none;
  position: relative;
  transition: transform 0.19s cubic-bezier(.28,.73,.41,.85), box-shadow 0.16s;
}
header nav a.cta.primary:hover, header nav a.cta.primary:focus {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px rgba(191,161,53,0.18);
}

/* HAMBURGER & MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  background: var(--gold);
  color: #fff;
  font-size: 2rem;
  padding: 7px 16px 7px 10px;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  z-index: 150;
  box-shadow: 0 2px 7px rgba(191,161,53,0.08);
  transition: background 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--gold-dark);
  outline: 2px solid var(--primary);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,47,52,0.85);
  z-index: 2000;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transition: none;
}
.mobile-menu.active {
  display: flex;
  animation: mobileMenuSlideIn 0.37s cubic-bezier(.61,.43,.67,1) forwards;
}
@keyframes mobileMenuSlideIn {
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
.mobile-menu-close {
  background: var(--gold);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  margin-top: 30px;
  margin-right: 26px;
  padding: 3px 16px 3px 10px;
  border-radius: 14px;
  cursor: pointer;
  z-index: 2100;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--gold-dark);
}
.mobile-nav {
  height: 100vh;
  width: 310px;
  background: #fff;
  padding: 50px 34px 34px 34px;
  box-shadow: -7px 0 22px 0 rgba(191,161,53,0.19);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 3px;
  border-radius: 8px;
  padding: 11px 12px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gold);
  color: #fff;
}

@media (max-width: 1060px) {
  header nav {
    gap: 16px;
    padding: 0 10px 0 10px;
    height: 72px;
  }
  header nav img {
    margin-right: 18px;
    height: 32px;
  }
}
@media (max-width: 900px) {
  header nav a {
    padding: 9px 8px;
    font-size: 1rem;
  }
}
@media (max-width: 840px) {
  header nav {
    gap: 9px;
    height: 58px;
    padding: 0 6px;
  }
  header nav a {
    font-size: 0.99rem;
    padding: 7px 6px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ----------------- CONTAINERS & SECTIONS ----------------- */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: none;
  margin: 0 0 0 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

@media (max-width: 860px) {
  .container {
    padding: 0 7px;
  }
  .section {
    padding: 34px 7px;
    margin-bottom: 34px;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 22px 1px;
  }
}

/* ----------------- HERO STYLES ----------------- */
.hero {
  background: linear-gradient(118deg, #fff 80%, #F3F6F7 100%);
  padding: 54px 0 38px 0;
  border-bottom: 2.5px solid #ecd871;
  box-shadow: 0 7px 28px 0 rgba(191,161,53,0.11);
}
.hero .container {
  align-items: flex-start;
  min-height: 350px;
}
.hero .content-wrapper {
  max-width: 600px;
  padding-left: 15px;
  gap: 22px;
}
.hero h1 {
  color: #232F34;
  font-size: 2.75rem;
  text-shadow: 0 2px 13px rgba(191,161,53,0.13);
}
.hero p {
  color: #3C484C;
  font-size: 1.2rem;
}
@media (max-width: 620px) {
  .hero h1 { font-size: 2.1rem;}
  .hero .content-wrapper { padding: 0; }
}

/* ----------------- FLEXBOX LAYOUT CLASSES ----------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: var(--border);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.19s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 22px 0 rgba(191,161,53,0.18);
  transform: translateY(-3px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  gap: 18px;
}
.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: #fffbe7;
  border-radius: 16px;
  border: 1.5px solid #E1C97B;
  box-shadow: 0 2px 16px 0 rgba(191,161,53,0.12);
  margin-bottom: 22px;
  flex: 1 1 330px;
  min-width: 270px;
  max-width: 600px;
  color: #232F34;
  font-size: 1.08rem;
}
.testimonial-card blockquote {
  color: #232F34;
  font-style: italic;
  font-size: 1.13rem;
  margin-bottom: 5px;
}
.testimonial-card footer {
  color: #967727;
  font-size: 1rem;
  margin-left: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Used in About, Services, and Product details */
.text-section {
  margin: 8px 0 22px 0;
  color: #232F34;
}

/* Responsive Flex directions */
@media (max-width: 900px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 27px;
  }
  .card-content {
    padding: 19px 12px;
  }
}

/* ----------------- LISTS WITH ICONS ----------------- */
ul li img {
  vertical-align: middle;
  margin-right: 7px;
  width: 22px;
}
ul li {
  position: relative;
  padding-left: 0;
  margin-bottom: 14px;
  padding-top: 3px;
  color: #232F34;
  font-size: 1.07rem;
}
ul li strong {
  color: var(--gold);
}
ul.feature-list {
  padding-left: 0;
}

/* ----------------- BUTTONS & CTAs ----------------- */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 10px 32px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 7px rgba(191,161,53,0.11);
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
  margin-top: 13px;
  margin-bottom: 7px;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s, transform 0.18s;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--gold-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(191,161,53,0.19);
  transform: scale(1.04);
}
.cta.secondary {
  background: #fff;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--gold);
  color: #fff;
}

/* --------------- TABLE STYLES --------------- */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 2px 12px rgba(191,161,53,0.055);
  border-radius: 15px;
  overflow: hidden;
  margin: 20px 0 24px 0;
}
thead {
  background: #f8ecd3;
}
th, td {
  text-align: left;
  padding: 16px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232F34;
}
th {
  font-size: 1.05rem;
  font-weight: 700;
  color: #967727;
  border-bottom: 2px solid #ecd871;
}
td {
  font-size: 1rem;
  border-bottom: 1px solid #f1e5bc;
}
tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
    width: 100%;
  }
  th, td {
    padding: 13px 10px;
    font-size: 0.97rem;
  }
}

/* --------------- FOOTER --------------- */
footer {
  margin-top: 60px;
  background: linear-gradient(0deg, #fff 60%, #F3F6F7 100%);
  border-top: 2.5px solid #ecd871;
  box-shadow: 0 -7px 20px 0 rgba(191,161,53,0.056);
  padding: 34px 0 13px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 11px 0 11px 0;
  flex-wrap: wrap;
  justify-content: center;
}
footer nav a {
  color: #232F34;
  padding: 6px 7px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 6px;
  background: none;
}
footer nav a:hover, footer nav a:focus {
  background: var(--gold);
  color: #fff;
}
footer img {
  height: 36px;
  margin: 0 0 13px 0;
}
.footer-contact {
  color: #614d11;
  text-align: center;
  margin-bottom: 6px;
}
.footer-contact p {
  margin-bottom: 3px;
  font-size: 0.99rem;
}
.copyright {
  color: #a79a6f;
  font-size: 0.9rem;
  margin-top: 7px;
  text-align: center;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  footer {
    padding: 23px 0 7px 0;
  }
  footer .container {
    gap: 11px;
  }
}

/* --------- COOKIE CONSENT BANNER --------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 4700;
  background: #232F34;
  color: #fff;
  box-shadow: 0 -6px 20px 0 rgba(191,161,53,0.13);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  padding: 19px 24px;
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: cookieBannerSlideIn 0.33s cubic-bezier(.39,.61,.69,1);
}
@keyframes cookieBannerSlideIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn {
  margin-left: 18px;
  border-radius: 24px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--primary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  outline: none;
}
.cookie-banner .cookie-btn.reject {
  background: #fffbe7;
  color: #BFA135;
  border: 1.5px solid #E1C97B;
}
.cookie-banner .cookie-btn.settings {
  background: var(--gold-dark);
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #fff;
  color: var(--gold-dark);
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #fffbe7;
  color: var(--gold-dark);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,47,52, 0.87);
  z-index: 4900;
  display: none;
  justify-content: center;
  align-items: center;
  animation: cookieModalFadeIn 0.23s cubic-bezier(.7,.25,.85,1);
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 23px;
  max-width: 440px;
  padding: 37px 26px 22px 26px;
  box-shadow: 0 2px 28px 0 rgba(191,161,53,0.19);
  color: #232F34;
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--gold-dark);
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.07rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
}
.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 20px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  border: none;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  width: 31px; height: 31px;
  font-size: 1.09rem;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  background: var(--gold-dark);
}
.cookie-switch {
  width: 42px;
  height: 24px;
  border-radius: 24px;
  background: #e6e6e6;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 2px solid #ddd;
  transition: background 0.15s;
}
.cookie-switch[data-checked='true'] {
  background: var(--gold);
  border-color: #E1C97B;
}
.cookie-switch-slider {
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1.3px;
  left: 3px;
  transition: left 0.21s cubic-bezier(.52,.13,.51,1);
  box-shadow: 0 2px 5px rgba(191,161,53,0.1);
}
.cookie-switch[data-checked='true'] .cookie-switch-slider {
  left: 19px;
  background: #fffbe7;
}

/* --------------- RESPONSIVE: MOBILE FIRST --------------- */
@media (max-width: 768px) {
  .hero {
    padding: 28px 0 24px 0;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 4px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 10px;
    min-width: 0;
    width: 100%;
    margin-bottom: 23px;
    max-width: 100%;
    font-size: 0.99rem;
  }
  .card-content {
    padding: 13px 10px;
    gap: 11px;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 1.28rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  .footer-contact p, .copyright {
    font-size: 0.92rem;
  }
}

/* --------------- MISC & FINE DETAILS --------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #e6e6e6;
}
::-webkit-scrollbar-thumb {
  background: #BFA135;
  border-radius: 8px;
}
address {
  font-style: normal;
  color: #4A90A4;
}
hr { border-top: 1.1px solid #E1C97B; margin: 28px 0; }

/* --- Misc. emphasis and inline elements --- */
span, mark {
  background: #FFF7DF;
  color: #BFA135;
  padding: 1px 4px;
  border-radius: 4px;
}

/* --- Animations & Micro-interactions --- */
.card, .cta, .testimonial-card, .cookie-banner, .cookie-btn, .mobile-menu, .mobile-nav a {
  transition: box-shadow 0.16s, transform 0.16s, background 0.2s, color 0.2s;
}

/* --- Focus outline for a11y --- */
:focus {
  outline: 2px solid #BFA135;
  outline-offset: 2px;
}

/* --- Hide visually but keep accessible --- */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- Utility class for spacing --- */
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-24 { margin-top: 24px !important; }
.gap-16 { gap: 16px !important; }

/* --------------- FORMS (generic for possible use) --------------- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 7px;
  border: 1.5px solid #E1C97B;
  padding: 11px 13px;
  background: #fff;
  color: #232F34;
  font-size: 1rem;
  margin-bottom: 14px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border 0.12s, box-shadow 0.12s;
}
input:focus, textarea:focus, select:focus {
  border-color: #BFA135;
  box-shadow: 0 0 0 2px #E1C97B33;
}
button, input[type="submit"], input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  cursor: pointer;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 10px 22px;
  font-size: 1rem;
  transition: background 0.19s, color 0.16s;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: var(--gold-dark);
  color: #fff;
}

/* --------------- FAQ styles --------------- */
.faq-list h2 {
  font-size: 1.17rem;
  color: #BFA135;
}
.faq-list p {
  margin-bottom: 17px;
}

/* --------------- CONTACT DETAILS --------------- */
.contact-details,
.text-section .contact-details {
  margin-top: 18px;
  margin-bottom: 13px;
  background: #f8ecd388;
  border-radius: 7px;
  padding: 14px 14px;
}
.contact-details p {
  font-size: 1.02rem;
  color: #232F34;
  margin-bottom: 7px;
}

/* --------------- THANK YOU PAGE --------------- */
.text-section a.cta.primary {
  margin-top: 19px;
}

/* --------------- ADDITIONAL LUXURY EFFECTS --------------- */
.card, .testimonial-card, .cookie-modal {
  border: var(--border);
}
.card {
  background: #fff;
}
.section:not(.hero):not(.cta) {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2.5px 19px 0 rgba(44,44,44,0.062);
  border: 1.5px solid #EEE7C1;
}
.section.cta {
  background: linear-gradient(87deg, #fff 89%, #F3F6F7 100%);
  border: 1.5px solid #E1C97B;
  border-radius: 18px;
}

/* ----------- Gold Shine Animation for CTAs/Accents ---------- */
.cta.primary::after {
  content: '';
  display: block;
  position: absolute;
  left: -28px;
  top: -12px;
  width: 48px;
  height: 120%;
  background: rgba(255,255,255,0.13);
  transform: skewX(-28deg);
  transition: left 0.5s cubic-bezier(.42,.0,.58,1);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.cta.primary:hover::after, .cta.primary:focus::after {
  left: 85%;
  opacity: 1;
  transition: left 0.38s cubic-bezier(.77,.17,.71,1), opacity 0.15s;
}

/* --------------- ENSURE SPACING BETWEEN ALL FLEX ITEMS --------------- */
.card-container, .content-grid, .text-image-section, .card-content, .footer .container, .mobile-nav, .cookie-modal-footer, .section .content-wrapper {
  gap: 20px;
}

/* --------------- UTILITY: NO FLEX OVERLAP, NO GRID --------------- */
/* (→ Already strictly using flex above. No grid, no column props present.) */

/* END OF LUXURY PREMIUM STYLESHEET */
