/* --------------------------------------------------------
   GlowMove LED – Geometric Structured Style – style.css
   --------------------------------------------------------
   - Flexbox ONLY layout, fully geometric/structured
   - Modern, professional, energetic brand accents
   - Mobile-first approach, responsive breakpoints
----------------------------------------------------------*/

/* RESET & BASE 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,
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,
main, 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 {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #f7f9fb;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #182c45;
  background: #f7f9fb;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #182c45;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fdce11;
  outline: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

/* TYPOGRAPHY HIERARCHY */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: #182c45;
  margin-bottom: 24px;
  text-transform: uppercase;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #182c45;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #182c45;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0; 
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #182c45;
}
p, ul li, ol li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #1c263a;
  line-height: 1.7;
}
.lead {
  font-size: 1.25rem;
  color: #182c45;
  margin-bottom: 18px;
  font-weight: 600;
}
strong {
  font-weight: 700;
  color: #182c45;
}

/* GENERAL CONTAINER AND SECTION LAYOUTS – FLEXBOX ONLY */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(24,44,69,0.08);
}

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

.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(24,44,69,0.08);
  padding: 24px 18px;
  min-width: 260px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
}

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

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

/* FLEX LAYOUTS: TESTIMONIALS, TEAM, SERVICES */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #f7f9fb;
  box-shadow: 0 2px 10px 0 rgba(24,44,69,0.06);
  border-left: 5px solid #fdce11;
  min-width: 220px;
  max-width: 420px;
}
.testimonial-card p {
  color: #161e2e;
  font-size: 1.05rem;
}
.testimonial-card span {
  color: #182c45;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.team-member-card {
  background: #f7f9fb;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(24,44,69,0.08);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 350px;
  border-bottom: 5px solid #fdce11;
}

.service-card {
  background: #fff;
  border: 2px solid #fdce11;
  border-radius: 16px 4px 16px 4px;
  box-shadow: 0 2px 12px rgba(24,44,69,0.09);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 350px;
  position: relative;
  transition: box-shadow 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 28px 0 rgba(253,206,17,0.17);
  border-color: #182c45;
}

.case-card {
  background: #f7f9fb;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(24,44,69,0.09);
  padding: 24px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 4px solid #fdce11;
}

.article-preview-card {
  background: #fff;
  border: 2px solid #182c45;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(24,44,69,0.07);
  padding: 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
  max-width: 400px;
  transition: box-shadow 0.22s, border-color 0.18s;
}
.article-preview-card:hover {
  box-shadow: 0 6px 22px 0 rgba(253,206,17,0.19);
  border-color: #fdce11;
}

.categories-filter {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.categories-filter a {
  padding: 0 6px;
  color: #182c45;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.14s;
}
.categories-filter a:hover {
  background: #fdce11;
  color: #182c45;
}

.rating-summary {
  margin-top: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #182c45;
  background: #f7f9fb;
  padding: 10px 22px;
  border-radius: 10px;
  box-shadow: 0 1px 5px 0 rgba(24,44,69,0.05);
}


/* BUTTONS (PRIMARY & SECONDARY) */
.button-primary, .button-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  border-radius: 32px 4px 32px 4px;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 1px 7px 0 rgba(24,44,69,0.08);
}
.button-primary {
  background: #fdce11;
  color: #182c45;
  border: 2px solid #fdce11;
}
.button-primary:hover, .button-primary:focus {
  background: #182c45;
  color: #fdce11;
  border-color: #182c45;
}
.button-secondary {
  background: #182c45;
  color: #fdce11;
  border: 2px solid #182c45;
}
.button-secondary:hover, .button-secondary:focus {
  background: #fdce11;
  color: #182c45;
  border-color: #fdce11;
}

.button-tertiary {
  background: #fff;
  color: #182c45;
  border: 2px solid #182c45;
  border-radius: 8px;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.18s, color 0.18s;
}
.button-tertiary:hover {
  background: #fdce11;
  color: #182c45;
}

/* HEADER & MAIN NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(24,44,69,0.05);
  z-index: 200;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 72px;
}
header img[alt="GlowMove LED"] {
  height: 44px;
  margin-right: 10px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #182c45;
  border-radius: 8px;
  padding: 6px 18px;
  transition: background 0.12s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #fdce11;
  color: #182c45;
}
.main-nav .button-primary {
  margin-left: 10px;
  padding: 8px 26px;
  font-size: 1rem;
}

/* HAMBURGER MOBILE MENU */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #182c45;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 6px 14px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  z-index: 210;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #fdce11; color: #182c45;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #182c45;
  z-index: 400;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.4,.14,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 54px;
  padding-left: 0;
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: #fdce11;
  font-size: 2.1rem;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.16s;
  cursor: pointer;
  z-index: 1001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #182c45;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100vw;
  padding: 0 32px;
}
.mobile-nav a {
  color: #fdce11;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(253,206,17,0.15);
  transition: color 0.14s, background 0.12s;
  border-radius: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fdce11;
  color: #182c45;
  border-radius: 8px;
}

/* Hide nav-desktop on mobile, nav-mobile default hidden (JS toggles .open) */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}

/* FOOTER */
footer {
  background: #182c45;
  color: #fff;
  padding-top: 34px;
  padding-bottom: 34px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fdce11;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-contact {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-contact a {
  color: #fdce11;
  font-weight: 700;
  text-decoration: underline;
}

/* CONTACT DETAILS & MAP */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f7f9fb;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(24,44,69,0.06);
  margin-bottom: 20px;
}
.map-location {
  background: #fdce11;
  padding: 10px 18px;
  border-radius: 10px;
  color: #182c45;
  font-size: 1rem;
  margin-top: 8px;
  margin-bottom: 8px;
}

/* UL ICON STYLES (for index and feature sections) */
ul li img {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  vertical-align: middle;
}
ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* SPACING ENFORCEMENT */
section, .section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.card-container, .card-grid {
  gap: 24px !important;
}
.card, .service-card, .case-card, .team-member-card, .testimonial-card, .article-preview-card {
  margin-bottom: 20px !important;
}
.content-grid, .categories-filter {
  gap: 20px !important;
  justify-content: space-between;
}
.text-image-section {
  gap: 30px !important;
  align-items: center;
}
.feature-item {
  gap: 15px !important;
  align-items: flex-start;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .footer-nav, .footer-contact {
    flex-basis: 100%;
  }
}
@media (max-width: 900px) {
  .footer-nav, .footer-contact {
    flex-basis: 100%;
    margin-bottom: 18px;
  }
  .footer-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  header .container {
    min-height: 60px;
    padding: 0 9px;
  }
  h1 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.28rem;
    margin-bottom: 14px;
  }
  .section {
    padding: 22px 6px !important;
    margin-bottom: 32px !important;
    border-radius: 11px;
  }
  .content-wrapper, .card-container, .card-grid, .content-grid, .categories-filter {
    flex-direction: column !important;
    gap: 14px !important;
  }
  .card, .service-card, .case-card, .team-member-card, .testimonial-card, .article-preview-card {
    min-width: unset;
    max-width: 100%;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
    font-size: 1.7rem;
    padding: 5px 10px;
  }
  .footer-nav {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .footer-contact {
    padding-bottom: 12px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch;
  }
}


/* ANIMATIONS & MICRO-INTERACTIONS */
.button-primary, .button-secondary {
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, border-color 0.14s;
}
.card, .service-card, .case-card, .testimonial-card, .team-member-card, .article-preview-card {
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover, .service-card:hover, .case-card:hover, .testimonial-card:hover, .team-member-card:hover, .article-preview-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 8px 32px 0 rgba(24,44,69,0.16);
}

/* Z-INDEX FIX for overlays */
.mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 401;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 3px solid #fdce11;
  box-shadow: 0 -2px 10px 0 rgba(24,44,69,0.06);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #182c45;
  z-index: 1100;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.18s, transform 0.23s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(180%);
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner .button-primary, .cookie-banner .button-tertiary {
  padding: 9px 28px;
  font-size: 1rem;
}

/* COOKIE MODAL PREFERENCES OVERLAY */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(24,44,69,0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s;
}
.cookie-modal.hide {
  opacity: 0;
  visibility: hidden;
}
.cookie-modal-content {
  background: #fff;
  padding: 24px 20px 20px 24px;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(24,44,69,0.23);
  min-width: 320px;
  max-width: 95vw;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #182c45;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
  color: #182c45;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #fdce11;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
}
.cookie-modal .button-primary, .cookie-modal .button-tertiary {
  padding: 9px 20px;
  font-size: 1rem;
}
.cookie-modal .button-tertiary {
  background: #fff;
  color: #182c45;
  border: 2px solid #fdce11;
  margin-left: 6px;
}
.cookie-modal .button-tertiary:hover {
  background: #fdce11;
  color: #182c45;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  color: #182c45;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 480px) {
  .cookie-banner, .cookie-modal-content {
    padding: 14px 7px !important;
  }
  .cookie-modal-content {
    min-width: 90vw;
    padding: 14px 4px 17px 7px;
  }
}

/* END style.css */
