/* =====================================================
   FROSTY TRANSMISSION - Scandinavian Clean CSS Theme
   Brand: Frosty Transmission    |    Style: Scandinavian Clean
===================================================== */
/* RESET & BASE STYLES */
html { box-sizing: border-box; font-size: 100%; }
*, *:before, *:after { box-sizing: inherit; }
body {
  margin: 0;
  padding: 0;
  background: #F8F8F8;
  color: #183B5B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #47A6D8; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #183B5B; text-decoration: underline; }
ul, ol { padding-left: 1.3em; margin-top: 0; margin-bottom: 1em; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #183B5B;
  margin: 0 0 20px 0;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
.subheadline {
  color: #47A6D8;
  font-size: 1.2rem;
  margin-bottom: 32px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
strong { font-weight: 700; color: #183B5B; }
blockquote {
  border-left: 4px solid #47A6D8;
  background: #fff;
  margin: 0 0 10px 0;
  padding: 10px 20px;
  color: #183B5B;
  font-style: italic;
}
cite {
  display: block;
  color: #7A97AD;
  font-size: 1rem;
  margin-top: 5px;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin: 20px 0 20px 0;
  border-radius: 16px;
  overflow: hidden;
}
th, td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1px solid #EDF1F4;
  color: #183B5B;
}
th {
  background: #f1f6fa;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(24,59,91,0.06);
  transition: box-shadow 0.2s, transform 0.15s;
  position: relative;
  min-width: 240px;
  padding: 24px;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(24,59,91,0.12);
  transform: translateY(-4px);
}
.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;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(24,59,91,0.06);
  border-radius: 14px;
  max-width: 520px;
  transition: box-shadow 0.2s, transform 0.13s;
  border: 1px solid #EDF1F4;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(24,59,91,0.11);
  transform: translateY(-3px);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.schedule-table { width: 100%; overflow-x: auto; background: #fff; border-radius: 12px; box-shadow: 0 2px 10px rgba(24,59,91,0.06); margin-bottom: 32px; }
.team-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(24,59,91,0.06);
  margin-bottom: 20px;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filters ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.filters li {
  background: #EDF1F4;
  color: #183B5B;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(24,59,91,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

header a img {
  height: 38px;
}
header nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #183B5B;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  padding: 10px 3px;
  transition: color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #47A6D8;
}

.cta-primary {
  background: #47A6D8;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(71,166,216,0.08);
  transition: background 0.2s, box-shadow 0.2s, color 0.15s;
  cursor: pointer;
  outline: none;
  display: inline-block;
  margin-top: 10px;
  text-align: center;
  text-decoration: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #183B5B;
  color: #fff;
  box-shadow: 0 4px 14px rgba(24,59,91,0.16);
}

/* Burger Menu */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #183B5B;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  margin-left: 10px;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #EDF1F4;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,59,91,0.98);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.81,-0.01,.19,1);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  padding: 20px 26px 8px 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.15s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 16px;
  width: 100%;
  padding: 0 38px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 15px 0;
  border-radius: 8px;
  transition: background 0.15s, color 0.16s;
  width: 100%;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #47A6D8;
  color: #fff !important;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #EDF1F4;
  box-shadow: 0 -2px 8px rgba(24,59,91,0.04);
  padding: 0;
  margin-top: 72px;
}
footer .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 0 32px 0;
  justify-content: space-between;
}
footer a img { height: 36px; margin-bottom: 10px; }
footer nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
footer nav a { font-size: 1rem; color: #183B5B; font-family: 'Montserrat', Arial, sans-serif; }
footer nav a:hover, footer nav a:focus {
  color: #47A6D8;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: #7A97AD;
  margin-left: auto;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact img { width: 20px; margin-right: 7px; vertical-align: middle; }
.footer-contact span { display: flex; align-items: center; gap: 7px; }

/* Miscellaneous content styles */
ul {
  margin-top: 0;
  margin-bottom: 15px;
  padding-left: 25px;
}
ol {
  margin-top: 0;
  margin-bottom: 15px;
  padding-left: 30px;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.5;
}
main ul li img { width: 26px; vertical-align: middle; margin-right: 11px; }
main ul li strong { color: #183B5B; }

/* QUALIFICATIONS SECTION */
.qualifications {
  background: #EDF1F4;
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 10px;
  font-size: 1rem;
}
.qualifications ul { list-style: disc; }

/* CONTACT PAGE */
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #183B5B;
  font-size: 1.04rem;
  margin-bottom: 14px;
}
.contact-info img { width: 26px; }

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -4px 18px rgba(24,59,91,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 24px 20px 24px;
  font-size: 1rem;
  z-index: 30000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(48px);
  transition: opacity 0.35s, transform 0.35s;
}
.cookie-consent-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-buttons {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-buttons button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.15s;
  outline: none;
}
button.cookie-accept { background: #47A6D8; color: #fff; }
button.cookie-accept:hover, button.cookie-accept:focus { background: #183B5B; }
button.cookie-reject { background: #EDF1F4; color: #183B5B; }
button.cookie-reject:hover, button.cookie-reject:focus { background: #d3e6f2; color: #183B5B; }
button.cookie-settings { background: #fff; color: #183B5B; border: 1px solid #183B5B; }
button.cookie-settings:hover, button.cookie-settings:focus { background: #EDF1F4; }

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,59,91,0.48);
  z-index: 40000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 38px rgba(24,59,91,0.14);
  padding: 32px 26px 22px 26px;
  max-width: 420px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  animation: cookieModalAppear 0.33s cubic-bezier(.58,.13,.62,1);
}
@keyframes cookieModalAppear {
  0% { transform: translateY(40px) scale(0.97); opacity: 0; }
  80% { transform: translateY(-8px) scale(1.01); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 23px; right: 35px;
  font-size: 2rem;
  color: #183B5B;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 2;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: #183B5B;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
}
.cookie-category input[type=checkbox], .cookie-category input[type=radio] {
  accent-color: #47A6D8;
  width: 20px;
  height: 20px;
  margin: 0;
}
.cookie-modal-footer {
  margin-top: 15px;
  width: 100%;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 18px; align-items: flex-start; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .section {
    padding: 26px 6px;
    margin-bottom: 38px;
  }
  header .container { flex-direction: row; gap: 8px; min-height: 58px; }
  header nav, .cta-primary { display: none; }
  .mobile-menu-toggle { display: block; }
  .testimonial-card { max-width: 100%; }
  .card-container, .content-grid { flex-direction: column; gap: 16px; }
  .team-card { padding: 20px 14px; }
  .text-image-section { flex-direction: column; gap: 20px; }
  .cookie-modal-content { padding: 20px 8px; }
}
@media (max-width: 450px) {
  .section { padding: 14px 2px; }
  .container { padding-left: 4px; padding-right: 4px; }
}

/* Micro-interactions & Transitions */
button, .cta-primary {
  transition: background 0.16s, color 0.15s, box-shadow 0.18s, transform 0.13s;
}
button:active, .cta-primary:active { transform: scale(0.97); }

/* Utility classes */
.hidden { display: none !important; }

/* Accessibility: Focus styles */
a:focus, button:focus {
  outline: 2px solid #47A6D8;
  outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 12px; background: #EDF1F4; }
::-webkit-scrollbar-thumb { background: #47A6D8; border-radius: 8px; }

/* End of FROSTY TRANSMISSION Scandinavian Clean CSS */
