/* ---------------------------------------------------
   CSS RESET & BASE (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;
}
footer p {
  color: white;
}
html {
  height: 100%;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  background-color: #F7F9FA;
  color: #223b52;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  scroll-behavior: smooth;
}
img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: #183153;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #223b52;
  outline-offset: 2px;
}
ul, ol {
  margin-bottom: 1.5em;
  padding-left: 1.1em;
}
li {
  margin-bottom: 0.5em;
}
*::-webkit-input-placeholder { color: #96a4b8; }
*::-moz-placeholder { color: #96a4b8; }
*:-ms-input-placeholder { color: #96a4b8; }
*::placeholder { color: #96a4b8; }

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #183153;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.125rem;
}
.text-section h1, .text-section h2 {
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
  color: #183153;
}
p {
  font-size: 1rem;
  margin-bottom: 1.25em;
  color: #223b52;
}
.text-section {
  text-align: left;
}
@media (max-width: 768px) {
  h1 { font-size: 1.56rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1rem; }
}

/* ---------------------------------------------------
   LAYOUT: Containers & Sections
-----------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper, .content-grid { gap: 18px; }
}

/* ---------------------------------------------------
   FLEXBOX GRIDS
-----------------------------------------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(24,49,83,0.07);
  padding: 24px 20px 20px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 320px;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.18s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}
.feature-item:hover {
  box-shadow: 0 4px 24px 0 rgba(24,49,83,0.18);
  transform: translateY(-2px) scale(1.017);
}

/* ---------------------------------------------------
   CARDS & LISTS
-----------------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(24,49,83,0.08);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(24,49,83,0.11);
  transform: translateY(-3px) scale(1.015);
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 7px 0 rgba(24,49,83,0.06);
  padding: 22px 18px;
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 400px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.service-item h3 span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #183153;
  font-size: 0.95em;
  font-weight: 400;
  background: #F3C96B22;
  border-radius: 6px;
  padding: 2px 10px;
  margin-left: 6px;
}
.service-item:hover {
  box-shadow: 0 4px 18px 0 rgba(24,49,83,0.17);
  transform: translateY(-2px) scale(1.009);
}

/* ---------------------------------------------------
   TESTIMONIALS
-----------------------------------------------------*/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(24,49,83,0.12);
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.17s;
}
.testimonial-card p {
  color: #223b52;
  font-size: 1rem;
}
.testimonial-card strong {
  font-size: 0.96rem;
  color: #2f486c;
  margin-top: 2px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px 0 rgba(24,49,83,0.17);
  transform: translateY(-3px) scale(1.013);
}

/* ---------------------------------------------------
   HEADER & NAVIGATION
-----------------------------------------------------*/
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e7ecf1;
  box-shadow: 0 1px 6px 0 rgba(24,49,83,0.04);
  position: relative;
  z-index: 1001;
}
.main-nav {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
  font-weight: 500;
}
.main-nav a {
  color: #183153;
  padding: 8px 13px;
  border-radius: 6px;
  transition: background 0.16s, color 0.14s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #f3c96b10;
  color: #183153;
}
.main-nav .cta-btn {
  background: #183153;
  color: #fff;
  border-radius: 7px;
  padding: 9px 25px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  margin-left: 12px;
  transition: background 0.18s, color 0.14s, box-shadow 0.17s;
  box-shadow: 0 1px 8px 0 rgba(24,49,83,0.08);
}
.main-nav .cta-btn:hover,
.main-nav .cta-btn:focus {
  background: #F3C96B;
  color: #183153;
  box-shadow: 0 4px 14px 0 #f3c96b44;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 10px;
}
/* Hamburger Icon */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #183153;
  cursor: pointer;
  margin-left: auto;
  padding: 4px 12px;
  z-index: 1201;
}
/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 16px #18315322;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.7,0,0.2,1);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #183153;
  cursor: pointer;
  margin: 30px 24px 10px 0;
  z-index: 1401;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100vw;
  align-items: flex-start;
  padding: 18px 32px 0 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.16rem;
}
.mobile-nav a {
  color: #183153;
  padding: 12px 6px 8px 2px;
  border-radius: 4px;
  width: 100%;
  transition: background 0.16s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #f3c96b1a;
  color: #183153;
}
@media (max-width: 1060px) {
  .main-nav a:not(:first-child), .main-nav .cta-btn {
    padding-left: 10px; padding-right: 10px;
    font-size: 15px;
  }
}
@media (max-width: 920px) {
  .main-nav a { font-size: 14px; }
}
@media (max-width: 880px) {
  .main-nav { gap: 7px; }
  .main-nav .cta-btn { margin-left: 5px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 16px;
    top: 14px;
  }
  header { min-height: 60px; }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* ---------------------------------------------------
   BUTTONS & INTERACTIONS
-----------------------------------------------------*/
.cta-btn,
button,
input[type="submit"] {
  background: #183153;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 11px 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  cursor: pointer;
  box-shadow: 0 1px 7px 0 rgba(24,49,83,0.08);
  transition: background 0.19s, color 0.13s, box-shadow 0.17s, transform 0.10s;
  display: inline-block;
  line-height: 1.1;
}
.cta-btn:hover, .cta-btn:focus,
button:hover, button:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: #F3C96B;
  color: #183153;
  box-shadow: 0 4px 14px 0 #f3c96b3a;
  transform: translateY(-2px) scale(1.03);
}

/* ---------------------------------------------------
   CONTACT BLOCKS & MAPS
-----------------------------------------------------*/
.contact-info-block {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px 0 rgba(24,49,83,0.07);
  padding: 18px 16px;
  margin-bottom: 24px;
}
.location-map {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}
.location-map img {
  width: 60px; height: 60px;
}
@media (max-width: 760px) {
  .location-map { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ---------------------------------------------------
   FOOTER
-----------------------------------------------------*/
footer {
  width: 100%;
  background: #183153;
  color: #fff;
  padding-top: 30px;
  font-size: 1rem;
}
footer section {
  padding: 38px 0 0px 0;
  margin-bottom: 0;
}
footer .container { padding-bottom: 24px; }
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}
.footer-brand img {
  width: 62px; height: auto;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}
.footer-nav a, .footer-legal a {
  color: #F3C96B;
  font-size: 1rem;
  padding: 2px 4px;
  border-radius: 4px;
  transition: background 0.15s, color 0.14s;
}
.footer-nav a:hover, .footer-legal a:hover {
  background: #fff2;
  color: #fff;
}
.footer-contact {
  font-size: 0.97rem;
  margin-top: 10px;
}
.footer-contact a {
  color: #F3C96B;
  text-decoration: underline;
}
.social-links {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}
.social-links img {
  width: 32px; height: 32px;
  filter: brightness(0) invert(1) sepia(0.2) saturate(4) hue-rotate(-25deg) contrast(1.03);
  transition: filter 0.2s;
}
.social-links img:hover {
  filter: brightness(1) invert(0.2) sepia(0.6) saturate(7) hue-rotate(40deg) contrast(1.11);
}
@media (max-width: 800px) {
  footer .content-wrapper { gap: 22px; }
}
@media (max-width: 600px) {
  .footer-nav, .footer-legal {
    flex-direction: column; gap: 7px;
  }
}

/* ---------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-----------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #223b52d8;
  color: #fff;
  box-shadow: 0 -3px 24px #18315333;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px 18px 20px;
  z-index: 2000;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(.6,0,.3,1);
  transform: translateY(100%);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  background: #F3C96B;
  color: #183153;
  border: none;
  border-radius: 5px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.18s, color 0.1s, box-shadow 0.12s;
  box-shadow: 0 2px 8px #0001;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #183153;
  color: #fff;
}
/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #183153cc;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s cubic-bezier(.5,0,.3,1);
}
.cookie-modal-backdrop.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 32px 0 rgba(24,49,83,0.22);
  padding: 36px 26px 28px 26px;
  min-width: 320px;
  max-width: 98vw;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalFadeIn 0.25s;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.92) translateY(30px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  color: #183153;
  font-size: 1.3rem;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: #183153;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F3C96B;
  width: 22px; height: 22px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #183153;
  cursor: pointer;
}
@media (max-width: 520px) {
  .cookie-modal { padding: 20px 8px 12px 8px; min-width: unset; width: 96vw; }
  .cookie-modal h3 { font-size: 1.09rem; }
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 11px 7px 13px 8px;
    font-size: 0.98rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .cookie-banner .cookie-actions { gap: 7px; }
}

/* ---------------------------------------------------
   RESPONSIVE SPACING & FLEX
-----------------------------------------------------*/
@media (max-width: 1100px) {
  .container { max-width: 950px; }
}
@media (max-width: 900px) {
  .container { max-width: 760px; }
  .feature-grid, .testimonial-slider, .service-list, .card-container {
    gap: 16px;
  }
  .feature-item, .testimonial-card, .service-item { min-width: 160px; max-width: 100%; }
}
@media (max-width: 600px) {
  .section { padding: 24px 4px; margin-bottom: 38px; }
  .container { padding: 0 6px; }
  .footer-brand img { width: 44px; }
}

/* ---------------------------------------------------
   UTILITIES & MISC
-----------------------------------------------------*/
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
@media (max-width: 800px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }
}
@media (min-width: 801px) {
  .hide-desktop { display: none !important; }
  .show-desktop { display: block !important; }
}

/* End of GlintSpark Oratory Professional Corporate Styles */
