/* === CSS RESET & NORMALIZE === */
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;
}
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F6F6F2;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #044B77;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #b4692f;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #044B77;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #394E5D;
  margin-bottom: 12px;
  line-height: 1.7;
}
strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

/* === SPACING & LAYOUT === */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  margin-bottom: 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(141, 98, 27, 0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 700px) {
  section {
    border-radius: 12px;
    padding: 24px 8px;
    margin-bottom: 32px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffbe5;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(141, 98, 27, 0.10);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus {
  box-shadow: 0 4px 18px rgba(141, 98, 27, 0.16);
  transform: translateY(-2px) scale(1.02);
}
@media (max-width: 700px) {
  .card {
    padding: 20px 12px;
  }
}

.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;
    align-items: flex-start;
  }
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 22px;
  background: #FFF8F1;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(141, 98, 27, 0.10);
  min-width: 260px;
  max-width: 360px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.testimonial-card p {
  color: #222;
}
.testimonial-card span {
  font-size: 0.97em;
  color: #394E5D;
}
@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card { max-width: 100%; }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffbe5;
  border-radius: 15px;
  padding: 22px 18px;
  box-shadow: 0 2px 10px rgba(221,151,56,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 230px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}
.feature-item img {
  height: 38px; width: 38px;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 4px 18px rgba(191,151,86,0.14);
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 900px) {
  .feature-grid { flex-direction: column; gap: 16px; }
  .feature-item { min-width: 0; }
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.about-item {
  background: #fffbe5;
  border-radius: 14px;
  padding: 24px 18px;
  flex: 1 1 220px;
  min-width: 230px;
  box-shadow: 0 2px 10px rgba(141,98,27,0.07);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 900px) {
  .about-grid { flex-direction: column; gap: 14px; }
}

/* Service-list & Package-pricing */
.service-list, .price-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item, .package {
  flex: 1 1 250px;
  min-width: 220px;
  background: #FFFCEF;
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 22px 18px;
  box-shadow: 0 1px 8px rgba(166,119,44,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-item:hover, .package:hover {
  box-shadow: 0 3px 16px rgba(190,123,45,0.12);
  transform: translateY(-2px) scale(1.02);
}
@media (max-width: 900px) {
  .service-list, .price-table { flex-direction: column; gap: 16px; }
}

.faq-pricing {
  background: #fffbe5;
  border-radius: 13px;
  padding: 14px 18px;
  margin-top: 24px;
  box-shadow: 0 1px 8px rgba(166,119,44,0.06);
}

.categories-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  background: #fffbe5;
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 18px;
}
.categories-filter span {
  color: #044B77;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.categories-filter a {
  background: #FFF8F1;
  border-radius: 16px;
  padding: 5px 13px;
  margin: 2px 0;
  font-size: 0.98em;
  color: #7f4f1d;
  transition: background 0.2s, color 0.2s;
}
.categories-filter a:hover, .categories-filter a.active {
  background: #FFD8B4;
  color: #044B77;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-teaser {
  background: #FFF8F1;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(191,151,86,0.07);
  padding: 20px 18px;
  min-width: 220px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-teaser a {
  color: #b4692f;
  font-weight: 600;
  margin-top:6px;
}
.blog-teaser a:hover { color: #044B77; text-decoration: underline; }
@media (max-width: 900px) {
  .blog-list { flex-direction: column; gap: 16px; }
}

/* Footer */
footer {
  background: #044B77;
  color: #fff;
  border-radius: 25px 25px 0 0;
  margin-top: 60px;
  box-shadow: 0 -2px 16px rgba(30,40,45,0.07);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  padding: 36px 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-logo {
  min-width: 90px;
  margin-bottom: 16px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
footer nav a {
  color: #FFD8B4;
  font-size: 1em;
}
footer nav a:hover {
  color: #fffbe5;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size:0.97em;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  vertical-align: middle;
  margin-right: 6px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    padding: 32px 8px;
  }
  .footer-logo { margin-bottom: 8px; }
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 1px 12px rgba(90, 90, 90, 0.07);
  border-radius: 0 0 18px 18px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1002;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 21px 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #044B77;
  font-weight: 600;
  font-size: 1em;
  padding: 7px 8px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a.active {
  background: #FFD8B4;
  color: #7f4f1d;
}
.btn-primary {
  background: #b4692f;
  color: #fff!important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1em;
  font-weight: 700;
  border: none;
  border-radius: 22px;
  padding: 10px 30px;
  box-shadow: 0 2px 10px rgba(141,90,27,0.14);
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #044B77;
  color: #FFD8B4!important;
  box-shadow: 0 4px 24px rgba(4,75,119,0.19);
  transform: translateY(-2px) scale(1.04);
}

/* === MOBILE MENU NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: #fffbe5;
  color: #b4692f;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px rgba(221,151,56,0.10);
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
  z-index: 1007;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFD8B4;
  color: #044B77;
  box-shadow: 0 2px 12px rgba(221,151,56,0.12);
}
@media (max-width: 900px) {
  header nav { display: none; }
  .btn-primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(244,185,119,0.97);
  box-shadow: 0 2px 24px rgba(141,90,27,0.12);
  z-index: 1008;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.47,.33,.36,.92);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-right: 0;
  padding-top: 0;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #b4692f;
  font-size: 2rem;
  margin: 28px 32px 24px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #044B77;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 2px;
  padding: 0 32px 0 26px;
}
.mobile-nav a {
  color: #044B77;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18em;
  font-weight: 600;
  background: transparent;
  border-radius: 12px;
  margin-bottom: 3px;
  padding: 11px 7px;
  transition: background 0.2s, color 0.2s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #FFD8B4;
  color: #7f4f1d;
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* === CONTACT PAGE LAYOUT === */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 16px;
}
.contact-details, .contact-action, .contact-map {
  background: #fffbe5;
  border-radius: 13px;
  padding: 18px 14px;
  box-shadow: 0 1px 8px rgba(166,119,44,0.08);
  flex: 1 1 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-details a {
  color: #b4692f;
  font-weight: 600;
}
.contact-details a:hover {
  color: #044B77;
  text-decoration: underline;
}
.contact-details img {
  width: 19px; height: 19px; vertical-align: middle; margin-right: 6px;
}
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    gap: 16px;
  }
}

/* === GENERAL LIST STYLES === */
ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}
ul li strong {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* === FORM STYLES (if present in future) === */
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  border-radius: 8px;
  border: 1px solid #ffe2b9;
  padding: 9px 13px;
  outline: none;
  background: #fffbe5;
  color: #222;
  margin-bottom: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #b4692f;
  box-shadow: 0 0 4px #FFD8B4;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #ffe4c2;
  color: #392a15;
  box-shadow: 0 -2px 18px rgba(191,151,86,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  z-index: 2000;
  transition: transform 0.38s cubic-bezier(.47,.33,.36,.92), opacity 0.22s;
  border-radius: 18px 18px 0 0;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner p {
  flex: 1 1 auto;
  color: #392a15;
  margin-bottom:0;
}
.cookie-banner .cookie-btn {
  background: #b4692f;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 8px 22px;
  margin-left: 8px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(191,151,86,0.11);
  transition: background 0.2s, color 0.2s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #044B77;
  color: #FFD8B4;
}
.cookie-banner .cookie-settings {
  background: #fffbe5;
  color: #b4692f;
  border: 1px solid #ffe2b9;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cookie-banner .cookie-settings:hover {
  background: #FFD8B4;
  border: 1px solid #b4692f;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.99em;
    padding: 16px 10px;
  }
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 2015;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(40,29,8,0.39);
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
}
.cookie-modal.show {
  display: flex;
}
.cookie-modal .cookie-modal-content {
  background: #fffbe5;
  border-radius: 17px;
  box-shadow: 0 4px 28px rgba(191,151,86,0.18);
  padding: 34px 26px 22px 26px;
  width: 100%;
  max-width: 430px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.55rem;
  color: #b4692f;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #044B77;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category label {
  flex: 1 1 auto;
  color: #7f4f1d;
  font-weight: 500;
  font-size: 1em;
}
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
  margin-right: 7px;
}
.switch input {display:none;}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #FFD8B4;
  border-radius: 22px;
  transition: .3s;
}
.slider:before {
  position: absolute;
  content: '';
  height: 18px; width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #b4692f;
  border-radius: 50%;
  transition: .3s;
}
.switch input:checked + .slider {
  background-color: #b4692f;
}
.switch input:checked + .slider:before {
  background-color: #fffbe5;
  transform: translateX(16px);
}
.switch input:disabled + .slider {
  background: #ffe4c2;
  opacity: 0.7;
}
.cookie-modal .cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  min-width: 120px;
  padding: 8px 17px;
}
@media (max-width: 480px) {
  .cookie-modal .cookie-modal-content {
    padding: 17px 5px 12px 8px;
  }
}

/* === ANIMATIONS & MICRO-INTERACTIONS === */
.btn-primary, .cookie-btn, .card, .feature-item, .about-item, .testimonial-card,
.service-item, .package, .blog-teaser {
  transition: box-shadow 0.22s, background 0.18s, color 0.2s, transform 0.18s;
}

a, button, .btn-primary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
}
a:focus-visible, button:focus-visible, .btn-primary:focus-visible,
.cookie-btn:focus-visible, .mobile-menu-toggle:focus-visible, .mobile-menu-close:focus-visible {
  box-shadow: 0 0 0 2px #FFD8B4, 0 1px 7px #b4692f11;
  outline: none;
}

/* === HIDE FOCUS STYLES ON MOUSE === */
@media (hover: hover) {
  a:focus:not(:focus-visible), button:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
  }
}

/* === THANK YOU PAGE FIXES === */
.thank-you-section {
  background: #fffbe5;
  border-radius: 19px;
  box-shadow: 0 2px 14px rgba(221,151,56,0.14);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

/* === ACCESSIBILITY === */
::selection { background: #FFD8B4; color: #044B77; }

/* === UTILITIES === */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mb-8 { margin-bottom: 8px!important; }
.mb-16 { margin-bottom: 16px!important; }
.mb-24 { margin-bottom: 24px!important; }
.gap-12 { gap: 12px!important; }
.gap-20 { gap: 20px!important; }

/* === Misc. Responsive === */
@media (max-width: 1160px) {
  .container { max-width: 98vw; }
}
@media (max-width: 480px) {
  .btn-primary, .cookie-btn { font-size: 1em; padding: 8px 13px; }
  h1 { font-size: 1.35rem; }
  section { margin-bottom: 20px; }
}
