/* CSS RESET & NORMALIZE (Mobile First) */
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%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #272D3B;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
a {
  color: #2196F3;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF9800;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 12px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: bold;
}

/* BRAND COLOR PALETTE (Warm/Friendly) */
:root {
  --color-primary: #183153;
  --color-secondary: #2196F3;
  --color-accent: #F5F7FA;
  --color-warm1: #FFD6BA;
  --color-warm2: #FFF8E1;
  --color-warm3: #FF9800;
  --color-warm4: #FFEBCE;
  --color-bg: #FFF8F4;
  --color-bg-soft: #FFF4EA;
  --color-muted: #B0B7C3;
  --color-shadow: 0, 0, 0;
  --radius-main: 18px;
  --shadow-soft: 0 2px 14px rgba(30,41,60,0.08);
}

/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; letter-spacing: -1px; }
h2 { font-size: 1.75rem; line-height: 1.22; }
h3 { font-size: 1.25rem; line-height: 1.27; font-weight: 600; }
h4, h5, h6 { font-size: 1.1rem; font-weight: 600; }
p, li, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #393E48;
  line-height: 1.7;
}
.small, small {
  font-size: 0.92rem;
  color: #767B85;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* HEADER */
header {
  width: 100%;
  background: #FFF8F4;
  padding: 0 0;
  box-shadow: 0 1px 8px rgba(var(--color-shadow), 0.06);
  position: relative;
  z-index: 40;
}
header {
  min-height: 72px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 14px 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--color-primary);
  font-size: 1.05rem;
  padding: 8px 8px;
  border-radius: 10px;
  transition: background 0.15s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-warm1);
  color: var(--color-warm3);
}
.mobile-menu-toggle {
  display: inline-flex;
  background: #FFD6BA;
  color: var(--color-primary);
  border: none;
  border-radius: 9px;
  font-size: 2rem;
  padding: 6px 16px;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.18s, transform 0.2s;
  align-items: center;
  z-index: 40;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-warm3);
  color: #fff;
  transform: scale(1.08);
}
.cta.primary, .cta.secondary, .cta.accent {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1.10rem;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.20s, background 0.22s, color 0.18s, transform 0.16s;
  box-shadow: 0 2px 12px rgba(var(--color-shadow),0.10);
  margin-right: 0;
  margin-left: 16px;
}
.cta.primary {
  background: var(--color-secondary);
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1763be;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 38px rgba(24,49,83,0.13);
}
.cta.secondary {
  background: #FFD6BA;
  color: var(--color-primary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-warm3);
  color: #fff;
}
.cta.accent {
  background: #FF9800;
  color: #fff;
}
.cta.accent:hover, .cta.accent:focus {
  background: #ee8200;
  color: #fff;
}

/* HIDE NAV ON MOBILE */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
}
@media (min-width: 993px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(40,40,60,0.18);
  backdrop-filter: blur(1.5px);
  z-index: 99;
  transition: opacity 0.3s, pointer-events 0.3s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav {
  background: #FFF8F4;
  padding: 38px 32px 24px 32px;
  margin: 0 0 0 auto;
  box-shadow: -8px 0 30px rgba(var(--color-shadow),0.13);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  min-width: 240px;
  max-width: 82vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.55,1.5,.4,1);
}
.mobile-menu.open nav {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FF9800;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, transform 0.18s;
  box-shadow: 0 4px 18px rgba(var(--color-shadow),0.10);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e87d04;
  transform: scale(1.11);
}
.mobile-nav {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--color-primary);
  padding: 13px 0;
  border-radius: 12px;
  transition: background 0.2s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #FFD6BA;
  color: #FF9800;
}

/* HERO SECTIONS */
.hero, .process-hero, .blog-hero, .catalog-intro, .contact-hero, .confirmation {
  background: linear-gradient(90deg, #FFF8F4 65%, #FFD6BA 120%);
  padding: 56px 20px 40px 20px;
  border-radius: var(--radius-main);
  margin-bottom: 60px;
}
.hero h1, .process-hero h1, .blog-hero h1, .catalog-intro h1, .contact-hero h1, .confirmation h1 {
  font-size: 2.1rem;
  color: var(--color-primary);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero p, .process-hero p, .blog-hero p, .catalog-intro p, .contact-hero p, .confirmation p {
  color: #5F636E;
  font-size: 1.15rem;
  margin-bottom: 24px;
}

/* FLEXBOX LAYOUTS */
.features ul, .feature-grid, .service-cards, .package-cards, .testimonial-slider, .blog-teasers-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 20px;
}
.package-cards, .service-cards {
  gap: 28px;
}
.features ul.feature-grid, .benefit-grid {
  gap: 18px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* CARDS & LISTS */
.feature-grid li, .benefit-grid li, .service-card, .package-card, .testimonial-card, .blog-teasers-list article, .faq-list dt, .faq-list dd {
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 24px 22px;
  min-width: 220px;
  margin-bottom: 20px;
  flex: 1 1 250px;
}
.service-card, .package-card, .testimonial-card {
  position: relative;
  transition: box-shadow 0.18s, transform 0.15s;
  border: 1px solid #FFEBCE;
}
.service-card:hover, .package-card:hover, .testimonial-card:hover {
  box-shadow: 0 4px 32px rgba(255,187,105,0.10), 0 2px 10px rgba(24,49,83,0.08);
  transform: translateY(-3px) scale(1.015);
}
.service-card strong, .package-card strong {
  display: block;
  color: #FF9800;
  margin-top: 14px;
  font-weight: 700;
  font-size: 1.09rem;
}

/* TESTIMONIALS */
.testimonials .testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.testimonial-card {
  background: #FFF8F4;
  min-width: 250px; max-width: 370px;
  color: #223358;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(255,187,105,0.10), 0 2px 6px rgba(48,51,78,0.10);
  padding: 28px 20px !important;
  margin-bottom: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px !important;
}
.testimonial-card p {
  font-size: 1.14rem;
  color: #293140;
  margin-bottom: 12px;
  font-style: italic;
}
.testimonial-meta {
  color: #FF9800;
  font-size: 0.99rem;
  letter-spacing: 0.02em;
}

/* FORMS */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  margin-bottom: 20px;
  padding: 0;
}
input[type="email"],
input[type="text"],
input[type="password"],
input, textarea {
  border: 1px solid #FFD6BA;
  appearance: none;
  outline: none;
  border-radius: 12px;
  padding: 14px 12px;
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--color-accent);
  margin-bottom: 8px;
  transition: border-color 0.17s, box-shadow 0.17s;
}
input:focus, textarea:focus {
  border-color: #FF9800;
  box-shadow: 0 2px 12px rgba(255,152,0,0.08);
}
button[type='submit'], .cta.primary, .cta.secondary, .cta.accent {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  transition: background 0.19s, color 0.14s, box-shadow 0.21s;
  cursor: pointer;
}
button[type='submit']:hover {
  background: #FF9800;
  color: #FFF4EA;
}

/* FOOTER */
footer {
  padding: 38px 0 12px 0;
  background: #FFF8F4;
  margin-top: 40px;
  border-radius: var(--radius-main) var(--radius-main) 0 0;
  box-shadow: 0 -3px 14px rgba(30,41,60,0.07);
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #FFD6BA;
  padding-bottom: 18px;
}
.footer-brand img {
  height: 48px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 28px;
}
.footer-links a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.01rem;
  transition: color 0.18s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #FF9800;
}
.footer-copy {
  text-align: center;
  color: #B0B7C3;
  margin-top: 14px;
}

/* SPECIAL COMPONENTS & UTILITIES */
.stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 0;
  margin-top: 16px;
}
.stepper li {
  background: #FFF8E1;
  border-radius: 14px;
  padding: 18px 16px;
  min-width: 210px;
  box-shadow: 0 2px 10px rgba(255,196,105,0.07);
  font-family: 'Roboto', Arial, sans-serif;
  color: #3A4766;
  font-size: 1.04rem;
  flex: 1 1 200px;
}

.blog-teasers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.blog-teasers-list article {
  background: #FFF8F4;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 12px rgba(24,49,83,0.08);
  padding: 22px 21px 22px 21px;
  min-width: 230px;
  margin-bottom: 20px;
  flex: 1 1 250px;
  position: relative;
  border: 1px solid #FFD6BA;
  transition: box-shadow 0.19s, transform 0.16s;
}
.blog-teasers-list .featured-post {
  background: #FFD6BA;
  border-color: #FF9800;
  box-shadow: 0 8px 30px rgba(255,182,77,0.13);
}
.read-more {
  margin-top: 10px;
  color: #2196F3;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: inline-block;
}
.read-more:hover, .read-more:focus {
  color: #FF9800;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 5px;
  background: #FFF8E1;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 1px 6px rgba(255,150,64,0.04);
}
.faq-list dd {
  padding-left: 12px;
  margin-bottom: 8px;
  color: #393E48;
  background: #FFF8F4;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.98rem;
}

/* MAP SECTION */
.map .container {
  background: #FFF4EA;
  border-radius: var(--radius-main);
  padding: 22px 16px;
  box-shadow: 0 2px 12px rgba(24,49,83,0.08);
}
.location-text p {
  color: #393E48;
}

/* Responsive Spacing for all sections */
@media (max-width: 992px) {
  .container { max-width: 98vw; }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 768px) {
  section { padding: 34px 10px; margin-bottom: 40px; }
  .container { padding: 0 4vw; }
  .content-wrapper { gap: 10px; }
  .features ul,
  .feature-grid,
  .service-cards,
  .package-cards,
  .testimonial-slider,
  .blog-teasers-list,
  .content-grid,
  .stepper {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .footer-links { flex-direction: column; gap: 12px; }
  .footer-brand img { height: 38px; }
  header { flex-direction: row; padding: 0 8px; }
  .cta.primary, .cta.secondary, .cta.accent { padding: 11px 18px; font-size: 1.01rem; margin-left: 4px; }
  .text-image-section { flex-direction: column !important; gap: 16px !important; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.29rem; }
  .footer-brand img { height: 34px; }
  .service-card, .package-card, .testimonial-card, .blog-teasers-list article {
    min-width: 120px;
    padding: 16px 8px !important;
  }
}

/* MICRO-INTERACTIONS */
.cta.primary, .cta.secondary, .cta.accent,
button[type='submit'] {
  will-change: background, color, box-shadow, transform;
}
input, textarea {
  transition: box-shadow 0.13s, border-color 0.13s;
}

/* VISUAL HIERARCHY */
h1, h2, h3 {
  margin-top: 10px;
}
ul, ol {
  margin-top: 7px;
}
.text-section {
  margin-bottom: 24px;
}

/************************************/
 * COOKIE CONSENT BANNER + MODAL *
************************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #FFF8E1;
  color: var(--color-primary);
  box-shadow: 0 -2px 14px rgba(24,49,83,0.08);
  padding: 22px 16px;
  z-index: 120;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-size: 1rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: slideInUp 0.6s cubic-bezier(.2,1.2,.6,1);
}
@keyframes slideInUp {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-left: auto;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 18px;
  font-size: 1.01rem;
  border-radius: 10px;
  border: none;
  margin: 0 2px;
  transition: background 0.17s, color 0.13s, box-shadow 0.11s;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(var(--color-shadow),0.07);
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #1763be;
}
.cookie-banner .reject {
  background: #FFD6BA;
  color: var(--color-primary);
}
.cookie-banner .reject:hover {
  background: #FF9800;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-accent);
  color: #FF9800;
  border-color: #FF9800;
}
/* Cookie Modal Overlay */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,49,83,0.35);
  z-index: 121;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.37s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #FFF8F4;
  border-radius: var(--radius-main);
  max-width: 380px;
  width: 95vw;
  box-shadow: 0 8px 44px rgba(24,49,83,0.16);
  padding: 38px 30px 22px 30px;
  position: relative;
  z-index: 122;
  animation: popIn .47s cubic-bezier(.12,1.21,.5,1);
}
@keyframes popIn {
  from { transform: scale(0.95); opacity: 0.5; }
  to   { transform: scale(1);   opacity: 1.0; }
}
.cookie-modal h2 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.cookie-modal ul {
  margin-bottom: 10px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.cookie-category {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--color-primary);
}
.cookie-toggle {
  appearance: none;
  width: 42px;
  height: 24px;
  border-radius: 12px;
  background: #FFD6BA;
  position: relative;
  outline: none;
  margin-left: 12px;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--color-secondary);
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.17s;
}
.cookie-toggle:checked::before {
  left: 21px;
}
.cookie-modal .close {
  position: absolute;
  top: 8px; right: 14px;
  background: #FFD6BA;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.45rem;
  color: var(--color-primary);
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal .close:hover {
  background: #FF9800;
  color: #fff;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 650px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; font-size: 0.98rem; }
  .cookie-banner .cookie-actions { margin-left: unset; }
}
@media (max-width: 430px) {
  .cookie-banner, .cookie-modal { padding: 16px 8px; font-size: 0.97rem; }
}

/* ELEVATED BUTTON EFFECT (All .cta & action buttons) */
button,
.cta.primary, .cta.secondary, .cta.accent {
  box-shadow: 0 1px 6px rgba(24,49,83,0.07);
}
button:active,
.cta:active {
  transform: scale(0.97);
  box-shadow: 0 0.5px 2px rgba(24,49,83,0.04);
}

/* Miscellaneous */
::-webkit-input-placeholder { color: #C5C8CF; }
::-moz-placeholder { color: #C5C8CF; }
:-ms-input-placeholder { color: #C5C8CF; }
::placeholder { color: #C5C8CF; }

/* Scrollbar Styling */
body::-webkit-scrollbar { width: 9px; background: #FFD6BA; }
body::-webkit-scrollbar-thumb { background: #FFD6BA; border-radius: 5px; }
body { scrollbar-width: thin; scrollbar-color: #FFD6BA #FFF4EA; }
