/* RESET & BASE TYPOGRAPHY (mobile-first) */
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%;
  box-sizing: border-box;
  vertical-align: baseline;
}

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

body {
  background: #1a222b;
  color: #ededed;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

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

ul, ol {
  list-style: none;
}

a {
  color: #F5B55E;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #ffffff;
}

strong {
  font-weight: 700;
}

/* HEADINGS & TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #F5B55E;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.25rem; line-height: 1.1; margin-bottom: 18px; }
h2 { font-size: 1.5rem; line-height: 1.2; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }

p, li, span, blockquote {
  font-size: 1rem;
  color: #ededed;
}
blockquote {
  font-style: italic;
  color: #233347;
  background: #fff;
  border-left: 4px solid #F5B55E;
  margin-bottom: 12px;
  padding: 14px 20px;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(35,51,71,0.06);
}

/* LAYOUT CONTAINERS (SPACING & FLEXBOX) */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 14px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #232e39;
  border-radius: 10px;
  box-shadow: 0 2px 18px rgba(35,51,71,0.18);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #22272e;
  border: 1px solid #303b46;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(35,51,71,0.10);
  position: relative;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 260px;
}

.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;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(27,34,43,0.08);
  margin-bottom: 20px;
  color: #233347;
}
.testimonial-card blockquote {
  background: none;
  border-left: 4px solid #233347;
  color: #233347;
  box-shadow: none;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #5A6778;
  font-size: 0.98rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #1a222b;
  border-bottom: 2px solid #303b46;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 72px;
}
header > a img {
  height: 46px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  color: #ededed;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #233347;
  color: #F5B55E;
}

.cta-primary {
  color: #233347;
  background: linear-gradient(90deg, #F5B55E 85%, #f9d6a3 100%) !important;
  font-family: 'Playfair Display', serif;
  padding: 12px 30px;
  border-radius: 28px;
  box-shadow: 0 3px 18px rgba(245,181,94,0.08);
  font-size: 1.10rem;
  font-weight: 700;
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-block;
  margin-left: 14px;
  letter-spacing: 0.5px;
  transition: background 0.19s, box-shadow 0.19s, color 0.19s;
  border-bottom: 2px solid #f3ae41;
}
.cta-primary:hover, .cta-primary:focus {
  background: #233347 !important;
  color: #F5B55E;
  box-shadow: 0 4px 24px 0 rgba(35,51,71,0.13);
  border-bottom: 2px solid #F5B55E;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: inline-flex;
  font-size: 2.0rem;
  color: #F5B55E;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.2s;
  align-items: center;
  z-index: 301;
  padding: 6px 8px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 90vw;
  max-width: 350px;
  background: #1a222b;
  box-shadow: -4px 0 24px rgba(35,51,71,0.17);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.77,.06,.33,1);
  padding: 32px 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  display: inline-flex;
  color: #F5B55E;
  font-size: 2rem;
  background: none;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 24px;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #F5B55E;
  padding: 12px 2px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 7px;
  display: block;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #233347;
  background: #F5B55E;
}

@media (min-width: 1024px) {
  header,
  header > nav,
  footer .content-wrapper {
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .cta-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .mobile-menu {
    display: flex;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 40px;
  }
  .testimonial-card {
    padding: 14px 12px;
    margin-bottom: 14px;
  }

  .content-wrapper, .text-image-section, .content-grid {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important;
  }
  .text-image-section img, .text-section img {
    max-width: 44px !important;
  }
}

@media (max-width: 600px) {
  html { font-size: 15px; }
  .card { min-width: 95vw; }
}

/* FOOTER */
footer {
  width: 100%;
  background: #1a222b;
  border-top: 2px solid #303b46;
  margin-top: 54px;
  padding: 28px 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
footer nav a {
  color: #F5B55E;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1.5px dotted #f5b55e44;
  padding-bottom: 1px;
}
footer nav a:hover {
  color: #fff;
  border-bottom: 1.5px solid #fff;
}
footer p {
  font-size: 0.96rem;
  color: #bfc4cb;
}
footer img {
  max-height: 36px;
}
footer div:last-child a img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

/* ICON ALIGNMENT */
li img,
p img,
.text-section img {
  vertical-align: middle;
  margin-right: 7px;
  height: 22px;
}

/* BUTTONS */
button, .cta-primary {
  font-family: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  appearance: none;
  background: none;
}

/* CARDS & LISTS */
ul, ol {
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
}
ul li, ol li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.04rem;
  color: #ededed;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}

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

/* FORM (for contact forms if used in future) */
input, textarea, select {
  background: #232e39;
  border: 1px solid #303b46;
  font-size: 1rem;
  padding: 10px 14px;
  outline: none;
  color: #ededed;
  border-radius: 6px;
  margin-bottom: 12px;
  width: 100%;
  font-family: 'Open Sans', Arial, sans-serif;
}
input:focus, textarea:focus {
  border-color: #F5B55E;
}

/* Animations for app-like feel */
.cta-primary, .mobile-nav a, .mobile-menu-close, .mobile-menu-toggle {
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, border 0.19s;
}
.section, .card, .testimonial-card {
  transition: box-shadow 0.13s, transform 0.15s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 2px 26px 0 rgba(35,51,71,0.17);
  transform: translateY(-2px) scale(1.012);
}

/* VISUAL HIERARCHY */
.section > .container > .content-wrapper > h1 {
  margin-bottom: 12px;
}
.section > .container > .content-wrapper > h2 {
  margin-top: 8px;
  margin-bottom: 10px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  background: #22272e;
  box-shadow: 0 -2px 24px rgba(35,51,71,0.13);
  color: #ededed;
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 14px 16px 14px;
  border-top: 2px solid #F5B55E;
  align-items: flex-start;
  transition: transform 0.33s cubic-bezier(.83,.12,.52,.89), opacity 0.18s;
}
.cookie-consent.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent p {
  font-size: 1rem;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}
.cookie-btn {
  padding: 8px 22px;
  font-size: 1rem;
  border-radius: 19px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  background: #F5B55E;
  color: #233347;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  border-bottom: 2px solid #e9a436;
  margin-right: 5px;
}
.cookie-btn.reject {
  background: #303b46;
  color: #fff;
  border-bottom: 2px solid #233347;
}
.cookie-btn.settings {
  background: #1a222b;
  color: #F5B55E;
  border-bottom: 2px solid #F5B55E;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #233347;
  color: #F5B55E;
}

/* Cookie Modal (overlay and dialog) */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(35,51,71,0.66);
}
.cookie-modal-backdrop.open {
  display: block;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 400px;
  background: #22272e;
  color: #ededed;
  border-radius: 9px;
  box-shadow: 0 6px 32px 0 rgba(35,51,71,0.32);
  padding: 29px 19px 22px 19px;
  transform: translate(-50%, -54%) scale(0.94);
  opacity: 0;
  pointer-events: none;
  z-index: 6700;
  transition: transform 0.30s, opacity 0.24s;
}
.cookie-modal.open {
  opacity: 1;
  transform: translate(-50%, -54%) scale(1);
  pointer-events: all;
}
.cookie-modal h3 {
  color: #F5B55E;
  margin-bottom: 10px;
}
.cookie-category {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-toggle {
  width: 34px;
  height: 18px;
  background: #303b46;
  border-radius: 10px;
  position: relative;
  transition: background 0.16s;
  margin-left: 7px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle span {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #F5B55E;
  transition: left 0.16s;
  z-index: 2;
}
.cookie-toggle input:checked + span {
  left: 18px;
  background: #F5B55E;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 19px;
}

/* Hide modal scroll on open */
body.cookie-modal-open {
  overflow: hidden;
}

/* INDUSTRIAL MODERN EFFECTS */
.section,
.card,
.testimonial-card,
footer,
header {
  /* Subtle metallic effect: Add border/box-shadow with blue/grey 
     No gradient, industrial dark + metallic highlight */
  border-radius: 10px;
  box-shadow: 0 2px 18px rgba(35,51,71,0.18),
    0 0.5px 0.5px 0 rgba(170,170,180,0.03);
}

.section, .card, .testimonial-card {
  border: 1.3px solid #29394a;
}

/* CUSTOM SCROLLBAR - Chromium only */
::-webkit-scrollbar {
  width: 9px;
  background: #22272e;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #303b46;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #233347;
}

/* SELECTION */
::selection {
  background: #F5B55E;
  color: #233347;
}

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

/* Utilities */
.hide {
  display: none !important;
}

.mt-24 { margin-top: 24px; }
.mb-20 { margin-bottom: 20px; }

/* Disable outline for mouse, enable for keyboard */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #F5B55E;
  outline-offset: 2px;
}

/* --- END STYLE.CSS --- */
