/* --- CSS RESET & NORMALIZE --- */
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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.6; background: #F2F2F2; color: #1A2835; min-height: 100vh; font-family: 'Open Sans', Arial, sans-serif; }
img { max-width: 100%; display: block; height: auto; }
input, button, select, textarea { font-family: inherit; font-size: inherit; }
button { border: none; background: none; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }

/* --- CUSTOM FONTS --- */
@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');
h1, h2, h3, .cta-btn, .secondary-btn { font-family: 'Montserrat', 'Open Sans', Arial, sans-serif; }

/* --- BRAND COLORS --- */
:root {
  --primary: #1A2835;
  --secondary: #E94F37;
  --accent: #F2F2F2;
  --info-blue: #2ec4b6; /* playful accent */
  --extra-yellow: #ffe156; /* playful accent */
  --cta-gradient: #E94F37;
  --text-on-dark: #fff;
  --text-on-light: #1A2835;
  --card-shadow: 0 4px 18px 0 rgba(26,40,53,0.08);
  --card-radius: 18px;
  --footer-bg: #1A2835;
  --footer-text: #fff;
}

/* --- CONTAINER SYSTEM & GENERAL SPACING --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* ---- HEADER & MAIN NAVIGATION ---- */
header {
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 76px;
  position: relative;
}
.logo img {
  height: 38px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.main-nav a {
  color: var(--text-on-dark);
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.16s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--secondary);
  color: #fff;
  padding: 12px 26px;
  border-radius: 28px;
  font-size: 1.08rem;
  font-weight: bold;
  margin-left: 30px;
  box-shadow: 0 2px 14px 1px rgba(233, 79, 55, 0.15);
  transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--info-blue);
  color: var(--primary);
  box-shadow: 0 8px 24px 2px rgba(46, 196, 182, 0.14);
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
}
.secondary-btn {
  background: var(--extra-yellow);
  color: var(--primary);
  border-radius: 20px;
  padding: 9px 22px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(255, 225, 86, 0.09);
  margin-top: 10px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
}
.secondary-btn:hover, .secondary-btn:focus {
  background: var(--info-blue);
  color: #fff;
  box-shadow: 0 5px 16px 1px rgba(46, 196, 182, 0.12);
  transform: translateY(-2px) rotate(1.2deg) scale(1.03);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--extra-yellow);
  background: none;
  padding: 8px 10px;
  margin-left: 16px;
  border-radius: 10px;
  z-index: 51;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--info-blue);
  color: #fff;
}
@media (max-width: 1020px) {
  .main-nav { gap: 18px; }
  .cta-btn { margin-left: 12px; }
}
@media (max-width: 920px) {
  .main-nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* ---- MOBILE SLIDE MENU ---- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: #fff;
  z-index: 200;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(.9,-0.41,.21,1.25), opacity 0.2s;
  overflow-y: auto;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.33s cubic-bezier(.9,-0.41,.21,1.25), opacity 0.18s;
}
.mobile-menu-close {
  background: none;
  color: var(--extra-yellow);
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 16px 24px 0 0;
  border-radius: 8px;
  padding: 5px 10px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin: 40px 0 0 40px;
  width: 90vw;
  font-size: 1.24rem;
}
.mobile-nav a {
  color: #fff;
  font-weight: bold;
  padding: 9px 8px;
  margin-bottom: 2px;
  border-radius: 7px;
  display: inline-block;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--extra-yellow);
}
@media (max-width: 420px) {
  .mobile-nav {
    margin-left: 16px;
    font-size: 1.1rem;
  }
}

/* ---- HERO SECTIONS ---- */
.hero {
  background: linear-gradient(94deg, var(--secondary) 0%, var(--info-blue) 100%);
  color: #fff;
  padding: 70px 0 40px 0;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 24px 2px rgba(233, 79, 55, 0.10);
  overflow-x: hidden;
}
.hero .container { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.hero .subtitle {
  font-size: 1.24rem;
  color: var(--extra-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 640px) {
  .hero { padding: 38px 0 22px 0; min-height: 190px; }
  .hero h1 { font-size: 1.41rem; }
  .hero .subtitle { font-size: 1.01rem; }
}

/* ---- FEATURES / SERVICE / CARD GRIDS ---- */
.features-grid, .services-list, .service-cards, .testimonials-wrapper, .testimonials-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.features-grid {
  justify-content: flex-start;
  align-items: stretch;
}
.feature, .service-card, .trainer-profile, .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: var(--card-radius);
  margin-bottom: 20px;
  padding: 24px 22px;
  min-width: 220px;
  max-width: 345px;
  box-shadow: var(--card-shadow);
  position: relative;
  transition: box-shadow 0.18s, transform 0.13s;
  border: 2.5px solid var(--accent);
}
.feature:hover, .service-card:hover, .trainer-profile:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px 3px rgba(233, 79, 55, 0.10), 0 1px 0 #fff;
  border-color: var(--info-blue);
  transform: translateY(-4px) scale(1.04) rotate(-0.7deg);
}
.feature img, .service-card img, .trainer-profile img {
  width: 40px;
  height: 40px;
}
.feature h3, .service-card h3, .trainer-profile h3 {
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 5px;
}
.service-card .price, .service-card .price, .service-card .price {
  font-size: 1.13rem;
  color: var(--info-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

.services-list, .service-cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  flex: 1 1 238px;
  min-width: 238px;
  max-width: 350px;
  background: #fff;
  margin-bottom: 20px;
}
@media (max-width: 950px) {
  .features-grid, .services-list, .service-cards, .testimonials-grid, .team-grid {
    gap: 16px;
  }
  .service-card {
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .features-grid, .services-list, .service-cards, .testimonials-grid, .team-grid {
    flex-direction: column;
    gap: 12px;
  }
  .service-card, .feature {
    min-width: 90vw;
    max-width: 98vw;
    padding: 18px 14px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: var(--text-on-light);
  border-radius: var(--card-radius);
  box-shadow: 0 2px 10px 0 rgba(46, 196, 182, 0.09);
  min-width: 220px; max-width: 460px;
  font-size: 1rem;
  border-left: 6px solid var(--info-blue);
  border-right: 6px solid var(--extra-yellow);
}
.testimonial-author {
  color: var(--secondary);
  font-weight: bold;
  font-size: .98rem;
  letter-spacing: 0.01em;
}
.ratings-summary {
  font-size: 1.09rem;
  font-weight: 700;
  color: var(--info-blue);
  margin-top: 16px;
}

/* --- LISTS (Features/Stats/Steps) --- */
.features-list, .steps-list, .highlights-list, .benefits-list, .activity-list, .faq-list, .certifications-list, .blog-posts-list {
  margin-left: 1.3em;
  margin-bottom: 10px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.features-list li::before, .highlights-list li::before, .benefits-list li::before, .activity-list li::before {
  content: '★';
  color: var(--extra-yellow);
  margin-right: 7px;
  font-size: 1.13em;
}
.steps-list { counter-reset: step; gap: 12px; }
.steps-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 500;
}
.steps-list li::before {
  counter-increment: step;
  content: counter(step) '.';
  color: var(--secondary);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.03em;
}

.numbers-stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 28px 0 0 0;
}
.numbers-stats-grid > div {
  background: var(--info-blue);
  color: #fff;
  border-radius: 12px;
  padding: 16px 26px;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(46, 196, 182, 0.10);
  min-width: 120px;
  text-align: center;
}

/* --- TAGS, BADGES & SMALL BUTTONS --- */
.tags, .tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.tags span, .tag {
  background: var(--extra-yellow);
  color: var(--primary);
  padding: 4px 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.94rem;
  border-radius: 16px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background 0.16s, color 0.16s;
}
.tags span:hover, .tag:hover {
  background: var(--info-blue);
  color: #fff;
}

/* ---- BLOG POSTS ---- */
.blog-posts-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.06rem;
  margin-bottom: 10px;
}
.blog-posts-list a {
  color: var(--primary);
  font-weight: bold;
  border-bottom: 1.5px dashed var(--secondary);
  transition: color .17s, border-bottom .17s;
}
.blog-posts-list a:hover, .blog-posts-list a:focus {
  color: var(--info-blue);
  border-bottom: 2px solid var(--info-blue);
}

/* ---- BLOCKQUOTES ---- */
blockquote {
  border-left: 4px solid var(--secondary);
  background: #f7fafc;
  color: var(--primary);
  padding: 11px 22px;
  border-radius: 10px;
  font-style: italic;
  margin-top: 10px;
}

/* ---- FORMS, INPUTS, CONFIRMATIONS ---- */
.confirmation-text {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 18px;
  background: var(--extra-yellow);
  padding: 10px 20px;
  border-radius: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: center;
}

/* ---- FOOTER ---- */
footer {
  width: 100%;
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 0 0 0 0;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 34px;
  padding: 36px 0 14px 0;
}
.logo-footer img {
  height: 42px;
}
.footer-nav, .footer-utility {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 18px;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social a img {
  width: 29px;
  filter: brightness(0) invert(1);
  transition: filter 0.18s, transform .15s;
}
.footer-social a:hover img {
  filter: brightness(0.84) sepia(1) saturate(3) hue-rotate(-10deg);
  transform: scale(1.13) rotate(-10deg);
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.98rem;
  color: var(--extra-yellow);
  margin: 14px 0 0 0;
}
@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 0 9px 0;
  }
  .footer-copy {
    margin-top: 18px;
  }
}

/* --- TYPOGRAPHY SCALE --- */
h1 { font-size: 2.4rem; font-weight: 900; color: var(--primary); margin-bottom: 10px; letter-spacing: .03em; }
h2 { font-size: 1.5rem; font-weight: bold; margin: 10px 0 12px 0; color: var(--secondary); font-family: 'Montserrat', Arial, sans-serif; }
h3 { font-size: 1.14rem; font-weight: bold; color: var(--info-blue); margin-bottom: 3px; }
p, li, ul, ol { font-size: 1rem; }
strong { font-weight: 700; }
@media (max-width: 640px) {
  h1 { font-size: 1.36rem; }
  h2 { font-size: 1.13rem; } 
}

/* --- MISCELLANEOUS / LAYOUT UTILS --- */
.contact-info p {
  font-size: 1rem;
  color: var(--primary);
}
.success-stories, .ratings-summary {
  margin-top: 20px;
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.block-section {
  background: var(--accent);
  padding: 22px 0;
  border-radius: 15px;
  margin-bottom: 30px;
}

/* --- FLEX UTILITIES (MANDATORY) --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- RESPONSIVE & MOBILE LAYOUTS --- */
@media (max-width: 768px) {
  .footer-wrapper, .content-grid, .numbers-stats-grid { flex-direction: column; gap: 17px; }
  .main-nav { display: none; }
}

/* --- HOVER/ACTIVE & MICRO-INTERACTIONS --- */
a, button, .cta-btn, .secondary-btn, .mobile-menu-toggle, .mobile-menu-close, .tags span, .tag {
  transition: background 0.15s, color 0.17s, box-shadow .16s, transform .12s, border .13s;
}
.card, .feature, .service-card, .trainer-profile, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.15s, border-color 0.17s;
}
.card:active, .feature:active, .service-card:active, .trainer-profile:active, .testimonial-card:active {
  transform: scale(0.97) rotate(-0.8deg);
  border-color: var(--secondary);
}

/* --- SCROLLBAR (Playful Colorful) --- */
body::-webkit-scrollbar {
  width: 10px;
  background: var(--accent);
}
body::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}

/* --- PLAYFUL ANIMATIONS --- */
@keyframes card-jump {
  0% { transform: scale(1) rotate(0deg); }
  40% { transform: scale(1.06) rotate(-1deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.card:hover, .feature:hover, .service-card:hover, .trainer-profile:hover, .testimonial-card:hover {
  animation: card-jump 0.35s cubic-bezier(.53,1.78,.53,1) 1;
}
@keyframes playful-pop {
  0% { opacity: 0; transform: scale(0.93) rotate(-1deg); }
  90% { opacity: 1; }
  100% { opacity: 1; transform: scale(1) rotate(0.5deg); }
}
.section {
  animation: playful-pop 0.7s cubic-bezier(.6,1.7,.75,1.1) both;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 8px;
  right: 8px;
  z-index: 600;
  background: #fff;
  color: var(--primary);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -4px 24px 2px rgba(26,40,53,.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 23px 17px 23px;
  gap: 20px;
  font-size: 1rem;
  min-width: 95vw;
  max-width: 520px;
  margin: 0 auto;
  transition: bottom .33s cubic-bezier(.7,1.5,.3,1.08), opacity .22s;
}
.cookie-banner.hide {
  opacity: 0;
  bottom: -110px;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex; flex-wrap: wrap; gap: 11px; align-items: center;
}
.cookie-banner button {
  border-radius: 13px;
  padding: 8px 15px;
  cursor: pointer;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  background: var(--secondary);
  transition: background .18s, color .18s, transform .13s;
  font-size: 1rem;
  margin: 0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--info-blue);
  color: var(--extra-yellow);
  transform: scale(1.05);
}
.cookie-banner .cookie-settings-btn {
  background: var(--extra-yellow);
  color: var(--primary);
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: var(--info-blue);
  color: #fff;
}
@media (max-width: 520px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 12px; min-width: 99vw; }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  z-index: 700;
  background: rgba(26,40,53,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 20px;
  box-shadow: 0 3px 32px 5px rgba(26,40,53,0.15);
  padding: 36px 40px 26px 40px;
  min-width: 308px;
  max-width: 98vw;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: playful-pop 0.48s cubic-bezier(.6,1.7,.75,1.1) both;
}
.cookie-modal h3 { font-size: 1.18rem; color: var(--secondary); margin-bottom: 6px; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-cat {
  display: flex; align-items: center; gap: 12px;
}
.cookie-cat label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-cat input[type='checkbox'] {
  appearance: none;
  width: 21px;
  height: 21px;
  border: 1.5px solid var(--info-blue);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: border .13s;
}
.cookie-cat input[type='checkbox']:checked {
  background: var(--info-blue);
  border: 2px solid var(--secondary);
}
.cookie-cat input[type='checkbox']:checked:after {
  content: '';
  display: block;
  position: absolute;
  left: 6px; top: 3px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(43deg);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.5rem;
  color: var(--secondary);
  background: none;
  border: none;
  border-radius: 7px;
  padding: 4px 10px;
  cursor: pointer;
  transition: background .14s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--extra-yellow);
  color: var(--primary);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-actions button {
  border-radius: 13px;
  padding: 7px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  background: var(--secondary);
  color: #fff;
  transition: background .15s, color .12s, transform .13s;
}
.cookie-modal .cookie-modal-actions button.cookie-modal-save {
  background: var(--info-blue);
  color: #fff;
}
.cookie-modal .cookie-modal-actions button:hover, .cookie-modal .cookie-modal-actions button:focus {
  background: var(--extra-yellow);
  color: var(--primary);
  transform: scale(1.07);
}

/* --- HIDE/SHOW FOR JAVASCRIPT --- */
.hide { display: none !important; }

/* ---- OVERWRITE AUTOFILL (CHROME) ---- */
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
  box-shadow: 0 0 0 100px #fff inset !important;
  -webkit-text-fill-color: var(--primary);
}

/* ---- ENSURE NO OVERLAPPING, MIN SPACING ---- */
.section, .content-wrapper, .features-grid, .card-container, .testimonials-wrapper, .numbers-stats-grid, .team-grid {
  gap: 20px;
}
.features-grid > *, .services-list > *, .service-cards > *, .testimonials-wrapper > *, .testimonials-grid > *, .team-grid > * {
  margin-bottom: 20px;
}

/* ---- MAKE SURE NO CSS GRID, NO ABSOLUTE FOR CONTENT, FLEX-ONLY LAYOUT ---- */
/* This file uses only display: flex and related flex properties for all alignment */

/* ---- END OF STYLE.CSS ---- */
