/* -----------------------------------
   CSS RESET & BASE STYLES
----------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #25405A;
  background: #FFF;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #F6E9DD;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #B35413;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E47833;
  text-decoration: underline;
}
ul, ol {
  margin: 0 0 1em 1.2em;
}
li + li {
  margin-top: 0.25em;
}
strong {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
}

/* -----------------------------------
   TYPOGRAPHY
----------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', 'Times New Roman', serif;
  font-weight: 400;
  color: #25405A;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2.05rem;
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.text-section p, .content-wrapper p, .testimonial-card p, .service-item p {
  font-size: 1.07rem;
  margin-bottom: 14px;
  color: #25405A;
}
.slogan {
  font-size: 1.21rem;
  color: #B35413;
  font-family: 'DM Serif Display', serif;
  margin-top: 10px;
  font-style: italic;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.25rem;
  }
}

/* -----------------------------------
   BUTTONS & LINKS
----------------------------------- */
.cta-btn, .cta-btn:visited {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #B35413;
  color: #fff !important;
  border: none;
  border-radius: 30px;
  padding: 14px 32px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 4px 16px 0 rgba(229,120,51,0.12);
  transition: background 0.22s, box-shadow 0.22s, transform 0.14s;
  text-decoration: none;
  margin-top: 14px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #E47833;
  box-shadow: 0 6px 20px 0 rgba(229,120,51,0.22);
  transform: translateY(-2px) scale(1.03);
  color: #FFF;
}
button, [type="button"], [type="submit"] {
  font-family: inherit;
  border: none;
  border-radius: 24px;
  background: #25405A;
  color: #fff;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.12s;
  box-shadow: 0 2px 8px 0 rgba(37,64,90,0.10);
}
button:hover, button:focus, [type="button"]:hover, [type="submit"]:hover {
  background: #B35413;
  transform: scale(1.03);
}

/* -----------------------------------
   HEADER & NAVIGATION
----------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(229,120,51,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  gap: 0;
}
header img {
  height: 52px;
  width: auto;
  border-radius: 12px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-left: 24px;
  align-items: center;
}
.main-nav a {
  color: #25405A;
  font-size: 1.02rem;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  transition: color 0.18s, border-bottom 0.18s;
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B35413;
}
.main-nav a.active {
  border-bottom: 2.5px solid #B35413;
}
.mobile-menu-toggle {
  display: none;
  padding: 10px 18px;
  background: #F6E9DD;
  color: #B35413;
  font-size: 2.2rem;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(37,64,90,0.10);
  margin-left: 12px;
  z-index: 1100;
  border: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #E47833;
  color: #fff;
}

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

/* -----------------------------------
   MOBILE MENU
----------------------------------- */
.mobile-menu {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 40px rgba(37,64,90,0.13);
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.56,.15,.39,1.13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #F6E9DD;
  color: #B35413;
  padding: 12px 24px;
  border-radius: 36px;
  margin: 28px 18px 8px 12px;
  align-self: flex-end;
  font-size: 1.8rem;
  border: none;
  box-shadow: 0 2px 10px rgba(37,64,90,0.08);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover {
  background: #B35413;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  height: 100%;
  margin: 18px 0 0 32px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Open Sans', sans-serif;
  color: #25405A;
  margin-bottom: 8px;
  padding: 11px 0;
  border-radius: 10px;
  background: none;
  transition: background 0.22s, color 0.18s;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6E9DD;
  color: #B35413;
}

@media (min-width: 991px) {
  .mobile-menu { display: none !important; }
}

/* -----------------------------------
   SECTIONS & FLEXBOX LAYOUTS
----------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 767px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 36px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  position: relative;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(229,120,51,0.12);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(229,120,51,0.16);
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(37,64,90, 0.10);
  padding: 20px;
  margin-bottom: 20px;
  max-width: 650px;
  position: relative;
  border-left: 7px solid #E47833;
}
.testimonial-card p {
  color: #25405A;
  font-size: 1.02rem;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-card .client {
  color: #B35413;
  font-size: 0.98rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(37,64,90,0.08);
  padding: 20px 18px 18px 18px;
  min-width: 240px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #F6E9DD;
  box-shadow: 0 2px 8px rgba(229,120,51,0.07);
  padding: 5px;
}
.feature-item h3 {
  font-size: 1.17rem;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.99rem;
  margin-bottom: 0;
}
.feature-item:hover {
  box-shadow: 0 6px 26px 0 rgba(229,120,51,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* Special grids for feature/service steps */
.feature-grid, .service-grid, .step-by-step {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 15px 0;
}
.service-item, .step {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(37,64,90,0.12);
  padding: 28px 18px 20px 20px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.13s;
}
.service-item img, .step img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #F6E9DD;
  box-shadow: 0 2px 8px rgba(229,120,51,0.07);
  padding: 5px;
}
.service-item:hover, .step:hover {
  box-shadow: 0 7px 23px 0 rgba(229,120,51,0.09);
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 951px) {
  .feature-grid, .service-grid, .step-by-step {
    flex-direction: column;
    gap: 20px;
  }
}

/* -----------------------------------
   HERO SECTION & CTA SECTION
----------------------------------- */
.hero-section {
  background: #fff9f3;
  padding: 48px 0 56px 0;
  margin-bottom: 42px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 26px 0 rgba(229,120,51,0.09);
}
.hero-section h1 {
  color: #B35413;
}
.hero-section .cta-btn {
  margin-top: 18px;
}
.cta-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #25405A;
  color: #fff;
  border-radius: 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 22px 0 rgba(37,64,90,0.11);
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 18px;
}
.cta-section .cta-btn {
  background: #E47833;
  font-size: 1.15rem;
}
.cta-section .cta-btn:hover {
  background: #B35413;
}

/* -----------------------------------
   SERVICES, USP-LIST & STEPS
----------------------------------- */
.services-list, .usp-list, .step-by-step ol {
  list-style: none;
  padding: 0;
  margin: 20px 0 20px 0;
}
.services-list li, .usp-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
  background: #F6E9DD;
  color: #25405A;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.services-list li img, .usp-list li img {
  width: 21px;
  height: 21px;
}
ol {
  counter-reset: steps;
}
ol li {
  counter-increment: steps;
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 1.02rem;
}
ol li::before {
  content: counter(steps) '. ';
  position: absolute;
  left: 0;
  color: #B35413;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.09em;
}

/* -----------------------------------
   ABOUT, PORTFOLIO, CONTACT FORMS
----------------------------------- */
.text-section {
  margin-bottom: 16px;
}
.contact-info {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(229,120,51,0.09);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px dashed #B35413;
  border-radius: 14px;
  color: #B35413;
  font-size: 1.01rem;
  padding: 26px 14px;
  margin: 18px 0 12px 0;
}

/* -----------------------------------
   FOOTER
----------------------------------- */
footer {
  background: #25405A;
  color: #fff;
  font-size: 1.01rem;
  width: 100%;
  margin-top: 50px;
  padding: 38px 0 30px 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 34px 0 rgba(37,64,90,0.07);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #fff;
  transition: color 0.16s, text-decoration 0.13s;
  opacity: 0.95;
  text-decoration: underline solid rgba(179,84,19,0.18) 2px;
  font-size: 1.01rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E47833;
  text-decoration-thickness: 3px;
}
.footer-contact {
  color: #fff;
  font-size: 0.99rem;
  line-height: 1.6;
}
.footer-contact a {
  color: #E47833;
  font-weight: 600;
}
.footer-contact a:hover {
  color: #F6E9DD;
}

@media (max-width: 768px) {
  footer {
    border-radius: 16px 16px 0 0;
    font-size: 0.98rem;
    padding: 32px 0 24px 0;
  }
  .footer-nav {
    gap: 20px;
    margin-bottom: 8px;
  }
}

/* -----------------------------------
   COOKIE CONSENT BANNER
----------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff9f3;
  color: #25405A;
  border-top: 3px solid #E47833;
  box-shadow: 0 -6px 30px 0 rgba(229,120,51,0.08);
  padding: 24px 16px 24px 16px;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1.06rem;
  transition: transform 0.32s cubic-bezier(.56,.15,.39,1.13);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner__text {
  flex: 1 1 240px;
  margin-bottom: 0;
}
.cookie-banner__actions {
  display: flex;
  gap: 17px;
}
.cookie-btn {
  background: #B35413;
  color: #fff;
  padding: 10px 22px;
  border-radius: 20px;
  border: none;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #E47833;
  color: #fff;
}
.cookie-btn.cookie-settings {
  background: #F6E9DD;
  color: #B35413;
  border: 2px solid #B35413;
  font-weight: 500;
  transition: background 0.13s, color 0.13s;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #E47833;
  color: #fff;
  border: 2px solid #E47833;
}
@media (max-width: 610px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.98rem;
    padding: 18px 8px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(37,64,90,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 28px 32px;
  min-width: 295px;
  max-width: 95vw;
  box-shadow: 0 8px 40px rgba(37,64,90,0.20);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  color: #E47833;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-weight: 500;
  color: #25405A;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  margin-left: 10px !important;
}
.cookie-switch input { display: none; }
.cookie-slider {
  position: absolute;
  cursor: pointer;
  background: #F6E9DD;
  border-radius: 24px;
  top: 0; left: 0;
  right: 0; bottom: 0;
  transition: background 0.19s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #B35413;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 5px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(37,64,90,0.08);
  transition: transform 0.19s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  color: #B35413;
  border: none;
  font-size: 1.6rem;
  padding: 8px;
  border-radius: 16px;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #F6E9DD;
  color: #E47833;
}
@media (max-width: 490px) {
  .cookie-modal {
    padding: 20px 8px 16px 8px;
    font-size: 0.98rem;
  }
}

/* -----------------------------------
   MISC: WHITE SPACE, BREATHING ROOM
----------------------------------- */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 767px) {
  section, .section {
    padding: 24px 6px;
    margin-bottom: 34px;
  }
}
.card, .feature-item, .testimonial-card, .service-item,
.step {
  margin-bottom: 20px;
}
.feature-grid, .service-grid, .card-container,
.content-grid, .step-by-step {
  gap: 20px;
}

/* -----------------------------------
   FORMS (if present in later pages)
----------------------------------- */
input, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid #E47833;
  border-radius: 14px;
  padding: 11px;
  margin-bottom: 18px;
  background: #fff;
  color: #25405A;
  width: 100%;
  transition: border 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus {
  border: 2px solid #25405A;
  box-shadow: 0 2px 8px 0 rgba(37,64,90,0.09);
}
label {
  font-size: 1.05rem;
  color: #25405A;
  margin-bottom: 5px;
  display: block;
}

/* -----------------------------------
   RESPONSIVE MEDIA QUERIES
----------------------------------- */
@media (max-width: 991px) {
  .container {
    max-width: 97vw;
    padding: 0 5vw;
  }
  header .container { gap: 0; }
}
@media (max-width: 600px) {
  .footer-nav, .card-container, .feature-grid, .content-grid, .service-grid, .step-by-step {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .card, .feature-item, .service-item, .testimonial-card {
    min-width: 0 !important;
    width: 100%;
  }
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.08rem; }
  .cta-section { padding: 22px 6px; }
  .hero-section { padding: 24px 0 28px 0; }
}

/* -----------------------------------
   MICRO-INTERACTIONS/TRANSITIONS
----------------------------------- */
.cta-btn, button, a, .feature-item, .service-item, .testimonial-card, .card {
  transition: background 0.21s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}

/* -----------------------------------
   PRINT STYLES
----------------------------------- */
@media print {
  header, nav, .main-nav, .mobile-menu, .cta-section, .cookie-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
  body {
    background: #fff !important;
  }
  section, .section, .container, .content-wrapper{
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* -----------------------------------
   FONT FACE FALLBACKS (Google Fonts assumed loaded)
----------------------------------- */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  src: local('DM Serif Display'), local('DMSerifDisplay-Regular');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans-Regular');
}