/* --- 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F5F5;
  color: #244159;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #E9B44C;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4,0,0.2,1);
}
a:hover, a:focus {
  color: #ff139b;
}
ul, ol {
  list-style: none;
  margin-left: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
  padding: 0;
}


/* --- VARIABLE FALLBACKS (SAFER BROWSERS) --- */
:root {
  --color-primary: #244159;
  --color-secondary: #F5F5F5;
  --color-accent: #E9B44C;
  --color-danger: #ff139b;
  --color-success: #32d178;
  --color-light: #ffffff;
  --color-dark: #191A23;
  --color-bg: #F5F5F5;
  --shadow-main: 0 4px 16px 0 rgba(36,65,89,0.11); 
  --shadow-strong: 0 6px 20px 0 rgba(233,180,76,0.21);
  --radius-s: 12px;
  --radius-m: 18px;
  --radius-l: 28px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}


/* --- TYPOGRAPHY & HEADINGS --- */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.16;
  color: #244159;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  color: #E9B44C;
  text-shadow: 0 2px 8px rgba(36,65,89,0.12);
}
h2 {
  font-size: 2rem;
  color: #244159;
  border-left: 6px solid #E9B44C;
  padding-left: 14px;
  margin-bottom: 14px;
}
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #244159;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 500;
  color: #244159;
}
p, li, span {
  font-size: 1rem;
  color: #244159;
}
strong {
  font-weight: 700;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-main);
}


/* --- HEADER & NAV --- */
header {
  width: 100%;
  background: #244159;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(36,65,89,0.09);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  text-shadow: 0 1px 6px rgba(36,65,89,0.12);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #E9B44C;
}
.cta.primary {
  background: #E9B44C;
  color: #244159;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.09rem;
  padding: 11px 26px;
  border-radius: var(--radius-m);
  box-shadow: 0 2px 14px 0 rgba(233,180,76,0.17);
  letter-spacing: 1px;
  margin-left: 16px;
  transition: background 0.16s, color 0.16s, box-shadow 0.2s;
  outline: none;
  border: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #ff139b;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(36,65,89,0.12);
  outline: none;
}

.mobile-menu-toggle {
  background: #E9B44C;
  color: #244159;
  font-size: 2rem;
  border-radius: var(--radius-s);
  padding: 7px 14px;
  margin-left: 8px;
  transition: background 0.2s;
  display: none;
  z-index: 120;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ff139b;
  color: #fff;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #244159;
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.44s cubic-bezier(.9,.07,.59,.97);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 6px 0 28px 0 rgba(36,65,89,.18);
  opacity: 1;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #E9B44C;
  align-self: flex-end;
  margin: 20px 28px 10px 0;
  padding: 8px 16px;
  line-height: 1;
  border-radius: 12px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ff139b;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 22px;
  align-items: flex-start;
  margin-top: 20px;
  padding-left: 28px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  padding: 10px 0;
  transition: color 0.19s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E9B44C;
  background: rgba(233,180,76,0.14);
  outline: none;
}

/* Hide main nav on mobile */
@media (max-width: 992px) {
  .main-nav,
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- MAIN SECTIONS & FLEX PATTERNS --- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-main);
  overflow: hidden;
  transition: box-shadow .22s;
}
.card:hover {
  box-shadow: 0 10px 30px 0 rgba(36,65,89,0.17), 0 2px 12px #E9B44C22;
}
.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;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: #F2F8FB;
  border-radius: var(--radius-m);
  box-shadow: 0 4px 18px 0 rgba(36,65,89,0.09);
  margin-bottom: 24px;
  min-width: 230px;
  max-width: 520px;
}
.testimonial-card p {
  font-size: 1.08rem;
  font-weight: 700;
  color: #244159;
}
.testimonial-card span {
  color: #244159;
  font-size: 1rem;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 22px 18px 22px;
  border-radius: var(--radius-m);
  background: #fff;
  min-width: 220px;
  box-shadow: var(--shadow-main);
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform .12s;
}
.feature-item:hover {
  box-shadow: 0 6px 24px 0 #E9B44C22;
  transform: translateY(-4px) scale(1.01);
}
.feature-item img {
  width: 40px;
  height: 40px;
}

/* --- SPECIAL LAYOUTS FOR SERVICES & PRICES --- */
.feature-grid, .service-list, .price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item, .price-item {
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius-s);
  box-shadow: 0 3px 16px 0 #E9B44C11;
  padding: 20px 20px 16px 20px;
  transition: box-shadow 0.17s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-item:hover, .price-item:hover {
  box-shadow: 0 9px 22px 0 rgba(233,180,76,0.13);
}
.price-item span {
  font-size: 1.16rem;
  font-family: var(--font-display);
  color: #244159;
  font-weight: 700;
  margin-top: 5px;
}

/* FAQ & NOTE */
.faq-item {
  margin-bottom: 16px;
  padding: 18px 18px 10px 18px;
  background: #fff;
  border-left: 5px solid #E9B44C;
  border-radius: var(--radius-m);
  box-shadow: 0 3px 12px 0 #E9B44C18;
}
.faq-item h3 {
  margin-bottom: 6px;
}
.note {
  background: #E9B44C10;
  color: #244159;
  padding: 16px 18px;
  border-radius: var(--radius-m);
  font-size: 1.02rem;
  margin-top: 12px;
  margin-bottom: 6px;
}

/* --- BUTTONS & INTERACTIONS --- */
.cta, .cta.primary, .cookie-btn {
  font-family: var(--font-display);
  font-weight: 700;
  background: #E9B44C;
  color: #244159;
  padding: 11px 26px;
  border-radius: var(--radius-m);
  box-shadow: 0 2px 14px 0 rgba(233,180,76,0.09);
  font-size: 1.06rem;
  margin-top: 8px;
  margin-bottom: 4px;
  display: inline-block;
  transition: background 0.14s, color 0.14s, box-shadow 0.24s;
  border: none;
  outline: none;
}
.cta:hover, .cta:focus, .cookie-btn:hover, .cookie-btn:focus {
  background: #ff139b;
  color: #fff;
  box-shadow: 0 6px 22px 0 #E9B44C11;
}
.cookie-btn.settings {
  background: #fff;
  color: #244159;
  border: 2px solid #E9B44C;
  margin-left: 12px;
}
.cookie-btn.settings:hover {
  background: #E9B44C;
  color: #fff;
}
.cookie-btn.reject {
  background: #244159;
  color: #fff;
  margin-left: 10px;
  border: 2px solid #244159;
}
.cookie-btn.reject:hover {
  background: #ff139b;
  color: #fff;
}


/* --- FOOTER --- */
footer {
  background: #244159;
  color: #fff;
  padding: 36px 0 18px 0;
  box-shadow: 0 -3px 12px 0 #24415919;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #E9B44C;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-cta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  font-size: 0.97rem;
  color: #fff;
  opacity: 0.93;
  align-items: flex-start;
}
.footer-info img {
  margin-right: 7px;
  vertical-align: middle;
  height: 18px;
  width: auto;
  opacity: .87;
}

/* --- TEAM PLACEHOLDER (ABOUT PAGE) --- */
.team-placeholder {
  width: 100%;
  height: 120px;
  background: repeating-linear-gradient(-45deg,#E9B44C,#E9B44C 8px, #E9B44C22 12px, #E9B44C22 24px);
  border-radius: var(--radius-l);
  margin-top: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 17px 0 #E9B44C11;
}

/* --- UL+LI PADDING (CONSISTENT SPACING) --- */
ul {
  margin-top: 8px;
  margin-bottom: 8px;
}
ul li {
  margin-bottom: 6px;
  padding-left: 0.5em;
  position: relative;
  font-size: 1.01rem;
  line-height: 1.55;
}
ul li strong {
  font-size: 1.06rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
  .feature-grid, .service-list, .price-list, .footer-info {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav,
  .footer-cta {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-info {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  header .container {
    flex-wrap: wrap;
    min-height: 62px;
    gap: 9px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .feature-item, .service-item, .price-item, .card, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.18rem;
    padding-left: 10px;
  }
  h3 {
    font-size: 1.06rem;
  }
  .team-placeholder {
    height: 78px;
  }
  .section {
    padding: 24px 2px !important;
    margin-bottom: 30px !important;
  }
}


/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99998;
  background: #fffbe7;
  box-shadow: 0 -2px 24px 0 #24415925;
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 0.99rem;
  animation: cookieBannerFadeIn .6s cubic-bezier(.33,1.1,.24,1.01);
}
@keyframes cookieBannerFadeIn {
  0% {
    opacity: 0; transform: translateY(48px);
  }
  100% {
    opacity: 1; transform: translateY(0);
  }
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 4px;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 100001;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(36,65,89,0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn .3s;
}
@keyframes cookieModalIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #244159;
  border-radius: var(--radius-m);
  box-shadow: 0 10px 40px 0 #24415944;
  min-width: 310px;
  max-width: 95vw;
  padding: 30px 24px 24px 24px;
  animation: cookieModalPop .3s cubic-bezier(.39,1.42,.35,1.14);
  display: flex;
  flex-direction: column;
}
@keyframes cookieModalPop {
  0% { transform: scale(.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #E9B44C;
  margin-bottom: 14px;
  font-size: 1.14rem;
  font-weight: 800;
  font-family: var(--font-display);
  border-left: 4px solid #E9B44C;
  padding-left: 10px;
}
.cookie-category {
  font-size: 0.99rem;
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-weight: 600;
  color: #244159;
}
.cookie-slider, .cookie-toggle {
  width: 36px;
  height: 20px;
  border-radius: 11px;
  display: inline-block;
  background: #E9B44C;
  position: relative;
  margin-right: 8px;
  transition: background 0.18s;
}
.cookie-slider input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-slider span {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s;
}
.cookie-slider input[type="checkbox"]:checked + span {
  left: 19px;
}
.cookie-category .description {
  font-size: 0.92rem;
  color: #244159dd;
  margin-left: 7px;
}
.cookie-modal .cookie-btn-group {
  margin-top: 18px;
  gap: 12px;
  display: flex;
  flex-wrap: wrap;
}

/* --- Animation for Button Focus (for Accessibility) --- */
button:focus, .cta:focus, .cookie-btn:focus {
  outline: 2px solid #E9B44C;
  outline-offset: 1.5px;
}

/* --- SCROLLBAR --- */
body::-webkit-scrollbar {
  width: 10px;
  background: #F5F5F5;
}
body::-webkit-scrollbar-thumb {
  background: #E9B44C44;
  border-radius: 10px;
}

/* --- Misc: Ensure No Content Overlap --- */
.card, .feature-item, .testimonial-card, .service-item, .price-item, .faq-item {
  margin-bottom: 20px !important;
}
section .container {
  padding-top: 0;
  padding-bottom: 0;
}

/* --- Highlight Vibrant Energetic Details --- */
.testimonial-card {
  border: 2.5px solid #E9B44C;
  background: #fbf6ed !important;
  box-shadow: 0 8px 32px 0 #24415913;
}
.testimonial-card span:last-child {
  color: #ff139b;
  letter-spacing: 2px;
  font-size: 1.06rem;
  font-weight: 900;
  text-shadow: 0 1px 4px #E9B44C35;
}

.feature-item, .service-item, .price-item {
  border-left: 6px solid #ff139b;
  background: #fff;
  box-shadow: 0 8px 22px 0 #E9B44C12;
}
.feature-item:hover, .service-item:hover, .price-item:hover {
  border-left: 6px solid #E9B44C;
  background: #FFFCF8;
  box-shadow: 0 8px 32px 0 #E9B44C22,0 3px 10px #E9B44C13;
}

.cta.primary, .cta, .cookie-btn {
  box-shadow: 0 2px 14px 0 #ff139b12;
}

.cta.primary:active, .cta:active, .cookie-btn:active {
  background: #244159;
  color: #fff;
}

/* --- High Vibrant Energetic Accents --- */
h1, .hero-vibrant {
  text-shadow: 0 2px 18px #ff139b17;
}
h1 {
  color: #ff139b;
  background: linear-gradient(90deg, #E9B44C 28%, #ff139b 92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}


/* --- Utility Classes for Vibrant Badges (optional)--- */
.badge {
  display: inline-block;
  background: #ff139b;
  color: #fff;
  padding: 2px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-family: var(--font-display);
  margin-left: 8px;
  vertical-align: middle;
}

/* --- ENSURE MINIMUM SPACING BETWEEN BLOCK ELEMENTS --- */
section, .section {
  margin-bottom: 60px !important;
}
.card-container, .feature-grid, .service-list, .price-list {
  gap: 24px !important;
}
.content-grid, .text-image-section {
  gap: 20px !important;
}

/* --- ACCESSIBLE HOVERS FOR NAV (BOLD/UNDERLINE) --- */
.main-nav a:focus, .footer-nav a:focus {
  background: #E9B44C33;
  color: #244159;
  outline: none;
}

/* --- Z-INDEX LAYERS --- */
header { z-index: 100; }
.mobile-menu { z-index: 9999; }
.cookie-banner { z-index: 99998; }
.cookie-modal-overlay { z-index: 100001; }


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