/* ====================================================
   Dusk Profit Fitness | Vibrant Energetic CSS Style
   ====================================================
   RESET & BASE
   ----------------------------------------------------*/
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, menu, 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, 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #12243B;
  background: #fff;
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
a {
  color: #23B574;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
a:focus {
  outline: 2px solid #12243B;
  outline-offset: 2px;
}
strong {
  font-weight: bold;
}

/* ====================================================
   CSS VARIABLES (for vibrancy, with fallbacks)
   ----------------------------------------------------*/
:root {
  --primary: #12243B;
  --secondary: #23B574;
  --secondary-bright: #1be484;
  --accent: #F6F6F6;
  --danger: #ea1744;
  --warning: #ffe15a;
  --highlight1: #E9287D;
  --highlight2: #FEAE00;
  --shadow-main: 0 4px 18px rgba(18,36,59,0.07), 0 1.5px 8px rgba(18,36,59,0.05);
  --shadow-strong: 0 8px 30px rgba(18,36,59,0.12);
  --border-radius: 18px;
  --font-display: 'Oswald', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --transition-main: 0.2s cubic-bezier(.55,.12,.31,1.54);
}

/* Google Fonts Embed (Use @import for wider compatibility) */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Oswald:400,600,700&display=swap');

/* ====================================================
   LAYOUT CONTAINER & UTILITY
   ----------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 10px;
}
.text-section {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-main);
}

/* Dynamic Electric Vibrant Header Section for Hero */
section:first-of-type {
  background: #FEAE00;
  background: linear-gradient(90deg, #FEAE00 0%, #23B574 100%);
  color: #12243B;
  box-shadow: var(--shadow-strong);
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
  padding-top: 48px;
  padding-bottom: 48px;
}
section:first-of-type h1,
section:first-of-type .cta-btn {
  color: #12243B;
}

/* Flex Patterns for Cards, Lists, and Grids */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  position: relative;
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-main);
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 7px 32px rgba(35,181,116,0.16);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.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;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-main);
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 300px;
  transition: box-shadow 0.2s var(--transition-main), transform 0.13s;
  color: #12243B;
}
.testimonial-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px rgba(35,181,116,0.16);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/****************************
 FEATURES & SERVICES CARDS
****************************/
.service-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-main);
  padding: 28px 18px;
  margin-bottom: 24px;
  min-width: 220px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.17s var(--transition-main);
}
.service-card img {
  height: 48px;
  width: 48px;
  margin-bottom: 14px;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(35,181,116,0.13), 0 2px 8px rgba(18,36,59,0.07);
  transform: translateY(-2px) scale(1.016);
}

/* =============================
   TYPOGRAPHY & DISPLAY STYLES
   =============================*/
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1.18;
  letter-spacing: -1px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
  text-transform: uppercase;
  background: linear-gradient(90deg,#12243B 50%,#23B574 95%,#FEAE00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.23;
  margin-bottom: 16px;
  font-weight: 700;
  color: #12243B;
  text-transform: uppercase;
  letter-spacing: -.5px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary);
}
.tagline {
  margin-top: 12px;
  font-family: var(--font-display);
  color: #23B574;
  font-size: 1.1rem;
  letter-spacing: .02em;
  font-style: italic;
  font-weight: 500;
}
p, ul li, .feature-item {
  font-size: 1rem;
  line-height: 1.6;
}
ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.08rem;
  color: #12243B;
}
ul li img {
  height: 32px;
  width: 32px;
  flex-shrink: 0;
}
.info-note {
  display: inline-block;
  font-size: 0.98rem;
  background: #ffe15a;
  color: #12243B;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 8px;
}

/*****************************
   BUTTONS & CTA-Elements
*****************************/
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #23B574 0%, #1be484 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px 34px;
  border: none;
  border-radius: 90px;
  box-shadow: 0 2px 15px rgba(35,181,116,0.13);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 18px;
  margin-bottom: 10px;
  transition: background 0.19s var(--transition-main),transform 0.2s,box-shadow 0.13s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #1be484 0%, #23B574 100%);
  transform: translateY(-1px) scale(1.04);
  color: #FEAE00;
  box-shadow: 0 3px 24px #23B57444;
}

button, .button, .cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  background: #12243B;
  color: #fff;
  padding: 10px 30px;
  border: none;
  border-radius: 80px;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(35,181,116,0.13);
  margin-right: 8px;
  margin-bottom: 8px;
  transition: background 0.16s, transform 0.16s;
}
button:hover, .button:hover, .cookie-btn:hover, button:focus {
  background: #23B574;
  color: #fff;
  transform: translateY(-1px) scale(1.04);
}

/* =============================
   HEADER & RESPONSIVE NAV
   =============================*/
header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(18,36,59,0.04);
  z-index: 1100;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  min-height: 70px;
  gap: 18px;
}
header a img {
  height: 44px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 1.02rem;
  letter-spacing: .09em;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 7px;
  font-weight: 500;
  transition: background 0.12s, color 0.16s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #fff;
  background: #23B574;
}

/* Burger Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #12243B;
  cursor: pointer;
  margin-left: 12px;
  z-index: 1201;
  line-height: 1;
  box-shadow: none;
}

/* =============================
   MOBILE NAVIGATION MENU
   =============================*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #12243B;
  color: #fff;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.5,1.72,.54,.98);
  padding: 0;
  box-shadow: 0 6px 36px rgba(18,36,59,0.17);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 1320;
  cursor: pointer;
  padding: 4px 10px;
  transition: color 0.11s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #ffe15a;
  background: rgba(35,181,116,0.13);
  border-radius: 40px;
}
.mobile-nav {
  margin-top: 90px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding-left: 34px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.26rem;
  text-transform: uppercase;
  font-family: var(--font-display);
  letter-spacing: .13em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a:hover {
  color: #FEAE00;
}

/* Hide main-nav and show mobile-toggle on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* Hide mobile-menu on desktop */
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============================
   FOOTER
   =============================*/
footer {
  background: #12243B;
  padding: 40px 0 18px 0;
  color: #fff;
  margin-top: 50px;
}
footer .container {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #23B574;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.footer-nav a:hover {
  color: #FEAE00;
}
.footer-contact {
  font-size: 1rem;
  color: #fff;
  opacity: .8;
  margin-top: 10px;
}
footer img {
  height: 44px;
  margin-bottom: 8px;
}

/*****************************
   RESPONSIVE DESIGN
*****************************/
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .card-container,
  .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding: 24px 4px;
    margin-bottom: 40px;
  }
  section:first-of-type {
    padding-top: 22px;
    padding-bottom: 22px;
    border-radius: 0 0 28px 28px;
  }
  .text-image-section,
  .content-grid,
  .card-container,
  .feature-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card,
  .service-card,
  .card {
    min-width: unset;
    padding: 22px 10px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-nav {
    gap: 12px;
  }
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  h3 {
    font-size: 1.03rem;
  }
}
@media (max-width: 540px) {
  .cta-btn,
  button, .button, .cookie-btn {
    font-size: 1rem;
    padding: 11px 18px;
  }
}

/*****************************
   SHADOWS, RADIUS & EFFECTS
*****************************/
.card, .service-card, .testimonial-card {
  box-shadow: var(--shadow-main);
  border-radius: var(--border-radius);
  background: #fff;
}

/*****************************
   CTA & INTERACTIONS
*****************************/
.cta-btn, button, .button, .cookie-btn {
  transition: background 0.16s var(--transition-main), color 0.18s,box-shadow 0.14s,transform 0.12s;
}
.cta-btn:active {filter: brightness(0.97);}
button:active {filter: brightness(0.93);}

/*****************************
   TESTIMONIAL READABILITY
*****************************/
.testimonial-card {
  color: #12243B;
  background: #fff;
  border-left: 5px solid #23B574;
}
.testimonial-card span, .testimonial-card strong {
  color: #23B574;
  font-size: 1.1rem;
  font-family: var(--font-display);
}
.testimonial-card p {
  color: #12243B;
  font-size: 1.07rem;
  letter-spacing: .01em;
  margin-right: 4px;
}

/*****************************
   UTILS & SPACING
*****************************/
.mb-20 {margin-bottom: 20px !important;}
.mb-32 {margin-bottom: 32px !important;}
.mb-60 {margin-bottom: 60px !important;}
.mt-20 {margin-top: 20px !important;}

/*****************************
   COOKIE CONSENT BANNER
*****************************/
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 4px solid #23B574;
  box-shadow: 0 -4px 22px rgba(18,36,59,0.13);
  padding: 26px 14px 14px 24px;
  z-index: 1500;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  transition: transform 0.33s cubic-bezier(.59,1.44,.39,1.06), opacity 0.2s;
}
#cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
#cookie-consent-banner .cookie-btn {
  font-size: 1rem;
  border-radius: 55px;
  padding: 8px 22px;
  background: #23B574;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  transition: background 0.13s, color 0.15s;
}
#cookie-consent-banner .cookie-btn.accept {background: #23B574;}
#cookie-consent-banner .cookie-btn.reject {background: #E9287D;}
#cookie-consent-banner .cookie-btn.settings {
  background: #FEAE00;
  color: #12243B;
}
#cookie-consent-banner .cookie-btn:hover, #cookie-consent-banner .cookie-btn:focus {
  filter: brightness(1.17);
  outline: 2px solid #12243B;
}
@media (max-width: 700px) {
  #cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 8px 8px 10px;
  }
}

/*****************************
   COOKIE SETTINGS MODAL
*****************************/
#cookie-settings-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(18,36,59,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
#cookie-settings-modal.active {
  opacity: 1;
  pointer-events: auto;
}
#cookie-settings-modal .modal-content {
  background: #fff;
  color: #12243B;
  border-radius: 18px;
  padding: 34px 28px 22px 28px;
  min-width: 310px;
  min-height: 180px;
  max-width: 94vw;
  box-shadow: var(--shadow-strong);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
#cookie-settings-modal .modal-header {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #23B574;
}
#cookie-settings-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #23B574;
  cursor: pointer;
  transition: color .13s;
}
#cookie-settings-modal .close-modal:hover,
#cookie-settings-modal .close-modal:focus {
  color: #E9287D;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 6px 0;
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: #12243B;
}
.cookie-switch {
  width: 46px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  border-radius: 34px;
  transition: background .23s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #23B574;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform .22s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(24px);
}
.cookie-category .locked {
  color: #E9287D;
  font-size: 1.25rem;
}

@media (max-width: 440px) {
  #cookie-settings-modal .modal-content {
    padding: 16px 6px 12px 6px;
    min-width:220px;
  }
  #cookie-consent-banner {
    padding: 12px 2px 2px 2px;
  }
}

/*****************************
   MISC
*****************************/
::-webkit-scrollbar {
  width: 8px;
  background: #e4e4e4;
}
::-webkit-scrollbar-thumb {
  background: #23B574;
  border-radius: 5px;
}

/* ========== END OF CSS ========== */
