/* RESET & BASE TYPOGRAPHY */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #181C27;
  color: #f7f7fa;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
}
a {
  color: #E07C00;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4971B;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: 700;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 16px 12px;
}

/* BRAND COLORS - fallback if css vars unsupported */
:root {
  --primary: #25436B;
  --secondary: #F7F7FA;
  --accent: #E07C00;
  --neutral-bg: #23273A;
  --accent-bright: #F4971B;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: #fff;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; font-weight: 700; letter-spacing: 0.02em; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }

p, ul, ol, li, table, th, td, a, dl, dt, dd {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #f7f7fa;
  font-size: 1rem;
  line-height: 1.6;
}


/* LAYOUT CONTAINERS & FLEXBOX */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 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 {
  margin-bottom: 20px;
  background: #23273A;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(24,44,68,0.10), 0 0 0 1px #25436b1a;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 6px 32px rgba(244,151,27,0.23), 0 2px 24px rgba(30,52,115,0.13);
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #232040;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px rgba(80,104,255,0.10);
  flex-direction: column;
  min-width: 0;
}
.testimonial-card p {
  color: #232040;
  font-size: 1.125rem;
}
.testimonial-card strong {
  color: #25436B;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.star-rating-summary {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #F4971B;
}

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

/* HERO & SECTION BACKGROUNDS */
section:first-of-type {
  background: linear-gradient(100deg, #25436B 55%, #181C27 120%);
  border-radius: 0 0 30px 30px;
}
section {
  border-radius: 24px;
  margin-bottom: 60px;
  box-shadow: 0 6px 36px -24px #25436B99;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #23273A;
  box-shadow: 0 3px 18px rgba(37,67,107,0.17);
  z-index: 60;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 20px 12px 20px;
}
.logo img {
  height: 40px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.main-nav a {
  color: #f7f7fa;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.18s;
}
.main-nav a:after {
  content: '';
  display: block;
  margin: 2px auto 0 auto;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg,var(--accent),var(--accent-bright));
  border-radius: 2px;
  transition: width 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 90%;
}
.cta {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 32px;
  background: linear-gradient(87deg, var(--accent), #fdcc80 120%);
  color: #232040;
  border: none;
  border-radius: 22px;
  box-shadow: 0 2px 18px #e07c0040, 0 0 0 0 #fff0;
  font-size: 1.025rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  min-width: 160px;
  min-height: 44px;
  transition: background 0.18s, color 0.18s, box-shadow .18s;
  outline: none;
  display: inline-block;
  margin: 16px 0 0 0;
}
.cta.primary { background: linear-gradient(87deg,#F4971B,#E07C00 90%); color: #fff; }
.cta:hover, .cta.primary:hover, .cta:focus, .cta.primary:focus {
  background: linear-gradient(91deg,#fdcc80,#E07C00 80%);
  color: #181C27;
  box-shadow: 0 2px 28px #f4971b44, 0 0 0 2px #25436B40;
  outline: none;
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 18px;
  z-index: 90;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;
  background: linear-gradient(90deg, #181C27 80%, #23273A 150%);
  transform: translateX(-110%);
  transition: transform 0.33s cubic-bezier(.23,1.07,.55,1);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  padding-left: 0;
  gap: 24px;
  box-shadow: 2px 0 16px #25436Bcc;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 2px 28px #181C27bb;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.25rem;
  position: absolute;
  right: 24px;
  top: 14px;
  cursor: pointer;
  z-index: 1002;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #F4971B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 8px 0;
  transition: color .17s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #fff;
}

/* HERO SECTION & CALLS */
section:first-of-type .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  min-height: 340px;
  padding-top: 40px;
  gap: 18px;
}
section:first-of-type h1 {
  font-size: 2.7rem;
  line-height: 1.18;
}
section:first-of-type p {
  font-size: 1.2rem;
  max-width: 700px;
}

/* FEATURES */
.feature-list, .service-list, .benefits-list, .usp-list, .included-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
.feature-list li, .service-list li, .usp-list li, .included-services-list li, .benefits-list li {
  background: #23273A;
  border-radius: 16px;
  box-shadow: 0 2px 10px #25436B16;
  padding: 24px 20px 16px 20px;
  margin-bottom: 16px;
  flex: 1 1 240px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: #fff;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-list li:hover,
.service-list li:hover,
.usp-list li:hover,
.included-services-list li:hover,
.benefits-list li:hover {
  box-shadow: 0 4px 32px #f4971b29, 0 0 5px #fdcc80cc;
  transform: translateY(-6px) scale(1.03);
}
.feature-list img, .service-list img, .usp-list img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 6px #F4971B22);
}
.feature-list strong, .service-list strong {
  color: var(--accent-bright);
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1.1rem;
  letter-spacing: .01em;
}

/* SERVICES, TEAM & TABS */
.service-list, .team-profiles, .course-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.service-list li, .team-profiles li, .course-tabs article {
  flex: 1 1 300px;
  background: #23273A;
  border-radius: 16px;
  box-shadow: 0 2px 10px #181c2732;
  padding: 20px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  min-width: 230px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.course-tabs article:hover, .service-list li:hover {
  box-shadow: 0 6px 32px #F4971B33, 0 2px 24px #25436B13;
  transform: translateY(-6px) scale(1.03);
}
.team-profiles li img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}
.team-profiles li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  background: #fff;
  color: #181C27;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 18px #25436B21;
  font-size: 1.02rem;
}
.pricing-table thead tr {
  background: #25436B;
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
}
.pricing-table th {
  font-weight: 600;
  padding: 16px 12px;
  border-bottom: 2px solid #fdcc8070;
}
.pricing-table tbody tr {
  transition: background 0.18s;
}
.pricing-table tbody tr:hover {
  background: #F7F7FA;
}
.pricing-table td {
  border-bottom: 1px solid #e5e8f5;
  color: #181C27;
}
.map-brief img {
  width: 100px;
}
.pricing-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #23273A;
  color: #F4971B;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

/* FAQ/ACCORIDON */
.faq-accordion {
  margin-bottom: 24px;
}
.faq-accordion dt {
  font-family: 'Montserrat', Arial;
  font-weight: 600;
  color: var(--accent-bright);
  background: #23273A;
  margin-bottom: 8px;
  padding: 14px 16px 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 6px #25436B18;
  position: relative;
  transition: background 0.16s, color 0.16s;
}
.faq-accordion dt:hover, .faq-accordion dt:focus {
  background: #181C27;
  color: #fff;
}
.faq-accordion dd {
  background: #fff;
  color: #232040;
  border-radius: 0 0 10px 10px;
  margin: 0 0 16px 0;
  padding: 12px 20px 18px 20px;
  font-size: 1rem;
  box-shadow: 0 2px 8px #25436B14;
  line-height: 1.6;
}

.text-section, .team-overview {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* CONTACT DETAILS & MAP */
.contact-details, .map-brief, .contact-min-details {
  background: #23273A;
  padding: 20px 20px 14px 20px;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px #25436B12;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details a {
  color: var(--accent-bright);
}

/* NEXT-STEPS ON THANKS PAGE */
.next-steps-info {
  background: #23273A;
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 2px 11px #23273A14;
}

/* FOOTER */
footer {
  background: #181C27;
  color: #fff;
  padding: 40px 0 24px 0;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -3px 24px #25436B30;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-main-nav, .footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.footer-main-nav a, .footer-legal-nav a {
  color: #9DB0CA;
  transition: color 0.18s;
}
.footer-main-nav a:hover, .footer-legal-nav a:hover {
  color: #F4971B;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #F4971B;
  margin-bottom: 10px;
}
.legal-information span {
  font-size: .95rem;
  color: #ADB5C9;
}

/* MICRO-INTERACTIONS and TRANSITIONS */
*, *:before, *:after {
  box-sizing: inherit;
  transition-property: color, background, box-shadow, transform, border;
  transition-duration: .18s;
  transition-timing-function: cubic-bezier(.5,1.05,.5,1);
}

/* COOKIE CONSENT STYLES */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #23273A;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 20px 18px 20px;
  z-index: 2000;
  box-shadow: 0 -2px 24px #25436Bbb;
  font-size: 1rem;
  border-radius: 16px 16px 0 0;
  animation: cookieBannerIn .7s cubic-bezier(.7,1.28,.36,.94) forwards;
}
@keyframes cookieBannerIn { from { transform: translateY(110px); opacity: 0;} to { transform: translateY(0); opacity: 1; } }
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-left: auto;
}
.cookie-btn {
  border: none;
  border-radius: 18px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  background: #232040;
  color: var(--accent-bright);
  padding: 8px 20px;
  font-size: .98rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: linear-gradient(86deg,#fdcc80 70%,var(--accent) 90%);
  color: #232040;
}
.cookie-btn.reject {
  background: #181C27;
  color: #fff;
  border: 1px solid #F4971B;
}
.cookie-btn.settings {
  background: #232040;
  color: var(--accent-bright);
  border: 1px solid #adb5c966;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--accent-bright);
  color: #fff;
  box-shadow: 0 2px 16px #fdcc8090;
  outline: none;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2100;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100dvh;
  background: rgba(23,31,50,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieBackdropIn .28s .03s cubic-bezier(.7,1.28,.36,.94) both;
}
@keyframes cookieBackdropIn{ from{ opacity:0;} to{opacity:1;} }
.cookie-modal {
  background: #23273A;
  color: #fff;
  border-radius: 16px;
  padding: 34px 28px 22px 28px;
  width: 94vw;
  max-width: 430px;
  box-shadow: 0 4px 28px #25436B33, 0 2px 16px #E07C0033;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieModalIn .45s cubic-bezier(.7,1.28,.36,.94) both;
  position: relative;
  z-index: 2120;
}
@keyframes cookieModalIn { from { transform: scale(.88) translateY(40px); opacity: 0;} to {transform:scale(1) translateY(0); opacity:1;}}
.cookie-modal h3 {
  color: var(--accent-bright);
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.02rem;
  background: #232040;
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
}
.cookie-category.essential {
  color: #adb5c9;
  background: #232040;
  font-style: italic;
  opacity: 0.72;
}
.cookie-switch {
  appearance: none;
  width: 32px;
  height: 16px;
  border-radius: 8px;
  background: #E07C00;
  outline: none;
  margin-left: 12px;
  cursor: pointer;
  position: relative;
  transition: background 0.14s;
}
.cookie-switch:checked {
  background: #F4971B;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1px 3px #23204022;
}
.cookie-switch:checked:before {
  transform: translateX(13px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .cookie-btn {
  margin: 0;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--accent-bright);
}

/* ---------------------- RESPONSIVE DESIGN -------------------------*/
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .section, section {
    margin-bottom: 34px;
    padding: 24px 8px;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .feature-list, .service-list, .usp-list, .included-services-list, .benefits-list {
    gap: 15px;
  }
  .feature-list li, .service-list li, .usp-list li, .included-services-list li, .benefits-list li {
    min-width: 140px;
    padding: 13px 7px 10px 12px;
    font-size: .96rem;
  }
  .card-container, .content-grid, .service-list, .team-profiles, .course-tabs {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    padding: 12px 12px;
    gap: 12px;
  }
  section:first-of-type .content-wrapper {
    min-height: 250px;
    padding-top: 24px;
    padding-bottom: 18px;
    gap: 12px;
  }
}
@media (max-width: 700px) {
  header .container {
    flex-direction: row;
    gap: 10px;
    padding: 18px 8px 9px 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta.primary {
    font-size: 0.99rem;
    padding: 10px 19px;
    min-width: 110px;
  }
  .footer-main-nav, .footer-legal-nav {
    gap: 8px;
    flex-wrap: wrap;
  }
}
@media (max-width:600px) {
  html { font-size: 15px; }
  h1 { font-size: 1.35rem; }
  .section, section { padding: 13px 4px; }
  .feature-list li, .service-list li, .usp-list li, .included-services-list li, .benefits-list li {
    font-size: 0.92rem;
    padding: 8px 7px 6px 8px;
    min-width: 90px;
  }
  .course-tabs article {
    padding: 10px 8px;
  }
  .card {
    padding: 6px 7px;
  }
  .star-rating-summary { font-size: 0.95rem; }
  .testimonial-card { font-size: 0.98rem; padding: 8px 7px; }
  .cookie-consent-banner { font-size: .97rem; padding: 13px 6px 10px 7px; border-radius: 10px 10px 0 0; }
  .cookie-modal { padding:18px 8px 10px 11px; }
  .cookie-category { font-size: .98rem; }
  .contact-details, .map-brief, .contact-min-details { padding:12px 6px 6px 8px; }
}
@media (max-width:490px) {
  .logo img { height: 32px; }
  .footer-main-nav, .footer-legal-nav { gap: 4px; font-size: .91rem; }
  .social-links { font-size: .93rem; }
}

/* --------- UTILITIES ----------- */
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.spacer-32 { height: 32px; width: 100%; }

/* --------- ACCESSIBILITY --------- */
:focus {
  outline: 2px solid #fdcc80;
  outline-offset: 2px;
}

::-webkit-input-placeholder { color: #ADB5C9; opacity: 1; }
::-moz-placeholder { color: #ADB5C9; opacity: 1; }
:-ms-input-placeholder { color: #ADB5C9; opacity: 1; }
::placeholder { color: #ADB5C9; opacity: 1; }

/* ------------- END OF CSS ------------- */
