/* ---------------------------------- CSS RESET / NORMALIZATION ---------------------------------- */
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, 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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #FFF;
  color: #262626;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #F6F8F9;
}
a {
  color: #1A2B49;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #FF9900;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
img {
  max-width: 100%;
  display: block;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}

/* ---------------------------------- BRAND FONTS ---------------------------------- */
h1, h2, h3, h4, h5, h6, .brand-tagline, .cta-btn, .main-nav a, .mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
}
h1 {
  font-size: 2.125rem;
  line-height: 1.16;
  margin-bottom: 20px;
  color: #1A2B49;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.22;
  margin-bottom: 16px;
  color: #1A2B49;
}
h3 {
  font-size: 1.125rem;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #1A2B49;
}
.section h2 {
  margin-bottom: 24px;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #262626;
}
.text-section h3 {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 1rem;
  color: #FF9900;
}
.text-section ul li {
  color: #594A1D;
}

/* ---------------------------------- LAYOUT & CONTAINERS ---------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(255, 153, 0, 0.06);
}
/* Remove background/rounding for hero/brand color sections as needed */
.hero-section {
  background: #FFF7E6;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 4px 36px 0 rgba(255,153,0,0.05);
  margin-bottom: 36px;
  padding: 48px 0 44px 0;
  min-height: 300px;
  display: flex;
  align-items: center;
}

/* ---------------------------------- HEADER & NAVIGATION ---------------------------------- */
header {
  background: #F6F8F9;
  box-shadow: 0 1px 12px 0 rgba(26,43,73,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding-top: 0;
  padding-bottom: 0;
  gap: 0;
}
.logo img {
  max-height: 46px;
  padding: 10px 0;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #1A2B49;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
  position: relative;
  letter-spacing: 0.01em;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #FFF0DB;
  color: #FF9900;
}
.cta-btn {
  background: #FF9900;
  color: #FFF;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  margin-left: 20px;
  box-shadow: 0 2px 16px 0 rgba(255, 153, 0, 0.11);
  cursor: pointer;
  outline: none;
  transition: background 0.22s, box-shadow 0.18s, transform 0.16s;
  display: inline-block;
  white-space: nowrap;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFA733;
  color: #1A2B49;
  box-shadow: 0 6px 32px 0 rgba(255, 153, 0, 0.23);
  transform: translateY(-2px) scale(1.017);
}

/* Mobile hamburger menu */
.mobile-menu-toggle {
  display: none;
  background: #FF9900;
  color: #FFF;
  font-size: 2rem;
  padding: 6px 18px;
  border: none;
  border-radius: 14px;
  margin-left: 20px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 31;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFA733;
}
@media (max-width: 1130px) {
  .main-nav {
    gap: 12px;
  }
  .cta-btn {
    margin-left: 10px;
    padding: 10px 22px;
  }
}
@media (max-width: 950px) {
  .main-nav {
    gap: 8px;
    font-size: 0.95rem;
  }
  .cta-btn {
    font-size: 0.95rem;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 2px;
  }
}
@media (max-width: 850px) {
  .cta-btn {
    padding: 9px 14px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ---------------------------------- MOBILE MENU ---------------------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF7E6;
  z-index: 40;
  transform: translateX(100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(0.7,0,0.3,1), opacity 0.26s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #FFF;
  border-radius: 14px;
  border: none;
  color: #1A2B49;
  font-size: 2rem;
  margin: 24px 24px 6px 0;
  padding: 4px 14px;
  cursor: pointer;
  transition: background 0.16s;
  box-shadow: 0 2px 12px 0 rgba(255, 153, 0, 0.10);
  z-index: 46;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FFE2B9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0 0 0;
  align-items: flex-start;
  padding: 0 40px;
}
.mobile-nav a {
  color: #1A2B49;
  font-size: 1.3rem;
  padding: 9px 10px;
  border-radius: 13px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFE2B9;
  color: #FF9900;
}

@media (max-width: 500px) {
  .mobile-nav {
    padding: 0 18px;
  }
  .mobile-menu-close {
    margin-right: 10px;
  }
}

/* ---------------------------------- HERO SECTION ---------------------------------- */
.hero-section .container,
.hero-section .content-wrapper {
  justify-content: center;
}
.hero-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero-section h1 {
  color: #FF9900;
  font-size: 2.25rem;
}
.hero-section p {
  color: #1A2B49;
  font-size: 1.15rem;
}

/* ---------------------------------- FLEXBOX MANDATORY PATTERNS ---------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 4px 16px 0 rgba(255,153,0, 0.06);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 12px 36px 0 rgba(255,153,0,0.16);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border-radius: 18px;
  padding: 20px;
  background: #FFF;
  box-shadow: 0 2px 14px 0 rgba(26,43,73,0.08);
  margin-bottom: 20px;
  max-width: 520px;
  color: #1A2B49;
}
.testimonial-card p {
  color: #1A2B49;
  font-size: 1.05rem;
  margin-bottom: 3px;
}
.testimonial-card strong {
  color: #FF9900;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---------------------------------- UL/LI / ICON STYLES ---------------------------------- */
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 2px;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 13px;
}
ul li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.text-section ul {
  margin-top: 9px;
  margin-bottom: 24px;
}

/* ---------------------------------- MISCELLANEOUS COMPONENTS ---------------------------------- */
.service-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.service-icons img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #FFF7E6;
  box-shadow: 0 2px 8px 0 rgba(255,153,0,0.07);
  padding: 8px;
}
.address-map {
  background: #FFF7E6;
  border-radius: 18px;
  padding: 13px 24px;
  color: #1A2B49;
  font-size: 1rem;
  margin-top: 12px;
  box-shadow: 0 3px 14px 0 rgba(255,153,0,0.03);
  display: inline-block;
}

/* ---------------------------------- FOOTER ---------------------------------- */
footer {
  background: #FFF7E6;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -3px 24px 0 rgba(255,153,0,0.07);
  padding: 20px 0 0 0;
  margin-top: 60px;
}
footer .container {
  padding-bottom: 8px;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-logo img {
  max-width: 62px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #1A2B49;
  font-size: 0.99rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 7px 10px;
  border-radius: 10px;
  transition: background 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #FFE2B9;
  color: #FF9900;
}
.footer-contact {
  color: #594A1D;
  font-size: 0.95rem;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  opacity: 0.88;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin: 0 3px -3px 0;
}
.brand-tagline {
  font-size: 1.07rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #FF9900;
  margin-top: 6px;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  opacity: 0.95;
}
footer {
  font-size: 1rem;
}

/* ---------------------------------- BUTTONS & INTERACTIVES ---------------------------------- */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.17s, transform 0.15s, box-shadow 0.13s;
}
button:active, .cta-btn:active, .mobile-menu-toggle:active {
  transform: translateY(2px) scale(0.99);
}

/* ---------------------------------- COOKIE CONSENT BANNER ---------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: #FFF7E6;
  border-top: 2px solid #FF9900;
  box-shadow: 0 -2px 18px 0 rgba(255,153,0,0.11);
  padding: 24px 12px 21px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cookie-banner p {
  margin-bottom: 0;
  color: #1A2B49;
  font-size: 1rem;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  background: #FF9900;
  color: #FFF;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 9px 22px;
  margin: 0 2px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(255,153,0,0.08);
  transition: background 0.14s, color 0.14s;
}
.cookie-btn.settings {
  background: #FFF;
  color: #FF9900;
  border: 2px solid #FF9900;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFA733;
  color: #1A2B49;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFF7E6;
  color: #FF9900;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.95);
  z-index: 100;
  background: #FFF;
  border-radius: 28px;
  padding: 28px 16px;
  width: 98vw;
  max-width: 396px;
  box-shadow: 0 8px 54px 0 rgba(26,43,73,0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, transform 0.3s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: #FF9900;
  font-size: 1.25rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  padding: 8px 0;
  border-radius: 14px;
  background: #FFF7E6;
}
.cookie-category label {
  flex: 1;
  color: #1A2B49;
  font-size: 1rem;
}
.cookie-category input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: #FF9900;
  border-radius: 5px;
}
.cookie-category input[type='checkbox'][disabled] {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: #FFF7E6;
  color: #FF9900;
  border-radius: 20px;
  border: 1px solid #FF9900;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 7px 15px;
  cursor: pointer;
  margin-right: 2px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #FF9900;
  color: #FFF;
}
@media (max-width: 480px) {
  .cookie-modal {
    max-width: 99vw;
    padding: 18px 6px;
  }
}

/* ---------------------------------- RESPONSIVE DESIGN ---------------------------------- */
@media (max-width:1200px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width:950px) {
  .section {
    padding: 36px 7px;
    border-radius: 18px;
  }
  .card {
    min-width: 162px;
    padding: 20px 10px;
    border-radius: 15px;
  }
}
@media (max-width:768px) {
  .container {
    max-width: 99vw;
    padding: 0 5px;
  }
  .hero-section {
    padding: 32px 0 28px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero-section h1 {
    font-size: 1.45rem;
    margin-bottom: 16px;
  }
  .card-container,
  .content-grid,
  .service-icons {
    flex-direction: column;
    gap: 16px;
  }
  .section {
    margin-bottom: 38px;
    padding: 23px 3px;
    border-radius: 14px;
  }
  .testimonial-card {
    padding: 15px 8px;
    font-size: 0.98rem;
    border-radius: 12px;
    max-width: 99vw;
    margin: 0 0 17px 0;
  }
  footer .content-wrapper {
    gap: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .service-icons img {
    width: 36px;
    height:36px;
    padding: 3px;
    border-radius: 8px;
  }
}
@media (max-width:570px) {
  .footer-nav {
    gap: 8px;
  }
  .footer-logo img {
    max-width: 44px;
  }
  .brand-tagline {
    font-size: 1rem;
  }
}
@media (max-width:410px) {
  .footer-contact {
    flex-direction: column;
    gap: 3px;
    font-size: 0.92rem;
  }
}
@media (max-width:380px) {
  .footer-nav {
    gap: 0px;
    font-size: 0.86rem;
  }
}

/* ---------------------------------- VISUAL MICRO-INTERACTIONS & FOCUS ---------------------------------- */
a, button, .cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
}
a:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible,
.mobile-menu-toggle:focus-visible, .mobile-menu-close:focus-visible {
  outline: 2px solid #FF9900;
  outline-offset: 1px;
}

/* ---------------------------------- UTILITY CLASSES (SPACING, ALIGNMENT) ---------------------------------- */
.mt-24 { margin-top: 24px; }
.mb-32 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-12 { gap: 12px; }
.gap-20 { gap: 20px; }

/* ---------------------------------- PRINT SAFE ---------------------------------- */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer { display: none !important; }
  .section, .container { background: #FFF !important; box-shadow: none !important; }
}
