/* Glow Studios - Scandinavian Clean Flexbox CSS
   Scandinavian-inspired, light, warm, modern, elegant, professional, accessible.
   Brand: Montserrat (display), Roboto (body)
   Colors: #24242E (primary/dark), #EFC070 (secondary/warm gold), #FFFFFF (light/neutral)
*/

/* CSS RESET & NORMALIZATION */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #24242E;
  background: #FAFAFA;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
:focus-visible {
  outline: 2px solid #EFC070;
  outline-offset: 2px;
}

/* TYPOGRAPHY SCALE */
h1, .h1 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2.5rem; font-weight: 700; letter-spacing: -1px; margin-bottom: 24px; }
h2, .h2 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2rem; font-weight: 600; margin-bottom: 20px; }
h3, .h3 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.33rem; font-weight: 600; margin-bottom: 16px; }
h4, .h4 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.17rem; font-weight: 500; margin-bottom: 12px; }
p, li { font-size: 1rem; margin-bottom: 12px; }
small { font-size: 0.92rem; color: #888; }

/* CONTAINER LAYOUTS (FLEXBOX) */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(36,36,46,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px 24px 24px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 26px rgba(36,36,46,0.12);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(36,36,46,0.09);
  margin-bottom: 20px;
  min-width: 220px;
  border-left: 6px solid #EFC070;
}
.testimonial-card p {
  color: #24242E;
  font-size: 1.06rem;
  margin-bottom: 0;
}
.testimonial-card small {
  color: #24242E;
  opacity: 0.75;
}
.testimonial-card div {
  font-size: 1.3em;
  color: #EFC070;
  letter-spacing: 2px;
}

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

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #ECECEC;
  position: relative;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding-top: 5px;
  padding-bottom: 5px;
}
header img[alt='Glow Studios'] {
  max-height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 4px 0;
  color: #24242E;
  position: relative;
  transition: color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #EFC070;
}

/* Primary Button */
.btn-primary {
  background: #EFC070;
  color: #24242E;
  font-weight: 700;
  border: none;
  padding: 12px 32px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 7px rgba(239,192,112,0.08);
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #f6dcac;
  color: #24242E;
  box-shadow: 0 3px 16px rgba(239,192,112,0.18);
}

/* Secondary Button */
.btn-secondary {
  background: #24242E;
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 11px 31px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 5px rgba(36,36,46,0.07);
  cursor: pointer;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #474757;
}

/* HERO SECTION */
.hero {
  min-height: 46vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 16px rgba(36,36,46,0.03);
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1, .hero p {
  margin-bottom: 16px;
}
.hero .btn-primary {
  margin-top: 10px;
}

/* SERVICE CARD (on /services/) */
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 10px rgba(36,36,46,0.10);
  padding: 32px 28px 24px 28px;
  margin-bottom: 20px;
  max-width: 460px;
  transition: box-shadow 0.18s, transform 0.18s;
  border-left: 6px solid #EFC070;
}
.service-card:hover {
  box-shadow: 0 8px 30px rgba(36,36,46,0.17);
  transform: translateY(-4px) scale(1.015);
}
.service-card h2 { margin-bottom: 0.5em; font-size: 1.33rem; font-weight: 700; }
.service-card ul {
  margin: 10px 0;
  padding-left: 20px;
  gap: 8px;
}
.service-card li { list-style-type: disc; margin-bottom: 6px; }
.service-card small { display: block; margin-top: 6px; color: #EFC070; font-weight: 600; }

/* FAQ BLOCK */
.faq-block {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 6px rgba(36,36,46,0.07);
  padding: 24px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.faq-block:hover { box-shadow: 0 3px 12px rgba(36,36,46,0.13);
}
.faq-block h2 { font-size: 1.13rem; margin-bottom: 6px; color: #24242E; font-weight: 600; }

/* CONTACT & DETAILS */
.contact-details {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(36,36,46,0.07);
  padding: 18px 18px;
  margin-bottom: 16px;
}
.map-instructions {
  background: #F5EFE4;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 16px;
  color: #24242E;
  box-shadow: 0 1px 4px rgba(239,192,112,0.12);
}

/* PRICING TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(36,36,46,0.05);
  margin-bottom: 20px;
  overflow: hidden;
}
thead tr {
  background: #F9F7F2;
  font-family: 'Montserrat', Arial, sans-serif;
}
th, td {
  padding: 14px 16px;
  text-align: left;
  font-size: 1rem;
}
th {
  font-weight: 700;
  color: #24242E;
}
tbody tr { border-bottom: 1px solid #F2ECD7; }
tbody tr:last-child { border-bottom: none; }
td {
  color: #353547;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #ECECEC;
  padding-top: 36px;
  padding-bottom: 24px;
  margin-top: 60px;
}
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.footer-logo img {
  max-height: 50px;
  margin-bottom: 10px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-legal a {
  color: #24242E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.88;
  transition: color 0.18s, opacity 0.18s;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #EFC070;
  opacity: 1;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.98rem;
  color: #888;
  padding-top: 6px;
}

/* NAV: HAMBURGER FOR MOBILE */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 1.5px solid #ECECEC;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #24242E;
  position: relative;
  z-index: 102;
  cursor: pointer;
  margin-left: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  border-color: #EFC070;
  box-shadow: 0 2px 6px rgba(239,192,112,0.14);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.57,0.19,0.1,1);
  box-shadow: 0 0 32px rgba(36,36,46,0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-y: auto;
  min-width: 240px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #24242E;
  font-size: 2.1rem;
  line-height: 1;
  padding: 16px 22px 4px 0;
  align-self: flex-end;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #EFC070;
  color: #24242E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 30px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #24242E;
  padding: 12px 0;
  border-bottom: 1px solid #F2ECD7;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9F7F2;
  color: #EFC070;
}
header .main-nav, .btn-primary { transition: color 0.18s, background 0.18s; }

/* Only show mobile menu toggle below 1000px */
@media (max-width: 999px) {
  .main-nav, header .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1000px) {
  .mobile-menu { display: none !important; }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 950px) {
  .footer-cols { gap: 24px; }
}
@media (max-width: 850px) {
  .footer-cols {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.23rem; }
  .container {
    padding-left: 12px; padding-right: 12px;
  }
  .section { padding: 30px 8px; margin-bottom: 44px; }
  .footer-cols { gap: 20px; }
  .content-wrapper {
    gap: 18px;
  }
  .service-card, .faq-block, .testimonial-card, .card { padding: 18px 12px 16px 12px; border-radius: 11px; }
  table, th, td { font-size: 0.98rem; }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .content-grid { flex-direction: column; gap: 18px; }
}
@media (max-width: 510px) {
  h1, .h1 { font-size: 1.4rem; }
  h2, .h2 { font-size: 1rem; }
}

/* --- ICON LIST STYLES --- */
ul li > img, ul li > svg {
  height: 22px;
  width: 22px;
  vertical-align: middle;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: -5px;
}

/* BUTTON ANIMATIONS & TRANSITIONS */
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.15s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.98);
}

/* --- COOKIE CONSENT BANNER STYLES --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fff;
  color: #24242E;
  z-index: 400;
  box-shadow: 0 -2px 16px rgba(36,36,46,0.13);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 22px 22px 28px;
  font-size: 0.97rem;
  border-radius: 14px 14px 0 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.33s, transform 0.4s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  padding: 8px 22px;
  border-radius: 20px;
  border: 1.5px solid #EFC070;
  background: #fff;
  color: #24242E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.16s, color 0.16s, border 0.16s;
}
.cookie-btn.accept {
  background: #EFC070;
  color: #24242E;
  border-color: #EFC070;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #f6dcac;
  color: #24242E;
  border-color: #f6dcac;
}
.cookie-btn.reject {
  background: #fff;
  color: #24242E;
  border-color: #EFC070;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F9F7F2;
}
.cookie-btn.settings {
  background: #fff;
  color: #24242E;
  border-color: #EFC070;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F9F7F2;
}
@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 8px 15px 12px; font-size: 0.97rem; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed; z-index: 410;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(36,36,46,0.17);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.visible { opacity: 1; pointer-events: all; }
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 48px rgba(36,36,46,0.16);
  max-width: 95vw; width: 420px;
  padding: 36px 26px 26px 26px;
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
  animation: modal-in 0.35s cubic-bezier(0.57,0.19,0.1,1);
}
@keyframes modal-in {
  from { transform: translateY(48px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1.0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.33rem;
  color: #24242E;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F9F7F2;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.99rem;
}
.cookie-category .switch {
  margin-left: auto;
}
.cookie-category.essential { font-weight: 700; color: #24242E; }
.cookie-modal .cookie-modal-close {
  position: absolute; top: 14px; right: 15px;
  font-size: 1.5rem;
  background: none; border: none; color: #888;
  cursor: pointer; border-radius: 50%; transition: background 0.16s;color 0.16s;
}
.cookie-modal .cookie-modal-close:hover { background: #EFC070; color: #24242E; }
.cookie-modal .modal-btns {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}

/* Custom Switch Toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.switch-slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #eee;
  border-radius: 22px;
  transition: background-color 0.2s;
}
.switch-slider:before {
  content: "";
  position: absolute;
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 1px 4px rgba(36,36,46,0.08);
}
.switch input:checked + .switch-slider {
  background-color: #EFC070;
}
.switch input:checked + .switch-slider:before {
  transform: translateX(18px);
  background-color: #24242E;
}
.switch input:disabled + .switch-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

/* FOCUS STATE for accessibility */
.btn-primary:focus, .btn-secondary:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  box-shadow: 0 0 0 2.5px #EFC070 !important;
}

/* --- UTILITIES --- */
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }

/* Accent backgrounds for Scandinavian feeling */
.bg-white     { background: #fff; }
.bg-warm      { background: #F9F7F2; }
.bg-secondary { background: #EFC070; color: #24242E; }

/* Hide scrollbars for mobile nav */
.mobile-menu::-webkit-scrollbar { display: none; }
.mobile-menu { -ms-overflow-style: none; scrollbar-width: none; }

/* Ensure all cards/sections have min 20px spacing */
.section > *:not(:last-child), .content-wrapper > *:not(:last-child), .card-container > *:not(:last-child), .footer-cols > *:not(:last-child) {
  margin-bottom: 20px;
}

/* DISABLE GRID / COLUMNS FOR ALL */
/* [Purposely omitted: display:grid, grid-* or column-* anywhere] */
