/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #FAFAF8;
  color: #263238;
}
body {
  min-height: 100vh;
  background: #FAFAF8;
  color: #263238;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #FF7043;
  text-decoration: none;
  transition: color .2s;
  font-weight: 600;
}
a:hover, a:active {
  color: #263238;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  background: none;
  border: none;
  color: inherit;
}
input, textarea {
  background: #fff;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border .2s;
}
input:focus, textarea:focus {
  border: 2px solid #FF7043;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #FF7043;
  line-height: 1.1;
  text-shadow: 2px 6px 16px rgba(255,112,67,0.10);
  animation: pop-title 1s;
}
@keyframes pop-title {
  0% { transform: scale(0.98) translateY(24px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #263238;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #FF7043;
}
h4 {
  font-size: 1.1rem;
  color: #263238;
}
p, li, span, em {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
.subheadline {
  font-size: 1.25rem;
  color: #263238;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* SPACING & LAYOUT PATTERNS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(38,50,56,0.07), 0 2px 6px rgba(255,112,67,0.09);
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow .2s, transform .18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(255,112,67,0.17), 0 2px 16px rgba(38,50,56,0.11);
  transform: translateY(-4px) scale(1.025);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe9;
  border-left: 6px solid #FF7043;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(38,50,56,0.10);
  margin-bottom: 24px;
  min-width: 0;
  flex: 1 1 320px;
  transition: box-shadow .2s, background .25s;
}
.testimonial-card:hover, .testimonial-card:focus {
  background: #fff3e6;
  box-shadow: 0 8px 22px rgba(255,112,67,0.17), 0 2px 16px rgba(38,50,56,0.11);
}
.testimonial-author {
  font-size: 1.05em;
  font-weight: 700;
  color: #FF7043;
  margin-left: auto;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  background: none;
}
.text-section{
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(255,112,67,0.07);
  padding: 36px 26px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 960px) {
  .container {
    max-width: 96vw;
    padding: 0 8px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .content-wrapper, .text-section {
    padding: 24px 8px;
    margin-bottom: 28px;
  }
  .section {
    padding: 22px 6px;
    margin-bottom: 36px;
  }
  .card {
    min-width: 0;
    padding: 20px 10px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  box-shadow: 0 1px 8px rgba(255,112,67,0.12);
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 14px;
}
header img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #263238;
  padding: 8px 0px;
  border-radius: 12px;
  transition: background .18s, color .15s;
}
header nav a:hover, header nav a.active {
  background: #FF7043;
  color: #fff;
}

.cta-btn {
  display: inline-block;
  background: #FF7043;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 24px;
  border: none;
  padding: 13px 36px;
  box-shadow: 0 2px 12px rgba(255,112,67,0.15);
  cursor: pointer;
  transition: background .2s, box-shadow .18s, transform .18s;
  margin-left: 12px;
  text-shadow: 1px 2px 8px rgba(255,112,67,0.08);
  letter-spacing: 0.05em;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #263238;
  color: #FF7043;
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(38,50,56,0.11);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  position: fixed;
  top: 15px;
  right: 18px;
  z-index: 101;
  background: #fff;
  color: #FF7043;
  border-radius: 14px;
  width: 40px;
  height: 40px;
  font-size: 2.1em;
  border: 2px solid #FF7043;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FF7043;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.65,.05,.43,.83);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: 0 2px 40px rgba(38,50,56,0.16);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FF7043;
  color: #fff;
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 2.1em;
  border-radius: 12px;
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255,112,67,0.12);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #263238;
  color: #FF7043;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 86px 0 0 0;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14em;
  color: #263238;
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 700;
  transition: background .16s, color .12s;
  min-width:180px;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #FF7043;
  color: #fff;
}

@media (max-width: 990px) {
  header nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTIONS */
.hero {
  min-height: 260px;
  background: linear-gradient(98deg, #FFE8DF 17%, #fffbe9 88%);
  display: flex;
  align-items: center;
  box-shadow: 0 3px 22px rgba(255,112,67,0.11);
  border-radius: 0 0 28px 28px;
  padding: 36px 0 24px 0;
  margin-bottom: 28px;
  animation: heroFade 1.5s cubic-bezier(.7,.24,.43,1);
}
@keyframes heroFade {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: none; }
}
.hero .container {
  justify-content: center;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 18px;
  display: flex;
}
.hero .content-wrapper {
  gap: 18px;
  align-items: flex-start;
}

/* SPECIAL LISTS & PRICES */
.price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FF7043;
  font-size: 1.06em;
  font-weight: 700;
  margin-left: 5px;
}
ul li img {
  width: 28px;
  height: 28px;
  margin-right: 13px;
  vertical-align: middle;
}
.text-section ul li {
  margin-bottom: 14px;
  padding-left: 0;
}
ul.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: row;
}
ul.service-list li {
  background: #fffbe9;
  border-left: 6px solid #FF7043;
  border-radius: 18px;
  flex: 1 1 245px;
  min-width: 220px;
  padding: 24px 18px;
  box-shadow: 0 2px 8px rgba(255,112,67,0.11);
  margin-bottom: 20px;
  transition: box-shadow .22s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
ul.service-list li:hover {
  box-shadow: 0 6px 16px rgba(255,112,67,0.18);
}
@media (max-width: 720px) {
  ul.service-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* CATEGORIES (BLOG) */
.categories {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 10px;
  flex-wrap: wrap;
}
.categories span {
  font-weight: bold;
}
.categories a {
  display: inline-block;
  background: #FFE8DF;
  color: #FF7043;
  border-radius: 14px;
  padding: 4px 18px;
  font-size: 0.98rem;
  font-weight: 700;
  transition: background .17s, color .14s;
}
.categories a:hover, .categories a:focus {
  background: #FF7043;
  color: #fff;
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 12px;
  align-items: center;
}
form input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
}
form button.cta-btn {
  min-width: 130px;
  margin-left: 6px;
}

/* FOOTER */
footer {
  background: #263238;
  color: #fff;
  padding: 32px 0 8px 0;
  font-size: .98em;
  margin-top: 44px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
footer nav a {
  color: #fffbe9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 700;
  opacity: 0.75;
  transition: opacity .15s, color .18s;
}
footer nav a:hover {
  opacity: 1;
  color: #FF7043;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fffbe9;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-copyright {
  padding-top: 9px;
  border-top: 1px solid #ececec33;
  font-size: 0.97em;
  color: #fffbe9;
  opacity: 0.77;
}

@media (max-width: 600px) {
  footer .container {
    padding: 0 8px;
  }
  footer nav {
    gap: 8px;
  }
}

/* PLAYFUL DYNAMIC MICRO-INTERACTIONS */
.cta-btn,
input[type="email"],
.card,
.testimonial-card,
ul.service-list li {
  transition: box-shadow 0.18s, transform 0.18s, background 0.18s, color 0.16s;
}
ul li img {
  filter: drop-shadow(2px 2px 3px #ff704360);
  animation: swing-img 1.2s infinite alternate-reverse ease-in-out;
}
@keyframes swing-img {
  0% { transform: rotate(-9deg) scale(1.05); }
  100% { transform: rotate(7deg) scale(1.15); }
}

/* COLORFUL ANIMATED UNDERLINE FOR h2 */
h2 {
  position: relative;
  display: inline-block;
  background: linear-gradient(91deg, #FF7043 58%, #ffd155 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: #FF7043;
}
h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #FF7043 40%,#FAD961 100%);
  border-radius: 5px;
  opacity: 0.21;
  animation: underline-move 2.7s infinite alternate cubic-bezier(0.6,0,0.4,1);
}
@keyframes underline-move {
  0% { width: 35%; opacity: .37; }
  100% { width: 100%; opacity: .21; }
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe9;
  border-top: 3px solid #FF7043;
  box-shadow: 0 -4px 20px rgba(38,50,56,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 18px;
  z-index: 999;
  gap: 20px;
  animation: cookieIn .7s;
}
@keyframes cookieIn { from { transform: translateY(120%); } to { transform: none; } }
.cookie-banner p {
  font-size: 1rem;
  color: #263238;
  flex: 1 1 80%;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  border-radius: 20px;
  padding: 9px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
  transition: background .18s, color .15s, border .12s;
  background: #FF7043;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #263238;
  color: #FF7043;
}
.cookie-btn.secondary {
  background: #fff;
  color: #FF7043;
  border: 2px solid #FF7043;
}
.cookie-btn.secondary:hover {
  background: #FF7043;
  color: #fff;
}

@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 6px;
    gap: 12px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1999;
  top: 0; left:0; right:0; bottom:0;
  min-width:100vw; min-height:100vh;
  background: rgba(38,50,56, 0.46);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fffbe9;
  border-radius: 20px;
  box-shadow: 0 4px 48px rgba(255,112,67,0.17), 0 2px 16px rgba(38,50,56,0.13);
  padding: 38px 30px 28px 30px;
  max-width: 380px;
  width: 93vw;
  animation: modalIn .5s;
  position: relative;
  color: #263238;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@keyframes modalIn { from { transform: scale(0.76); opacity:0; } to { transform: scale(1); opacity:1; } }
.cookie-modal h3 {
  color: #FF7043;
  font-size: 1.15em;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1em;
}
.cookie-toggle {
  appearance: none;
  width: 38px; height: 22px;
  background: #e0e0e0;
  outline: none;
  border-radius: 12px;
  position: relative;
  transition: background .18s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #FF7043;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform .18s;
}
.cookie-toggle:checked:before {
  transform: translateX(15px);
}
.cookie-close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: none;
  font-size: 1.4em;
  color: #FF7043;
  font-weight: bold;
  cursor: pointer;
  transition: color .15s;
}
.cookie-close:hover{
  color: #263238;
}

/* --- END COOKIE MODAL --- */

/* PLAYFUL ANIMATION DECORATIVE BUBBLES */
.hero:before, .hero:after {
  content: '';
  position: absolute;
  z-index: 0;
}
.hero:before {
  left: 4%;
  top: 13%;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #ffd155;
  opacity: 0.22;
  animation: float-bubble 7s infinite alternate ease-in-out;
}
.hero:after {
  right: 8%;
  top: 10%;
  width: 40px; height: 40px;
  border-radius: 60% 40% 55% 45% / 45% 55% 60% 40%;
  background: #FF7043;
  opacity: 0.13;
  animation: float-bubble2 10s infinite alternate-reverse cubic-bezier(.3,0,.7,1);
}
@media (max-width: 700px){
  .hero:before,.hero:after{display:none;}
}
@keyframes float-bubble {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-35px) scale(1.12); }
}
@keyframes float-bubble2 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(24px) scale(0.89); }
}

/* GENERAL UTILITIES */
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-center{ align-items: center; }
.gap-8 { gap: 8px; }
.gap-20 { gap: 20px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }

/* ACCESSIBILITY */
:focus {
  outline: 2px dashed #FF7043;
  outline-offset: 3px;
}

/* SCROLLBAR FOR DECORATIVE THEME */
::-webkit-scrollbar {
  width: 10px;
  background: #FFE8DF;
}
::-webkit-scrollbar-thumb {
  background: #FF7043;
  border-radius: 6px;
  border: 2.5px solid #FFE8DF;
}

/* END OF CSS */
