/* ===================================================
   Blissful Plateau Consulting — Luxury Premium CSS
 =================================================== */
/* --------------------
   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;
  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.5;
  background: #f5f5f5;
  color: #2d3540;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #224159;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #bd9730;
  outline: none;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  margin: 0 0 20px 25px;
  padding: 0;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 600;
}

/* ----------------------------------------------
   Luxury_Premium Brand Variables & Font Settings
------------------------------------------------*/
:root {
  --primary: #224159;
  --secondary: #67A983;
  --accent: #f5f5f5;
  --gold: #bd9730;
  --dark: #151d28;
  --white: #fff;
  --grey: #e3e6ea;
  --shadow: 0 6px 32px rgba(34,65,89, 0.09), 0 1.5px 8px rgba(189,151,48,0.16);
  --radius: 12px;
  --font-display: 'Montserrat', 'Segoe UI', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', 'Arial', Helvetica, sans-serif;
}

/* ------------------------------------
   Typography Luxury Scale & Headings
--------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--dark);
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; }  /* 40px */
h2 { font-size: 2rem; }    /* 32px */
h3 { font-size: 1.5rem; }  /* 24px */
h4 { font-size: 1.25rem; } /* 20px */
h5 { font-size: 1.125rem; }/* 18px */
h6 { font-size: 1rem; }

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

.subheadline {
  font-size: 1.25rem;
  color: var(--secondary);
  font-family: var(--font-body);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
p, .text-section p, .text-section li, cite {
  font-family: var(--font-body);
  color: var(--primary);
  line-height: 1.7;
  font-size: 1rem;
}

/* ----------------------------------------------
   CONTAINER & GENERAL LAYOUTS (flex only!)
------------------------------------------------*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 769px) {
  .content-wrapper {
    gap: 32px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.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;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(34,65,89,0.06);
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 8px rgba(189,151,48,0.08);
  border: 1px solid var(--grey);
  transition: box-shadow 0.2s, border 0.2s;
}
.feature-item img {
  height: 40px;
  margin-bottom: 6px;
}
.feature-item:hover {
  box-shadow: 0 6px 32px rgba(34,65,89,0.12);
  border: 1px solid var(--gold);
}

@media (min-width: 769px) {
  .content-wrapper {
    flex-direction: row;
    gap: 40px;
  }
  .feature-grid, .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    width: 100%;
  }
  .feature-item, .service-item {
    width: calc((100% / 2) - 30px);
    min-width: 250px;
  }
  .client-logos {
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
  }
}
@media (min-width: 992px) {
  .feature-item, .service-item {
    width: calc((100% / 4) - 30px);
  }
  .feature-grid, .service-list {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .service-list, .client-logos {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .service-item {
    width: 100%;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* ---------------------------------------------
   LUXURY HERO BANNER & CALL TO ACTION SECTIONS
---------------------------------------------- */
.hero {
  background: linear-gradient(110deg, #f5f5f5 60%, #fff 100%);
  padding: 64px 0 48px 0;
  text-align: center;
}
.hero .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: var(--font-display);
  text-shadow: 0 2px 5px #e3e6ea;
}
.hero .cta-button {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .hero {
    padding: 48px 0 28px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

.contact-cta {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(34,65,89,0.08);
}
.contact-cta h2,
.contact-cta p {
  color: var(--white);
}
.contact-cta .cta-button {
  margin-top: 8px;
}

/* ------------------------------------------
   NAVIGATION & LUXURY HEADER STYLES
------------------------------------------- */
header {
  background: var(--white);
  box-shadow: 0 2px 24px 0 rgba(34,65,89,0.05);
  border-bottom: 1.5px solid var(--gold);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
header img {
  height: 48px;
}
nav.main-nav {
  display: flex;
  gap: 24px;
  font-size: 1rem;
}
nav.main-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
nav.main-nav a.active, nav.main-nav a:hover {
  color: var(--gold);
  background: rgba(189,151,48,0.07);
}

.cta-button {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 12px rgba(189,151,48,0.06);
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.18s, color 0.2s;
  margin-left: 16px;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.cta-button.primary {
  background: var(--gold);
  color: var(--primary);
}
.cta-button.secondary {
  background: var(--primary);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #e1bc65;
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(189,151,48,0.12);
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--dark);
  cursor: pointer;
  margin-left: 16px;
}
@media (max-width: 1024px) {
  header .container {
    gap: 14px;
  }
  nav.main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ----------------------------------------------
   MOBILE NAVIGATION (Burger + Slide Menu)
------------------------------------------------ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,65,89,0.93);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.5,0.1,0.33,1);
  padding-top: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--gold);
  background: none;
  border: none;
  margin-left: 20px;
  margin-bottom: 24px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  padding-left: 40px;
  margin-top: 12px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.35rem;
  font-family: var(--font-display);
  padding: 12px 0;
  border-radius: 7px;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--gold);
  color: var(--primary);
}

@media (max-width: 900px) {
  .cta-button {
    margin-left: 0;
  }
}

/* ----------------------------------------------
   FOOTER - LUXURY STYLES
------------------------------------------------ */
footer {
  background: var(--primary);
  color: var(--white);
  font-size: 0.97rem;
  padding: 36px 0 16px 0;
  border-top: 2px solid var(--gold);
  margin-top: 60px;
  position: relative;
  z-index: 10;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
footer img {
  height: 36px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: var(--white);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact p {
  color: var(--accent);
  font-size: 1rem;
  word-break: break-word;
}
.footer-contact img {
  height: 18px;
  margin-right: 7px;
  position: relative;
  top: 2px;
  display: inline;
}
@media (min-width: 800px) {
  footer .container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }
  .footer-nav {
    gap: 32px;
  }
  .footer-contact {
    align-items: flex-end;
    text-align: right;
  }
}

/* ----------------------------
   SERVICES - SERVICES CARDS
----------------------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.service-item {
  background: var(--white);
  padding: 28px 18px;
  border-radius: var(--radius);
  box-shadow: 0 1.5px 8px rgba(189,151,48,0.05);
  border: 1px solid var(--grey);
  margin-bottom: 20px;
  flex: 1 1 220px;
  transition: border 0.18s, box-shadow 0.2s;
}
.service-item h3 {
  color: var(--gold);
  margin-bottom: 7px;
  font-size: 1.25rem;
}
.service-item:hover {
  box-shadow: 0 4px 16px rgba(189,151,48,0.13);
  border: 1.5px solid var(--secondary);
}
@media (max-width: 768px) {
  .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .service-item {
    width: 100%;
    min-width: 0;
  }
}

/* ------------------------------------------
   TESTIMONIALS & CLIENT LOGOS
------------------------------------------- */
.testimonials {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials h2 {
  color: var(--gold);
  margin-bottom: 26px;
}
.testimonial-card {
  background: #fff;
  color: var(--primary);
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(34,65,89,0.06);
  border-radius: var(--radius);
  margin-bottom: 24px;
  padding: 24px 32px 20px 24px;
  font-size: 1.09rem;
  line-height: 1.65;
  position: relative;
  transition: box-shadow 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(34,65,89,0.09), 0 2px 12px rgba(34,65,89,0.14);
}
.testimonial-card cite {
  color: var(--secondary);
  font-size: 1rem;
  font-style: italic;
  margin-top: 10px;
  display: block;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 0;
}
.client-logos img {
  height: 40px;
  opacity: 0.63;
  filter: grayscale(1) contrast(1.2);
  transition: opacity 0.15s;
}
.client-logos img:hover {
  opacity: 1;
  filter: grayscale(0) contrast(1);
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 16px 14px;
  }
  .client-logos {
    gap: 15px;
    margin-top: 12px;
  }
}

/* ------------------------------------------
   CASE STUDY / INFOBOX / PREVIEW ELEMENTS
------------------------------------------- */
.info-box {
  background: var(--accent);
  border-left: 3.5px solid var(--gold);
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 1rem;
  margin: 18px 0 15px 0;
  color: var(--primary);
  box-shadow: 0 3px 10px rgba(189,151,48,0.06);
}
.case-study-preview {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1.5px 8px rgba(34,65,89,0.05);
  border-left: 3px solid var(--secondary);
  padding: 16px 24px;
  margin: 18px 0 0 0;
}

/* ------------------------------------------
   PAGE-SPECIFIC SPACING & ACCESSIBILITY
------------------------------------------- */
main > section, .section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
@media (max-width: 768px) {
  main > section, .section {
    padding: 32px 0 32px 0;
    margin-bottom: 40px;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section h3 {
  color: var(--gold);
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.map-embed {
  background: var(--grey);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0.5px 2px rgba(34,65,89,0.05);
  margin-top: 18px;
}
.map-embed img {
  width: 100%;
  height: auto;
}

/* ---------------------------------------------
   LEGAL, COOKIE & GDPR SECTIONS
---------------------------------------------- */
.footer-legal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px rgba(34,65,89,0.07);
  margin-bottom: 60px;
  padding: 44px 20px;
}
.footer-legal h1 {
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-legal h2 {
  color: var(--primary);
  margin-bottom: 16px;
}
.footer-legal h3 {
  color: var(--secondary);
  margin-bottom: 9px;
}
.text-section ul {
  margin-bottom: 18px;
}

/* ------------------------------------------
   LUXURY DETAILS, BORDER, SHADOW, EFFECTS
------------------------------------------- */
/* Gold accent details for premium look */
.section, .features, .about-preview, .testimonials, .contact-cta, .feature-item, .service-item, .info-box, .case-study-preview {
  border-radius: var(--radius);
  box-shadow: 0 1.5px 8px rgba(189,151,48,0.03);
}
hr {
  border: 0;
  border-top: 1.5px solid var(--gold);
  margin: 36px 0;
}

/* ------------------------------------------
   BUTTONS & FORM ELEMENTS
------------------------------------------- */
button, .cta-button {
  font-family: var(--font-display);
  font-size: 1rem;
  outline: none;
}
button:focus, .cta-button:focus {
  box-shadow: 0 0 2px 3px rgba(189,151,48,0.24);
}
input, select, textarea {
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 14px;
  background: var(--white);
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: none;
}

/* ----------------------------------------------
   RESPONSIVE: MOBILE-FIRST then FLEX LAYOUTS
------------------------------------------------ */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  nav.main-nav, .footer-nav, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid, .service-list {
    gap: 18px;
  }
}

/* ------------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
------------------------------------------- */
.cta-button, .feature-item, .service-item, .testimonial-card {
  transition: box-shadow 0.18s, background 0.14s, color 0.15s, border 0.14s;
}
.cta-button:active {
  box-shadow: 0 0.5px 2px rgba(34,65,89,0.06);
  transform: translateY(1px);
}

/* Slide-in/out for mobile menu */
.mobile-menu, .cookie-banner, .cookie-modal {
  transition: transform 0.35s cubic-bezier(0.5,0.1,0.33,1), opacity 0.25s;
}

/* ------------------------------------------
   COOKIE CONSENT BANNER & MODAL
------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 0 44px rgba(34,65,89,0.13);
  border-top: 2.5px solid var(--gold);
  z-index: 2000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 24px;
  gap: 24px;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner-message {
  flex: 1 1 300px;
  color: var(--primary);
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 7px;
  padding: 9px 22px;
  border: none;
  box-shadow: 0 1px 6px rgba(189,151,48,0.05);
  transition: background 0.16s, color 0.2s;
  margin-right: 2px;
  cursor: pointer;
}
.cookie-banner-btn-accept {
  background: var(--gold);
  color: var(--primary);
}
.cookie-banner-btn-accept:hover {
  background: #e1bc65;
  color: var(--dark);
}
.cookie-banner-btn-reject {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--gold);
}
.cookie-banner-btn-reject:hover {
  background: var(--secondary);
  color: var(--white);
}
.cookie-banner-btn-settings {
  background: var(--primary);
  color: var(--white);
  border: 1.5px solid var(--gold);
  margin-right: 0;
}
.cookie-banner-btn-settings:hover {
  background: var(--secondary);
  color: var(--white);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 8px;
  }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,65,89,0.7);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(34,65,89,0.15);
  padding: 32px 28px;
  min-width: 320px; max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cookie-modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.26rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  background: var(--accent);
  padding: 10px 16px;
}
.cookie-category-label {
  flex: 1 1;
  font-weight: 500;
  color: var(--primary);
}
.cookie-category-toggle {
  font-size: 1.25rem;
  accent-color: var(--gold);
  margin-right: 2px;
}
.cookie-category--essential .cookie-category-toggle {
  pointer-events: none;
  opacity: 0.62;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  min-width: 120px;
}
.cookie-modal-close {
  position: absolute;
  top: 28px;
  right: 36px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2.1rem;
  cursor: pointer;
}

@media (max-width: 600px) {
  .cookie-modal-content {
    padding: 18px 6vw;
    min-width: 0;
  }
  .cookie-modal-close {
    top: 12px;
    right: 14px;
  }
}

/* ---------------------------------------------
   ACCESSIBILITY: FOCUS OUTLINES
---------------------------------------------- */
.main-nav a:focus, .footer-nav a:focus, .mobile-nav a:focus,
.cta-button:focus, .cookie-banner button:focus, .cookie-modal-close:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1.5px;
}

/* ----------------------------------------------
   PRINT CLEANUP
------------------------------------------------ */
@media print {
  nav.main-nav, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal, .footer-contact img, .footer-nav img  {
    display: none !important;
  }
  body, .container, .section, main {
    background: #fff !important;
    color: #151d28 !important;
  }
}
