/* Silent Gale Insights Luxury Premium Theme - style.css */
/* CSS RESET & NORMALIZE (Subset for clarity and compatibility) */
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;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background-color: #F5F7FA;
  color: #253858;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #BCA56B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #997F3E;
}
ul, ol {
  margin-left: 24px;
}
strong {
  font-weight: 700;
}

/* Brand Colors & Luxury CSS Variables */
:root {
  --primary: #253858;
  --secondary: #8892B0;
  --accent: #F5F7FA;
  --gold: #BCA56B;
  --gold-light: #F6E7C1;
  --premium-black: #181921;
  --premium-offwhite: #FAFAF7;
  --card-shadow: 0 4px 24px rgba(27, 32, 44, 0.14);
  --border-radius: 18px;
  --outline-radius: 16px;
  --nav-height: 72px;
  --transition: 0.25s cubic-bezier(0.43, 0.13, 0.23, 0.96);
  --box-padding: 40px 20px;
}
/* Font faces - assuming webfonts are loaded or local fallback */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* SPACING & SECTION */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--premium-offwhite);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(27,32,44,0.06);
  position: relative;
}

@media (max-width: 900px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 10px;
  }
}

/* TYPOGRAPHY */
h1, .display {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
h2 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}
h3 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 6px;
}
h4, h5, h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 4px;
}
p, li, dd, dt, span, label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--primary);
}
.subheadline {
  font-size: 1.25rem;
  color: var(--secondary);
  font-weight: 400;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  h1, .display { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
}

/* HEADER */
header {
  background: var(--premium-black);
  box-shadow: 0 2px 8px rgba(27,32,44,0.14);
  padding: 0;
  min-height: var(--nav-height);
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 103;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: 28px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
header nav a {
  color: var(--accent);
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.07rem;
  padding: 7px 0;
  position: relative;
  transition: color var(--transition);
}
header nav a::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--gold);
  width: 0;
  transition: width var(--transition);
  border-radius: 1px;
  margin-top: 3px;
}
header nav a:hover::after,
header nav a:focus::after {
  width: 100%;
}
header nav a:hover,
header nav a:focus {
  color: var(--gold);
}

header img {
  height: 44px;
  width: auto;
  margin-right: 26px;
}

.cta-button {
  background: var(--gold);
  color: var(--premium-black);
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  border: none;
  border-radius: 26px;
  padding: 13px 36px;
  box-shadow: 0 3px 9px rgba(188, 165, 107, 0.11);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  outline: none;
  position: relative;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #997F3E;
  color: #fff;
  box-shadow: 0 3px 20px 0 rgba(188,165,107, 0.25);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  padding: 10px 13px;
  font-size: 1.53rem;
  color: var(--premium-black);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(188,165,107,0.18);
  margin-left: 20px;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #997F3E;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(37,56,88,0.98);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.55,.09,.51,.99), opacity 0.18s linear;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--gold);
  margin: 24px 24px 0 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 48px 32px;
  gap: 28px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  color: var(--accent);
  padding: 10px 0;
  border-bottom: 1px solid rgba(250,250,247,0.08);
  transition: color var(--transition);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--gold);
  background: none;
}
@media (max-width: 1200px) {
  header .container {
    gap: 8px;
  }
  header nav {
    gap: 14px;
  }
  .cta-button {
    padding: 12px 16px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* SECTION & FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  background: #fff;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  position: relative;
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 36px rgba(188,165,107, 0.19), var(--card-shadow);
  transform: translateY(-2px) scale(1.015);
}
.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: var(--border-radius);
  box-shadow: 0 1px 8px rgba(27,32,44,0.09);
  margin-bottom: 20px;
  position: relative;
  border-left: 5px solid var(--gold);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive Pattern for Flex Layouts */
@media (max-width: 768px) {
  .text-image-section,
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid,
  .key-metrics-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* HOMEPAGE & COMPONENTS */
.feature-grid,
.key-metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 6px;
}
.feature-grid > div,
.key-metrics-grid > div {
  background: #fff;
  padding: 24px 22px;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 8px rgba(27,32,44,0.06);
  min-width: 220px;
  flex: 1 1 220px;
}
.feature-grid img, .key-metrics-grid img {
  height: 36px;
  margin-bottom: 14px;
}

@media (max-width: 500px) {
  .feature-grid > div, .key-metrics-grid > div {
    padding: 13px 10px;
    min-width: 0;
  }
}

/* Table Styling (Data tables) */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 20px 0;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 8px rgba(27,32,44,0.07);
  overflow: hidden;
}
thead {
  background: var(--gold-light);
}
th, td {
  font-size: 1rem;
  padding: 16px 10px;
  text-align: left;
  border-bottom: 1px solid #ececec;
}
th {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.02em;
}
tr:last-child td {
  border-bottom: none;
}
@media (max-width:600px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  th, td {
    padding: 10px 6px;
    min-width: unset;
    width: 100%;
  }
}

/* List Styles */
ul {
  margin: 0 0 20px 28px;
}
ul li {
  margin-bottom: 7px;
  position: relative;
}
ul li::before {
  content: '\2022';
  color: var(--gold);
  font-weight: bold;
  font-size: 1.01em;
  position: absolute;
  left: -20px;
  top: 1px;
}

/* Footer */
footer {
  background: var(--premium-black);
  color: var(--accent);
  padding: 44px 0 22px 0;
  box-shadow: 0 -2px 8px rgba(27,32,44,0.08);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo img {
  height: 44px;
  width: auto;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 18px;
}
footer nav a {
  color: var(--gold);
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  transition: color var(--transition);
}
footer nav a:hover,
footer nav a:focus {
  color: #fff2cf;
}
.footer-contact {
  font-size: 1rem;
  color: var(--accent);
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact img {
  height: 20px;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: 2px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* FAQ (dl, dt, dd) Styling */
dl {
  margin-bottom: 24px;
}
dt {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 18px;
  margin-bottom: 7px;
}
dd {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 10px;
  margin-left: 15px;
}

/* Ratings & Testimonials */
.ratings, .testimonial-card span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 500;
}
.ratings img {
  height: 22px;
  vertical-align: middle;
  margin-right: 8px;
}
.testimonial-card p {
  flex: 1 1 0;
  color: #292c37;
  font-size: 1.05rem;
}
.testimonial-card span {
  min-width: 120px;
  color: var(--secondary);
}

/* Chart & Analysis visual placeholder */
.chart-placeholder {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 22px;
  box-shadow: 0 1px 7px rgba(27,32,44,0.07);
  margin-bottom: 18px;
}
.trend-analysis, .trend-highlights, .regional-analysis, .industry-outlook, .opportunities-list, .risks-list {
  background: #fff;
  padding: 18px 14px;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 7px rgba(27,32,44,0.05);
  margin-bottom: 18px;
}

.insightful-graphics {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 12px;
  color: var(--primary);
}
.insightful-graphics img {
  height: 26px;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 14px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.07rem;
  color: var(--primary);
}
.contact-details img {
  height: 18px;
  width: auto;
}

.note {
  background: var(--gold-light);
  color: var(--primary);
  border-left: 5px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 11px 16px;
  margin: 22px 0 0 0;
  font-size: 1.01rem;
}

.cta-area {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -2px 24px 0 rgba(27,32,44,0.16);
  z-index: 5100;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 24px 26px;
  transition: transform var(--transition), opacity 0.25s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner__text {
  flex: 1 1 220px;
  font-size: 1rem;
  color: var(--primary);
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner__button {
  background: var(--gold);
  color: var(--premium-black);
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  border: none;
  border-radius: 18px;
  padding: 8px 26px;
  margin: 0 2px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 7px rgba(188,165,107,0.13);
}
.cookie-banner__button:hover, .cookie-banner__button:focus {
  background: #997F3E;
  color: #fff;
}
.cookie-banner__button.reject {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner__button.settings {
  background: #ece9e2;
  color: var(--primary);
  border: 1px solid var(--gold);
}
.cookie-banner__button.settings:hover,
.cookie-banner__button.settings:focus {
  background: var(--gold-light);
  color: var(--primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 8px;
    gap: 10px;
  }
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 5300;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(27, 32, 44, 0.30);
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal__content {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 9px 48px 0 rgba(27,32,44,0.18);
  min-width: 320px;
  max-width: 94vw;
  padding: 32px 28px;
  position: relative;
  animation: modal-in 0.25s cubic-bezier(0.64,0.09,0.26,0.98);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(70px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal__close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 1.01rem;
  color: var(--primary);
}
.cookie-category input[type=checkbox] {
  accent-color: var(--gold);
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.cookie-category .essential {
  font-weight: 500;
  color: var(--secondary);
}

/* BUTTONS & INTERACTIONS */
button {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
}
button:focus, .cta-button:focus, .cookie-banner__button:focus, .cookie-modal__close:focus {
  outline: 2px solid var(--gold);
  outline-offset: 0.5px;
}
input, select, textarea {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #d6d8e1;
  padding: 9px 12px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 18px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-light);
}
label {
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 4px;
}

/* MICROINTERACTIONS */
.cta-button, .cookie-banner__button {
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
}
.card, .feature-grid > div, .key-metrics-grid > div, .testimonial-card {
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .feature-grid > div:hover, .key-metrics-grid > div:hover {
  box-shadow: 0 8px 36px rgba(188,165,107,0.16), var(--card-shadow);
  transform: translateY(-2px) scale(1.01);
}

/* Z-INDEX LAYERS */
.mobile-menu {z-index: 3000;}
.cookie-banner {z-index: 5100;}
.cookie-modal {z-index: 5300;}

/* SELECTION COLOR */
::selection {
  background: var(--gold-light);
  color: var(--primary);
}

/* Accessibility: DARK TEXT ON LIGHT BG in testimonial/reviews */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #262934;
  background: #fff;
}

/* Hide all outside the view on print */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff; color: #000; }
}
