/* Frosty Idea PROFESSIONAL CORPORATE CSS - by senior CSS developer */

/* ===== CSS RESET & NORMALIZE ===== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body, html {
  width: 100%;
  min-height: 100%;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #22406A;
  background: #F9EEEA;
  margin: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #22406A;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.125rem; }
p, ul, ol, li { font-size: 1rem; margin-bottom: 8px; }
ul, ol { padding-left: 20px; }
li { margin-bottom: 8px; }

img {
  max-width: 100%;
  vertical-align: middle;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* ===== SPACING SECTIONS ===== */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(34,64,106,0.07);
}
/* remove white bg from hero sections for separation */
.hero.section, section.hero {
  background: linear-gradient(96deg, #F9EEEA 80%, #E5ECF3 120%);
  box-shadow: none;
  padding-top: 52px;
  margin-bottom: 40px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1.5px solid #e5ecf3;
  min-height: 70px;
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(34,64,106,0.04);
}
header .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 18px 20px 18px 20px;
  gap: 16px;
  min-height: 72px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
}
.main-nav a {
  color: #22406A;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 0;
  transition: color 0.18s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #7BAF9E;
}

.btn-primary {
  background: #22406A;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 7px;
  padding: 11px 30px;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(34,64,106,0.09);
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.17s, color 0.17s, box-shadow 0.18s, transform 0.14s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #7BAF9E;
  color: #22406A !important;
  box-shadow: 0 4px 18px rgba(123,175,158,0.13);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #22406A;
  font-size: 2rem;
  padding: 7px 13px;
  border-radius: 7px;
  transition: background .15s;
  cursor: pointer;
  margin-left: 10px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E5ECF3;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,64,106,0.93);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.71,-0.2,.41,1.12);
  box-shadow: -8px 0 22px rgba(34,64,106,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 1320;
  border-radius: 7px;
  transition: background .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #7BAF9E33;
}
.mobile-nav {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 32px 32px 32px;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 13px 0;
  font-weight: 600;
  border-radius: 5px;
  width: 100%;
  display: block;
  transition: background .13s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7BAF9E;
  color: #22406A;
}

@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  border-radius: 0;
  box-shadow: none;
  background: linear-gradient(92deg, #F9EEEA 74%, #E5ECF3 120%);
  display: flex;
  align-items: center;
  min-height: 330px;
  margin-bottom: 40px;
  padding: 44px 20px 30px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.19rem;
  margin-bottom: 18px;
  color: #22406A;
  max-width: 620px;
}
.hero .btn-primary {
  font-size: 1.1rem;
  margin-top: 10px;
}

/* ===== FEATURES ===== */
.features {
  background: #fff;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(123,175,158,0.05);
}
.features .content-wrapper {
  gap: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 8px;
}
.feature {
  background: #F9EEEA;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(34,64,106,0.06);
  padding: 32px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 240px;
  flex: 1 1 270px;
  transition: box-shadow .19s, transform .17s;
}
.feature img {
  height: 38px;
  width: 38px;
  margin-bottom: 5px;
  filter: grayscale(8%);
  opacity: 0.92;
}
.feature:hover {
  box-shadow: 0 6px 32px rgba(123,175,158,0.13);
  transform: translateY(-4px) scale(1.025);
}

.theme-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 18px;
}
.theme {
  background: #E5ECF3;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(34,64,106,0.07);
  padding: 24px 20px 18px 20px;
  min-width: 220px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .15s, transform .16s;
}
.theme:hover {
  box-shadow: 0 4px 18px rgba(34,64,106,0.17);
  transform: translateY(-2px) scale(1.015);
}

/* ===== CARDS, LISTS & GRIDS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px rgba(34,64,106,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
  transition: box-shadow .13s, transform .13s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(34,64,106,0.12);
  transform: translateY(-2px) scale(1.01);
}

.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ===== SERVICES ===== */
.services {
  background: #F9EEEA;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(123,175,158,0.07);
  margin-bottom: 60px;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}
.service {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(34,64,106,0.07);
  padding: 28px 20px 22px 20px;
  flex: 1 1 250px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .14s, transform .16s;
}
.service:hover {
  box-shadow: 0 6px 44px rgba(123,175,158,0.13);
  transform: translateY(-3px) scale(1.019);
}
.service-label {
  display: inline-block;
  background: #7BAF9E;
  color: #fff;
  padding: 6px 20px;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 10px;
}
.price-list, .ebooks-list, .video-guides-list, .schedule-calendar {
  background: #E5ECF3;
  padding: 24px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
}
.purchase-cta {
  margin-top: 18px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #E5ECF3;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 4px 22px rgba(34,64,106,0.035);
}
.testimonials .content-wrapper {
  gap: 26px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 30px;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 8px rgba(34,64,106,0.08);
  font-size: 1.1rem;
  max-width: 540px;
  color: #22406A;
  transition: box-shadow .17s, transform .17s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 32px rgba(34,64,106,0.13);
  transform: translateY(-3px) scale(1.012);
}
.testimonial-card b, .testimonial-card strong {
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #7BAF9E;
  font-size: 1rem;
}

/* Ensures high contrast for testimonial/review sections */
.testimonial-card p {
  color: #1a293b;
  margin-bottom: 4px;
  font-size: 1.15rem;
}

/* ===== FOOTER ===== */
footer {
  background: #22406A;
  color: #fff;
  padding: 38px 0 18px 0;
  margin-top: 70px;
}
.footer-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid #7BAF9E44;
}
.footer-main .logo img {
  height: 40px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #E5ECF3;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
  text-decoration: none;
  font-size: 0.96rem;
  transition: color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #7BAF9E;
  outline: none;
}
footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #e7f5f0;
  font-size: 0.98rem;
}
footer .contact-info img {
  height: 16px;
  width: 16px;
  margin-right: 6px;
}
.footer-bottom {
  color: #E5ECF3;
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 19px;
  text-align: center;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
}
.social-links a {
  display: flex;
  align-items: center;
  border-radius: 7px;
  background: #fff;
  padding: 7px;
  transition: background .14s, transform .13s;
  box-shadow: 0 2px 7px rgba(34,64,106,0.09);
}
.social-links a:hover {
  background: #7BAF9E;
  transform: scale(1.09);
}
.social-links img {
  height: 26px;
  width: 26px;
  display: block;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(123,175,158,0.08);
  margin-bottom: 60px;
}
.contact-info a {
  color: #22406A;
  text-decoration: underline;
  transition: color .13s;
}
.contact-info a:hover {
  color: #7BAF9E;
}
.map-embed {
  background: #E5ECF3;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(34,64,106,0.03);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* ===== OTHER GLOBALS ===== */
a {
  color: #22406A;
  transition: color .13s;
  text-underline-offset: 2.5px;
}
a:hover, a:focus {
  color: #7BAF9E;
}
strong {
  font-weight: 600;
  color: #22406A;
}
::selection {
  background: #7BAF9E33;
}

/* ===== MOBILE FIRST & RESPONSIVE ===== */
@media (max-width: 1200px) {
  .footer-main {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .features .feature-grid,
  .services-list,
  .theme-grid {
    gap: 16px;
  }
  .feature, .service, .theme {
    min-width: 180px;
    flex: 1 1 160px;
    padding: 18px 10px 18px 14px;
  }
  .footer-main { flex-direction: column; gap: 20px; }
}

@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 11px;
  }
  .section, section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .hero {
    min-height: 180px;
    padding: 32px 10px 24px 10px;
  }
  .hero h1 { font-size: 1.7rem; }
  .feature-grid, .services-list, .theme-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature, .service, .theme {
    min-width: 80px;
    padding: 14px 8px 14px 12px;
    font-size: 0.98rem;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-main {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .social-links img {
    height: 21px;
    width: 21px;
  }
  .testimonial-card {
    padding: 13px 11px;
    font-size: 1rem;
    max-width: 99vw;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1rem; }
  .btn-primary {
    padding: 9px 18px;
    font-size: 0.95rem;
  }
}

/* ===== TRANSITIONS, HOVERS, MICRO-INTERACTIONS ===== */
button, .btn-primary {
  transition: background .14s, color .13s, box-shadow .16s, transform .13s;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #7BAF9E;
  outline-offset: 2px;
}

/* ===== COOKIE CONSENT BANNER & MODAL ===== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #22406A;
  color: #fff;
  padding: 22px 16px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1600;
  box-shadow: 0 -2px 18px rgba(34,64,106,0.08);
  gap: 14px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .24s, transform .24s;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-consent-text {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}
.cookie-consent-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}
.cookie-btn {
  border-radius: 7px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 11px 22px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1.5px 7px rgba(123,175,158,0.07);
  transition: background .12s, color .12s, box-shadow .13s, transform .11s;
}
.cookie-btn.accept {
  background: #7BAF9E;
  color: #22406A;
}
.cookie-btn.accept:hover {
  background: #38a37e;
  color: #fff;
  transform: translateY(-2px) scale(1.035);
}
.cookie-btn.reject {
  background: #fff;
  color: #22406A;
  border: 1.5px solid #22406A;
}
.cookie-btn.reject:hover {
  background: #F9EEEA;
  color: #7BAF9E;
  border-color: #7BAF9E;
}
.cookie-btn.settings {
  background: #22406A;
  color: #fff;
  border: 1.5px solid #7BAF9E;
}
.cookie-btn.settings:hover {
  background: #7BAF9E;
  color: #22406A;
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1700;
  left: 0;top: 0;right: 0;bottom: 0;
  background: rgba(34,64,106,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #22406A;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(34,64,106,0.17);
  min-width: 330px;
  max-width: 98vw;
  padding: 36px 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fadeinCookieModal .34s cubic-bezier(.69,0,.78,1.08);
}
@keyframes fadeinCookieModal { from { transform: scale(0.97) translateY(40px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.cookie-modal h2 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #E5ECF3;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .18s;
}
.cookie-toggle:checked {
  background: #7BAF9E;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  top: 3px; left: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 6px rgba(0,0,0,0.07);
  transition: left .17s;
}
.cookie-toggle:checked:before {
  left: 20px;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 15px;
  background: none;
  border: none;
  color: #7BAF9E;
  font-size: 1.7rem;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E5ECF3;
  color: #22406A !important;
}

@media (max-width: 480px) {
  .cookie-modal {
    min-width: 95vw;
    padding: 18px 4vw 16px 6vw;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 11px;
  background: #F9EEEA;
}
::-webkit-scrollbar-thumb {
  background: #E5ECF3;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #B0DBD0;
}

/* ===== MISC COMPONENTS ===== */
.next-steps ul {
  list-style: disc inside;
  margin-bottom: 12px;
}
.schedule-calendar ul,
.ebooks-list ul,
.video-guides-list ul,
.content-previews ul {
  list-style: disc inside;
  margin: 13px 0 0 0;
}

/* Utility: spacing for vertical sections */
.section + .section, section + section {
  margin-top: 28px;
}

/* Ensure minimal margin between all content cards/sections */
.section > *,
.features > *,
.services > *,
.testimonials > *,
.card-container > *,
.card-grid > *,
.feature-grid > *,
.theme-grid > * {
  margin-bottom: 20px;
}
.section:last-child,
.features > *:last-child,
.services > *:last-child,
.testimonials > *:last-child,
.card-container > *:last-child,
.card-grid > *:last-child,
.feature-grid > *:last-child,
.theme-grid > *:last-child {
  margin-bottom: 0;
}

/* Accessibility: focus-visible style */
:focus-visible {
  outline: 2.5px solid #7BAF9E;
  outline-offset: 1.5px;
}

/* Hide default outline for mouse users */
:focus {
  outline: none;
}

/* BONUS: Card & button micro-interaction scale */
.card:active, .service:active, .feature:active, .btn-primary:active {
  transform: scale(0.97);
}

/* ===== END Frosty Idea PROFESSIONAL CORPORATE CSS ===== */