/* ========================================================================
   Radiance Business Solutions – style.css
   Nature Organic Theme: Earth tones, organic shapes, natural textures, green accents
   Flexbox ONLY – No CSS Grid/Columns – Responsive – Mobile Burger & Cookie Consent
   ======================================================================== */

/* ========== CSS RESET & BASE TYPOGRAPHY ========== */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2D2C26;
  background: #F7F6F2;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #376140;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #223669;
}
ul, ol {
  margin-left: 1.5em;
  padding-left: 0.5em;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
  border-radius: 8px;
}

/* ========== CUSTOM FONTS ========== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #223669;
}
h1 { font-size: 2.25rem; line-height: 1.1; margin-bottom: 16px; }
h2 { font-size: 1.75rem; line-height: 1.2; margin-bottom: 14px; }
h3 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 12px; }
p, li {
  font-size: 1rem;
  color: #2D2C26;
  margin-bottom: 1em;
  font-family: 'Roboto', Arial, sans-serif;
}
strong, b { font-weight: 600; }


/* ========== THEME COLORS ========== */
:root {
  --primary: #223669;
  --secondary: #D8E6F1;
  --accent: #FDB83C;
  --nature-green: #376140;
  --nature-sage: #B3C4A2;
  --earth-brown: #7E6752;
  --background: #F7F6F2;
  --white: #fff;
  --text-dark: #2D2C26;
  --text-light: #fff;
}


/* ========== LAYOUT STRUCTURE ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--background);
  border-radius: 32px;
  box-shadow: 0 6px 32px 0 rgba(71, 93, 56, 0.04);
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: #fff;
  box-shadow: 0 1px 6px 0 rgba(55,97,64,0.05);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--nature-green);
  border-radius: 8px;
  padding: 6px 12px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
nav a.cta-button {
  background: var(--accent);
  color: #223669;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 999px;
  box-shadow: 0 4px 20px 0 rgba(253,184,60,0.09);
  margin-left: 8px;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}
nav a.cta-button:hover, nav a.cta-button:focus {
  background: #ffc041;
  color: #084a1e;
  transform: translateY(-2px) scale(1.04);
}
nav a:hover, nav a:focus {
  background: var(--nature-sage);
  color: var(--primary);
}
.mobile-menu-toggle {
  display: none;
  background: var(--nature-green);
  color: var(--white);
  font-size: 2rem;
  border: none;
  border-radius: 12px;
  padding: 7px 13px 5px 13px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  align-items: center;
  margin-left: 18px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent);
}

/* ----- MOBILE NAVIGATION ----- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(55, 97, 64, 0.93);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.4s cubic-bezier(0.6,0,0.4,1), transform 0.4s cubic-bezier(0.6,0,0.4,1);
}
.mobile-menu.open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  margin: 24px 18px 24px 0;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(71,93,56,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, color 0.22s, transform 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD563;
  color: #084a1e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  width: 100%;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  padding: 12px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 0 16px 16px 0;
  width: calc(100% - 36px);
  transition: background 0.19s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(253,184,60,0.18);
  color: #FDB83C;
}

@media (max-width: 1024px) {
  nav {
    gap: 16px;
  }
  header img {
    height: 32px;
  }
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========== HERO & FEATURE SECTIONS ========== */
.hero {
  margin-bottom: 0;
  padding-top: 46px;
  padding-bottom: 46px;
  background: linear-gradient(135deg, #B3C4A2 0%, #F7F6F2 100%);
  border-radius: 0 0 40px 40px;
  box-shadow: 0 6px 32px 0 rgba(55,97,64,0.08);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.hero p {
  color: #4C513A;
  font-size: 1.15rem;
  margin-bottom: 28px;
  margin-top: 0;
}
.hero .cta-button {
  margin-top: 12px;
}

@media (max-width: 700px) {
  .hero {
    padding: 30px 0 30px 0;
    border-radius: 0 0 24px 24px;
  }
  .hero h1 {
    font-size: 1.48rem;
  }
}

/* ---- Features row, grids ---- */
.features {
  background: #EDF2E0;
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 36px 0;
  box-shadow: 0 4px 24px 0 rgba(102, 158, 68, 0.07);
}
.features .content-wrapper {
  gap: 28px;
}
.feature-grid, .service-cards, .service-overview-grid, .training-modes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature, .service-card, .service-overview, .team-profile {
  background: #fff;
  border-radius: 22px;
  padding: 26px 22px 22px 22px;
  min-width: 240px;
  flex: 1 1 254px;
  box-shadow: 0 2px 10px 0 rgba(71,93,56,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
}
.feature img, .team-profile img, .service-overview img {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}
.feature h3, .service-card h3, .service-overview h3 {
  color: var(--nature-green);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.feature p, .service-card p, .service-overview p {
  color: #3C412D;
  font-size: 1rem;
  margin-bottom: 0;
}

.service-card a, .service-overview a {
  color: var(--nature-green);
  font-weight: 500;
  padding: 8px 0;
  margin-top: 12px;
  border-bottom: 2px solid var(--accent);
  transition: color 0.18s, border-bottom 0.23s;
  display: inline-block;
}
.service-card a:hover, .service-overview a:hover,
.service-card a:focus, .service-overview a:focus {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 16px;
}

/* Benefit highlight lists */
.benefit-highlights ul, .benefits-list ul, .growth-journey ul, .benefits ul, .case-studies ul, .outcomes ul, .mission-vision ul, .usps-values ul {
  list-style: disc inside;
  padding-left: 16px;
  color: #3C412D;
  margin: 8px 0 0 0;
}

.benefit-highlights ul li, .benefits-list ul li, .growth-journey ul li, .benefits ul li, .case-studies ul li, .outcomes ul li, .mission-vision ul li, .usps-values ul li {
  margin-bottom: 6px;
}

.analysis-methods ul li, .features ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.analysis-methods img, .features img {
  width: 32px;
  height: 32px;
}

/* ========== CARDS & CARD-CONTAINER ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(55,97,64,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 18px;
  min-width: 220px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(55,97,64,0.17);
  transform: translateY(-4px) scale(1.01);
}

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

.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: 800px) {
  .feature-grid, .service-cards, .service-overview-grid, .team-profiles, .card-container, .content-grid, .training-modes-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card, .feature, .service-card, .service-overview, .team-profile {
    min-width: unset;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ========== SECTION SPACING ========== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--background);
  border-radius: 32px;
  box-shadow: 0 6px 32px 0 rgba(55,97,64,0.06);
}
section:last-child {
  margin-bottom: 0;
}

/* ========== CTA SECTION/BUTTONS ========== */
.cta {
  background: linear-gradient(90deg, #EDECDE 0%, #BAE0AE 100%);
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(119,172,103,0.12);
}
.cta .cta-button {
  margin-top: 16px;
}
.cta-button, .cookie-accept-btn, .cookie-settings-btn, .cookie-reject-btn {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.06rem;
  border: none;
  border-radius: 999px;
  padding: 14px 38px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(253,184,60,0.12);
  transition: background 0.2s, color 0.18s, transform 0.13s;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus,
.cookie-accept-btn:hover, .cookie-accept-btn:focus {
  background: #FFD563;
  color: #084a1e;
  transform: translateY(-2px) scale(1.03);
}
.cookie-reject-btn {
  background: #fff;
  color: var(--nature-green);
  border: 1.5px solid var(--nature-green);
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #E9F5E1;
  color: #223669;
}
.cookie-settings-btn {
  background: var(--nature-green);
  color: #fff;
  border: none;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--primary);
  color: #FDB83C;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: #E8F0EA;
  border-radius: 32px;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  color: #234127;
  box-shadow: 0 2px 13px 0 rgba(55,97,64,0.09);
  border-radius: 18px;
  padding: 28px 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 240px;
  flex: 1 1 260px;
  transition: box-shadow 0.17s, transform 0.11s;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #234127;
}
.testimonial-card strong {
  color: var(--nature-green);
  font-weight: 700;
  margin-left: 18px;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 22px 0 rgba(104,172,103,0.12);
  transform: scale(1.015);
}
@media (max-width: 800px) {
  .testimonial-cards {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: unset;
    padding: 17px 13px;
  }
}

/* ========== LISTS & STEPS ========== */
ol {
  list-style: decimal inside;
  margin-bottom: 1.2em;
  color: #3A4B27;
  font-size: 1rem;
}
ol li {
  margin-bottom: 8px;
}

/* ========== FOOTER ========== */
footer {
  background: #223669;
  color: #FFF;
  padding: 32px 0 22px 0;
  margin-top: 48px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-grid > div, .footer-grid nav {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer img {
  height: 34px;
}
footer p, footer a {
  color: #FFF;
  font-size: 0.98rem;
}
footer a {
  text-decoration: underline;
  transition: color 0.18s;
}
footer a:hover, footer a:focus {
  color: #FDB83C;
}
footer nav {
  gap: 12px;
}
footer .footer-grid p {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 700px) {
  .footer-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===== Responsive Layout for Small Devices ===== */
@media (max-width: 600px) {
  h1 {font-size: 1.25rem;}
  h2 {font-size: 1rem;}
  h3 {font-size: 0.97rem;}
  .container {padding: 0 6px;}
  section {padding: 24px 5px; border-radius: 14px;}
  footer {padding: 18px 0;}
}

/* ========== LEGAL, THANKS, ABOUT, PROCESS PAGE SECTIONS ========== */
.legal, .thanks, .about-company, .mission-vision, .usps-values, .team, .process, .contact {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 3px 16px 0 rgba(71,93,56,0.09);
  margin-bottom: 60px;
  padding: 32px 18px;
}
.thanks p, .about-company p, .mission-vision p, .process p, .contact p, .legal p{
  font-size: 1.08rem;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 120;
  background: #273E1D;
  color: #fff;
  box-shadow: 0 -2px 22px 0 rgba(44,67,22,0.17);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px 20px 20px;
  align-items: flex-start;
  border-radius: 26px 26px 0 0;
  animation: slideInCookie 0.7s cubic-bezier(0.45,0,0.55,1) 1;
}
@keyframes slideInCookie {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

/* ========== COOKIE PREFERENCES MODAL ========== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,54,105, 0.14);
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.33,1,0.68,1);
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: var(--text-dark);
  border-radius: 24px;
  max-width: 430px;
  box-shadow: 0 8px 42px 0 rgba(34,54,105,0.17);
  padding: 32px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h3 {
  font-size: 1.15rem;
  color: var(--nature-green);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--nature-green);
  border-radius: 6px;
  margin-right: 4px;
  border: 2px solid #B3C4A2;
}
.cookie-category input[type="checkbox"]:disabled {
  accent-color: #bbbbbb;
}
.cookie-modal-btn-group {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.cookie-modal .cookie-settings-btn {
  min-width: 110px;
}
.cookie-modal .cookie-reject-btn {
  min-width: 110px;
}

@media (max-width: 600px) {
  .cookie-modal {
    max-width: 94vw;
    padding: 20px 8px 16px 8px;
  }
}

/* === Micro-interaction animation for buttons === */
.cta-button, .cookie-accept-btn, .cookie-settings-btn, .cookie-reject-btn {
  transition: box-shadow 0.13s, background 0.13s, transform 0.11s;
}
.cta-button:active, .cookie-accept-btn:active, .cookie-settings-btn:active, .cookie-reject-btn:active {
  box-shadow: 0 1px 5px 0 rgba(55,97,64,.17);
  transform: scale(.98);
}

/* ========== X-Accessibility ========== */
:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

/* ========== HIDE/SHOW UTILS ========== */
.hide {
  display: none!important;
}

/* ========== MISC ========== */
::-webkit-scrollbar {
  width: 12px;
  background: #E8F0EA;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: #B3C4A2;
  border-radius: 12px;
}

/* ========== ORGANIC SHAPES DECORATION (OPTIONAL) ========== */
.organic-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.13;
  filter: blur(1px);
  pointer-events: none;
}

/* ========== SCROLL ANIMATION FOR SECTIONS ========== */
@media (prefers-reduced-motion: no-preference) {
section, .feature, .card, .testimonial-card, .about-company, .mission-vision, .usps-values, .contact, .thanks, .legal
  { animation: slideFade 0.6s cubic-bezier(.83,-0.04,.29,1.26) both; }
}
@keyframes slideFade {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========== END OF NATURE ORGANIC STYLESHEET ========== */
