/* ========================
   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;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #FCF6F1;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #322b24;
  background: #FCF6F1;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #1A354C;
  text-decoration: none;
  transition: color .18s;
}
a:hover, a:focus {
  color: #f28d35;
}
:focus {
  outline: 2px solid #F6AE2D;
  outline-offset: 2px;
}

/* ===============================
   COLOR SYSTEM (Warm & Friendly)
   =============================== */
:root {
  --color-primary: #1A354C;
  --color-secondary: #81B29A;
  --color-accent: #F7F7FF;
  --color-warm-1: #FFEDD8;
  --color-warm-2: #FFD6B0;
  --color-warm-3: #FFBC80;
  --color-action: #F6AE2D;
  --color-red: #D7263D;
  --color-success: #62B966;
  --color-text: #322b24;
  --color-heading: #1A354C;
  --color-bg: #FCF6F1;
  --shadow-card: 0 3px 18px 0 rgba(243, 174, 45, 0.11);
}

/* ====================================
   LAYOUT CONTAINERS & FLUID CONTAINER
   ==================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 36px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}


/* =======================
   HEADER
   ======================= */
header {
  background: var(--color-accent);
  box-shadow: 0 6px 24px 0 rgba(26,53,76,0.06);
  border-radius: 0 0 20px 20px;
  padding-top: 6px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding-top: 6px;
  padding-bottom: 6px;
  flex-wrap: wrap;
}
.logo-link img {
  height: 44px;
  width: auto;
  border-radius: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: var(--color-primary);
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-warm-1);
  color: #F28D35;
}

.btn.btn-primary {
  background: var(--color-action);
  color: #1A354C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  font-size: 1.05rem;
  border: none;
  border-radius: 28px;
  box-shadow: 0 1px 4px 0 rgba(243,174,45,0.20);
  transition: background .22s, box-shadow .16s;
  cursor: pointer;
  text-align: center;
  display: inline-block;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #ffbc80;
  box-shadow: 0 3px 12px 0 rgba(243,174,45,0.22);
  color: #1A354C;
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 820px) {
  .header-container {
    gap: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .logo-link img { height: 36px; }
}

/* =============================
   MOBILE NAVIGATION
   ============================= */
.mobile-menu-toggle {
  display: none;
  background: var(--color-action);
  color: var(--color-primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 8px #fbc57a28;
  margin-left: 8px;
  transition: background .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFD6B0;
}

@media (max-width: 900px) {
  .main-nav,
  .btn.btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(252,246,241,0.97);
  box-shadow: 0 6px 32px 0 rgba(26,53,76,0.12);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform .4s cubic-bezier(.78,.11,.37,.97); 
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-action);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  margin: 24px 0 16px 18px;
  box-shadow: 0 2px 8px #fbc57a22;
  align-self: flex-start;
  transition: background .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFEDD8;
  color: var(--color-red);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: var(--color-primary);
  background: none;
  padding: 6px 0;
  border-radius: 10px;
  transition: color .16s, background .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F6AE2D;
  background: #FFEDD8;
}
@media (max-width: 600px) {
  .mobile-menu-close {
    font-size: 1.6rem;
    width: 38px;
    height: 38px;
    margin-top: 12px;
    margin-left: 8px;
  }
  .mobile-nav { padding-left: 24px; gap: 14px; }
}

/* =============================
   TYPOGRAPHY
   ============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: .01em;
}
h1 {
  font-size: 2.35rem;
  line-height: 1.12;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.7rem;
  line-height: 1.16;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.20rem;
  line-height: 1.18;
  margin-top: 6px;
}
@media (max-width: 576px) {
  h1 { font-size: 1.52rem; }
  h2 { font-size: 1.05rem; }
  h3 { font-size: 1.02rem; }
}
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: .01em;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}
em {
  font-style: italic;
}
ul, ol {
  padding-left: 1.1em;
  margin-bottom: 14px;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #3c2f21;
}

/* ===============================
   SECTION, SPACING & FLEX LAYOUTS
   =============================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.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: 18px;
  padding: 22px 26px;
  background: #FFFBEA;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(246,174,45,.11);
  font-size: 1.03rem;
  color: #2B2922;
  transition: box-shadow .16s;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.10rem;
  color: #1A354C;
  margin-top: 6px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px 0 rgba(246,174,45,0.18);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* RESPONSIVE FLEX & SPACING */
@media (max-width: 900px) {
  .feature-grid, .service-grid, .services-list {
    flex-direction: column !important;
    gap: 22px !important;
  }
  .content-grid, .card-container {
    flex-direction: column !important;
    gap: 18px !important;
  }
}
@media (max-width: 768px) {
  .content-wrapper { gap: 18px; }
  .card,
  .testimonial-card {
    padding: 18px 10px;
    font-size: .98rem;
  }
  .feature {
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ===============================
   HERO SECTION & CTA SECTION
   =============================== */
.hero-section {
  background: linear-gradient(108deg, #FFEDD8 50%, #FFD6B0 100%);
  border-radius: 22px;
  box-shadow: 0 3px 18px #f7eda76e;
  margin-bottom: 40px;
  padding-top: 38px;
  padding-bottom: 38px;
  animation: fadeHero 1.1s .06s both;
}
@keyframes fadeHero {
  from { opacity:0; transform: translateY(24px); }
  to { opacity:1; transform: none; }
}

.cta-section {
  background: #fff8ef;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 #ffbc805a;
  padding: 34px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.cta-section .btn {
  margin-top: 14px;
}

/* ===============================
   FEATURE & SERVICE CARDS (OFFER)
   =============================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 12px;
}
.feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 #ffd6b047;
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 320px;
  padding: 22px 16px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow .16s, transform .18s;
}
.feature img {
  height: 38px;
  width: auto;
  margin-bottom: 8px;
}
.feature:hover {
  box-shadow: 0 8px 32px #f28d355a;
  transform: translateY(-2px) scale(1.025);
}
.services-list, .service-list, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.service, .value-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #ffbc8042;
  padding: 18px 14px;
  flex: 1 1 230px;
  min-width: 188px;
  max-width: 380px;
  margin-bottom: 20px;
  /* Prevent overlap */
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.value-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.price {
  color: #f28d35;
  font-weight: 700;
  margin-top: 8px;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ===============================
   TESTIMONIALS
   =============================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .testimonial-slider {
    gap: 14px;
    flex-direction: column;
  }
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: var(--color-warm-1);
  padding: 40px 0 20px 0;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 14px 0 #ffd6b022;
  margin-top: 60px;
  color: #443a32;
  font-size: .95rem;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 34px 16px;
  justify-content: space-between;
}
.footer-logo img {
  width: 60px;
  height: auto;
  border-radius: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.01rem;
}
.footer-nav a {
  color: #1A354C;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 3px 0;
  border-radius: 7px;
  transition: background .14s, color .14s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #FFBC80;
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .99rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 6px;
}
.footer-contact a {
  color: var(--color-primary);
  text-decoration: underline dotted;
  transition: color .14s;
}
.footer-contact a:hover {
  color: #f28d35;
  text-decoration: underline solid;
}
@media (max-width: 850px) {
  .footer-container {
    flex-direction: column;
    gap: 22px 0px;
    align-items: flex-start;
  }
}

/* ===============================
   CONTACT DETAILS
   =============================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.contact-details img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
  border-radius: 6px;
}
.map-embed {
  background: #ffe6c7;
  border-radius: 11px;
  padding: 12px 18px;
  box-shadow: 0 1px 6px #fbc57a32;
  font-size: .98rem;
}

/* ===============================
   COOKIES CONSENT BANNER & MODAL
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #ffedd8;
  color: #37302a;
  font-size: 1.04rem;
  box-shadow: 0 -2px 16px #ffd6b060;
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  z-index: 300;
  transition: transform .25s cubic-bezier(.77,.11,.27,.97);
}
.cookie-banner.hidden {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner p {
  flex: 1 1 240px;
  margin: 0;
  color: #443a32;
}
.cookie-btn {
  background: var(--color-action);
  color: #1A354C;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 20px;
  margin: 0 8px 0 0;
  padding: 8px 22px;
  min-width: 90px;
  min-height: 38px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .17s;
  box-shadow: 0 1px 6px #fbc57a28;
}
.cookie-btn.accept {
  background: var(--color-success);
  color: #fff;
}
.cookie-btn.reject {
  background: #fff0ec;
  color: #D7263D;
  border: 2px solid #D7263D;
}
.cookie-btn.settings {
  background: #81B29A;
  color: #fff;
}
.cookie-btn:focus, .cookie-btn:hover {
  box-shadow: 0 2px 10px #fbc57a30;
  filter: brightness(0.98);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(40,26,8,0.24);
  z-index: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  animation: fadeInCookie .32s both;
}
@keyframes fadeInCookie {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fffdfa;
  border-radius: 20px;
  padding: 32px 28px 22px 28px;
  box-shadow: 0 16px 52px #fbc57a42;
  min-width: 90vw;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.cookie-modal-content h2 {
  font-size: 1.28rem;
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.category-toggle {
  width: 36px;
  height: 20px;
  border-radius: 12px;
  background: #fde2c4;
  position: relative;
  appearance: none;
  cursor: pointer;
  outline: none;
  margin-right: 8px;
  transition: background .15s;
}
.category-toggle:checked {
  background: var(--color-success);
}
.category-toggle:before {
  content: '';
  position: absolute;
  left: 4px; top: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px #FFD6B070;
  transition: left .18s;
}
.category-toggle:checked:before {
  left: 18px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  min-width: 92px;
}
.cookie-modal-close {
  background: #ffe0b8;
  color: #1a354c;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 16px;
  right: 22px;
  cursor: pointer;
  box-shadow: 0 1px 8px #ffd6b035;
  transition: background .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFD6B0;
  color: #D7263D;
}

@media(max-width: 520px) {
  .cookie-modal-content {
    padding: 16px 8px 12px 8px;
    min-width: 0;
  }
}

/* ===============================
   MICRO-INTERACTIONS, ANIMATIONS
   =============================== */
.btn, .btn.btn-primary, .card, .feature, .testimonial-card, .cookie-btn {
  transition: background .18s, color .15s, box-shadow .17s, transform .16s;
}
.btn:active, .feature:active, .testimonial-card:active { transform: scale(.98); }

/* ===============================
   MISC HELPERS
   =============================== */
@media (max-width: 820px) {
  .feature-grid, .services-list, .service-grid {
    flex-direction: column;
    gap: 13px;
  }
  .feature,
  .service {
    max-width: 100%;
  }
  .testimonial-slider {
    gap: 10px;
    margin-top: 6px;
  }
}

/* Hide main-nav and offer button on mobile, show mobile-menu-toggle */
@media (max-width: 900px) {
  .main-nav,
  .btn.btn-primary {
    display: none !important;
  }
}

/* ===============================
   SCROLLBAR, SELECTION, DETAILS
   =============================== */
::selection {
  background: #FFBC80;
  color: #fff;
}
::-webkit-scrollbar {
  width: 8px;
  background: #ffe6c780;
}
::-webkit-scrollbar-thumb {
  background: #FFD6B0;
  border-radius: 5px;
}

/***** UTILITY CLASSES *****/
.mt-2 { margin-top: 8px; }
.mb-2 { margin-bottom: 8px; }
.mt-5 { margin-top: 32px; }
.mb-5 { margin-bottom: 32px; }
.text-center { text-align: center; }

/***** VISIBILITY CLASSES *****/
@media (max-width: 480px) {
  .cta-section, .hero-section, .section {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/***** END OF CSS *****/
