/* === CSS 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, 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 {
  scroll-behavior: smooth;
}
body {
  background: #F3F3F3;
  color: #20274A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #20274A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #FFD65E;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin: 16px 0 16px 16px;
  padding-left: 24px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: #20274A;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.18;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h4, h5 {
  font-size: 1.06rem;
  font-weight: 600;
}
p, address {
  margin-bottom: 16px;
  color: #20274A;
}
strong {
  font-weight: 700;
}
blockquote {
  border-left: 4px solid #FFD65E;
  padding-left: 16px;
  color: #20274A;
  margin: 16px 0 16px 0;
  font-style: italic;
  font-size: 1.125rem;
}


/* === BRAND COLORS === */
:root {
  --primary: #20274A;
  --secondary: #FFD65E;
  --accent: #F3F3F3;
  --contrast: #151933;
  --electric-blue: #2846ec;
  --magenta: #E44B92;
  --electric-green: #37F789;
  --bold-font: 'Oswald', Arial, sans-serif;
  --body-font: 'Roboto', Arial, sans-serif;
}


/* === LAYOUT ELEMENTS === */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.text-section {
  background: #F3F3F3;
  border-radius: 24px;
  box-shadow: 0 4px 28px 0 rgba(32,39,74,0.08);
  padding: 32px 24px;
  margin-bottom: 60px;
  gap: 16px;
  position: relative;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .container {
    padding: 0 8px;
  }
  .section, .text-section {
    padding: 24px 4px;
  }
}


/* === HEADER === */
header {
  width: 100%;
  background: #20274A;
  box-shadow: 0 2px 16px 0 rgba(32,39,74,0.09);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 20px;
  min-height: 76px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #FFD65E;
  font-family: var(--bold-font);
  font-size: 1.08rem;
  letter-spacing: 0.3px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 8px;
  transition: background 0.15s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: #FFD65E;
  color: #20274A;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 10px;
}

.button.primary {
  font-family: var(--bold-font);
  background: linear-gradient(90deg, #FFD65E 56%, #E44B92 100%);
  color: #20274A;
  font-weight: 900;
  font-size: 1.10rem;
  padding: 13px 32px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 16px 0 rgba(228,75,146,0.08);
  letter-spacing: 0.5px;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  cursor: pointer;
  margin-left: 20px;
}
.button.primary:hover,
.button.primary:focus {
  background: linear-gradient(90deg, #E44B92 0%, #FFD65E 100%);
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(228,75,146,0.15);
  transform: translateY(-2px) scale(1.025);
}
.button {
  display: inline-block;
  text-align: center;
  border: none;
  font-family: var(--bold-font);
  font-weight: 700;
  font-size: 1em;
  border-radius: 18px;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
  text-transform: uppercase;
}

/* Hide mobile burger on desktop */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 991px) {
  header nav,
  header .button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 23px;
    right: 20px;
    z-index: 3002;
    background: #FFD65E;
    color: #20274A;
    border: none;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px 0 rgba(228,75,146,0.07);
    cursor: pointer;
    transition: background 0.13s, color 0.16s;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: #E44B92;
    color: #fff;
  }
}


/* === HERO SECTION === */
.hero {
  width: 100%;
  min-height: 350px;
  background: linear-gradient(99deg, #FFD65E 16%, #2846EC 61%, #E44B92 96%);
  color: #20274A;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  box-shadow: 0 6px 28px 0 rgba(40,70,236,0.18);
  z-index: 2;
}
.hero .container {
  padding: 46px 20px 46px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero .content-wrapper {
  max-width: 700px;
  gap: 18px;
}
.hero .subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.23rem;
  margin-bottom: 8px;
  color: #20274A;
}
.hero h1, .hero h2 {
  color: #20274A;
}
.hero .button.primary {
  margin-top: 8px;
}

@media (max-width: 640px) {
  .hero {
    min-height: 200px;
    margin-bottom: 38px;
  }
  .hero .container {
    padding: 28px 2px 28px 2px;
  }
  .hero .content-wrapper {
    max-width: 99vw;
    gap: 12px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .subtitle {
    font-size: 1.01rem;
  }
}


/* === FLEX GRIDS === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px 22px 20px;
  box-shadow: 0 4px 20px 0 rgba(32,39,74,0.10);
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 270px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.14s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 6px;
  filter: drop-shadow(0 4px 16px #FFD65E33);
}
.feature-item h3 {
  font-size: 1.12rem;
  margin-bottom: 2px;
  letter-spacing: 0.3px;
  color: #2846EC;
  font-family: var(--bold-font);
}
.feature-item p, .feature-item span {
  font-size: 1rem;
}
.feature-item .service-price {
  color: #E44B92;
  background: #FFE9F4;
  border-radius: 14px;
  padding: 4px 13px;
  font-weight: 700;
  margin-top: 5px;
  font-family: var(--bold-font);
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px 0 rgba(228,75,146,0.14);
  transform: translateY(-2px) scale(1.018);
}

.unique-approach, .founder-story, .brand-mission, .editorial-highlights, .team-philosophy {
  background: #F3F3F3;
  border-radius: 18px;
  padding: 20px 20px 12px 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 14px 0 rgba(32,39,74,0.05);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 38px;
}
.team-member {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 4px 22px 0 rgba(32,39,74,0.11);
  padding: 24px 18px 18px 18px;
  min-width: 200px;
  max-width: 320px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  gap: 7px;
  transition: box-shadow 0.13s, transform 0.16s;
}
.team-member img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px #FFD65E22);
  margin-bottom: 3px;
}
.team-member h3 {
  font-size: 1.14rem;
  letter-spacing: 0.2px;
  margin-bottom: 5px;
}
.team-member:hover {
  box-shadow: 0 7px 38px 0 rgba(228,75,146,0.11);
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 800px) {
  .feature-grid,
  .team-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item,
  .team-member {
    max-width: 99vw;
    width: 100%;
  }
}

/* === TESTIMONIALS === */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(32,39,74,0.09);
  border-left: 7px solid #2846EC;
  transition: box-shadow 0.16s, border-color 0.14s;
  position: relative;
  z-index: 1;
}
.testimonial-card strong {
  color: #E44B92;
  font-family: var(--bold-font);
}
.testimonial-card p {
  margin-bottom: 0;
  color: #20274A;
  font-size: 1.05rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 34px 0 rgba(40,70,236,0.20);
  border-color: #FFD65E;
}


/* === CTA SECTION === */
.cta {
  background: linear-gradient(99deg, #FFD65E 16%, #E44B92 96%);
  width: 100%;
  text-align: center;
  color: #20274A;
  border-radius: 25px;
  box-shadow: 0 2px 16px 0 rgba(228,75,146,0.09);
  margin-bottom: 60px;
}
.cta .container {
  padding: 32px 10px;
}
.cta .content-wrapper {
  align-items: center;
  gap: 18px;
}
.cta p {
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.cta .button.primary {
  margin-left: 0;
}


/* === FOOTER === */
footer {
  width: 100%;
  background: #20274A;
  color: #FFD65E;
  padding: 0;
  margin-top: 32px;
  font-size: 1.01em;
  border-radius: 0;
  box-shadow: 0 -2px 16px 0 rgba(32,39,74,0.09);
  z-index: 2;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 0;
  border-top: 2px solid #FFD65E11;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #FFD65E;
  text-transform: uppercase;
  font-size: 0.96rem;
  letter-spacing: .19px;
  transition: color 0.15s;
  padding: 2px 6px;
  border-radius: 6px;
}
footer nav a:hover,
footer nav a:focus {
  color: #E44B92;
  background: #fff3;
}
.brand-credits {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-credits img {
  width: 26px;
  height: 26px;
}
.brand-credits span {
  color: #FFD65E;
  font-weight: 600;
  font-size: 1.05em;
}
@media (max-width: 700px) {
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  .brand-credits {
    margin-top: 6px;
  }
}


/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #20274A;
  color: #FFD65E;
  z-index: 4200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 22px 10px 19px 10px;
  box-shadow: 0 -2px 18px 0 rgba(32,39,74,0.22);
  font-size: 1.07em;
  animation: cookieSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 1;
}
@keyframes cookieSlideIn {
  0% { transform: translateY(110%); opacity: 0; }
  80% { transform: translateY(-10%); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  font-family: var(--bold-font);
  border: none;
  background: #FFD65E;
  color: #20274A;
  font-weight: 700;
  border-radius: 18px;
  padding: 10px 26px;
  margin: 0 4px;
  font-size: 1.01em;
  cursor: pointer;
  box-shadow: 0 1px 7px 0 rgba(228,75,146,0.06);
  transition: background 0.14s, color 0.17s, box-shadow 0.17s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #E44B92;
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(228,75,146,0.14);
}
.cookie-banner .cookie-settings-btn {
  background: #E44B92;
  color: #fff;
}
.cookie-banner .cookie-settings-btn:hover { background: #FFD65E; color: #20274A; }

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%) scale(1);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 48px 0 rgba(32,39,74,0.16);
  padding: 36px 24px;
  min-width: 320px;
  max-width: 96vw;
  z-index: 4500;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalSlideIn 0.35s cubic-bezier(0.68, -0.58, 0.36, 1.65) 1;
}
@keyframes cookieModalSlideIn {
  0% { transform: translateX(-50%) scale(0.65); opacity: 0; }
  80% { transform: translateX(-50%) scale(1.05); opacity: 1; }
  100% { transform: translateX(-50%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.45rem;
  color: #20274A;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-family: var(--body-font);
}
.cookie-modal .cookie-category {
  margin: 10px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 9px;
}
.cookie-modal button {
  min-width: 110px;
}
.cookie-modal .cookie-essential {
  font-weight: 700;
  color: #2846EC;
}
.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 27px;
  background: none;
  color: #E44B92;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
}

@media (max-width: 500px) {
  .cookie-modal {
    padding: 20px 8px;
    min-width: 0;
  }
  .cookie-banner {
    font-size: 0.92em;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}


/* === MOBILE MENU === */
.mobile-menu {
  display: none;
  background: rgba(32,39,74, 0.98);
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 98vw;
  height: 100vh;
  z-index: 3003;
  box-shadow: -4px 0 24px 0 rgba(40,70,236,0.18);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(105%);
  transition: transform .38s cubic-bezier(.61,0,.46,1), opacity .18s;
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 23px 26px 0 0;
  background: #FFD65E;
  color: #20274A;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2em;
  cursor: pointer;
  transition: background 0.17s, color 0.18s;
  box-shadow: 0 1px 10px 0 rgba(228,75,146,0.06);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E44B92;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 38px 0 0 30px;
}
.mobile-nav a {
  color: #FFD65E;
  font-family: var(--bold-font);
  font-size: 1.14em;
  letter-spacing: 0.18px;
  padding: 13px 5px 13px 0;
  border-radius: 9px;
  transition: background 0.15s, color 0.14s, padding 0.14s;
  display: block;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E44B92;
  background: #fff2;
  padding-left: 13px;
}
@media (max-width: 420px) {
  .mobile-menu {
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
 }
  .mobile-nav {
    margin-left: 12px;
  }
}


/* === ANIMATIONS & INTERACTIONS === */
.button, .feature-item, .team-member, .testimonial-card, .cta, .cookie-banner, .cookie-modal {
  transition-timing-function: cubic-bezier(0.30,0.8,0.27,1.0);
}
button, .button {
  transition-duration: 0.19s;
}

/* === SPACING CLASSES === */
.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;
}


/* === UTILITY, FORMS & ACCESSIBILITY === */
:focus-visible {
  outline: 2px solid #2846EC;
  outline-offset: 1px;
}
.button:active {
  opacity: 0.90;
}

address {
  font-style: normal;
  margin-bottom: 16px;
  color: #20274A;
}

input, textarea, select {
  font-family: var(--body-font);
  font-size: 1em;
  color: #20274A;
  border-radius: 9px;
  border: 1.5px solid #CED0DE;
  padding: 12px;
  margin-bottom: 18px;
  outline: none;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #E44B92;
}


/* === MISC === */
::-webkit-scrollbar {
  width: 8px;
  background: #E6E9F4;
}
::-webkit-scrollbar-thumb {
  background: #FFD65E;
  border-radius: 8px;
}

hr {
  border: none;
  height: 1.5px;
  background: #CED0DE;
  margin: 25px 0;
}

/* Hide elements visually but keep them accessible to screen readers */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap; border: 0;
}


/* === VIBRANT ENERGETIC ACCENTS === */
.feature-item, .team-member, .card, .testimonial-card {
  border-top: 4px solid #FFD65E;
}
.feature-item:hover, .team-member:hover, .card:hover {
  border-top: 4px solid #E44B92;
}
h1, h2, h3 {
  text-transform: uppercase;
}

@media (max-width: 650px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.06rem; }
}

/* === ELECTRIC COLOR DECORATIVE DOTS (optional, for energetic feel) === */
.hero:after {
  content: '';
  position: absolute;
  bottom: 22px; right: 24px;
  width: 35px; height: 35px;
  background: #E44B92;
  border-radius: 50%;
  box-shadow: 0 0 28px 16px #FFD65E77, 0 0 12px 2px #2846ecAA;
  opacity: 0.33;
  z-index: 1;
}
@media (max-width: 600px) {
  .hero:after {
    display: none;
  }
}

/* =========== END =========== */
