/* ==== 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
  color-scheme: light dark;
  scroll-behavior: smooth;
  background: #F4F7FA;
}

body {
  color: #232F34;
  background: #F4F7FA;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #F9AA33;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffcd59;
  text-decoration: none;
}

ul, ol {
  margin-left: 1.25em;
  margin-bottom: 24px;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(74,101,114,0.08);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

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

.text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
  background: #e0e4ea;
  padding: 16px 24px;
  border-radius: 10px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* FLEXBOX LAYOUTS */
.card-container,
.card-grid,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(74,101,114,0.13);
  padding: 30px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px rgba(249,170,51,0.15);
  transform: translateY(-3px) scale(1.015);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFE7B2;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(35,47,52,0.07);
}
.testimonial-card blockquote {
  color: #232F34;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.testimonial-meta {
  color: #4A6572;
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 18px 22px 18px;
  background: #F4F7FA;
  border-radius: 12px;
}

/* === HEADER & NAVIGATION === */
header {
  background: #232F34;
  padding: 0;
  color: #fff;
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 22px 12px 22px 0;
}
.main-nav > a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.18s;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
}
.main-nav > a:hover, .main-nav > a:focus {
  color: #F9AA33;
  background: rgba(255,255,255,0.12);
}
.main-nav > a.btn {
  margin-left: auto;
  font-weight: 800;
}
.main-nav img {
  height: 36px;
  margin-right: 12px;
  vertical-align: middle;
}

/* === BUTTONS === */
.btn,
button,
input[type="submit"],
.category-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 28px;
  color: #fff;
  background: #F9AA33;
  border: none;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(249, 170, 51, 0.11);
  cursor: pointer;
  display: inline-block;
  transition: background 0.19s, color 0.18s, transform 0.2s, box-shadow 0.18s;
  outline: none;
}
.btn:active, .btn:focus, button:active, button:focus, .category-btn:active, .category-btn:focus {
  background: #d18807;
}
.btn-primary {
  background: #4A6572;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #232F34;
  color: #F9AA33;
  box-shadow: 0 2px 10px #ffcd59bd;
}
.btn-accent {
  background: #F9AA33;
  color: #232F34;
}
.btn-accent:hover, .btn-accent:focus {
  background: #fff;
  color: #F9AA33;
  border: solid 2px #F9AA33;
}
.category-btn {
  background: #232F34;
  color: #fff;
  margin-right: 9px;
  margin-bottom: 10px;
  padding: 10px 18px;
  border-radius: 7px;
  box-shadow: none;
}
.category-btn:hover, .category-btn:focus {
  background: #F9AA33;
  color: #232F34;
}

/* === HERO SECTIONS === */
.hero {
  background: #F9AA33;
  color: #232F34;
  border-radius: 0 0 36px 36px;
  position: relative;
  margin-bottom: 46px;
  box-shadow: 0 3px 22px rgba(249,170,51,0.15);
  min-height: 320px;
  padding-top: 50px;
  padding-bottom: 60px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.13;
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
  color: #232F34;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #232F34;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
}
h4, h5 { font-size: 1.14rem; }
h6 { font-size: 1rem; }
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
strong {
  font-weight: 700;
}

ol > li::marker {
  color: #F9AA33;
  font-weight: bold;
}

/* === SERVICES + SERVICE TEASERS === */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-teaser, .service-detail {
  flex: 1 1 260px;
  background: #fffefb;
  border: 2px solid #F9AA33;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(249,170,51,0.11);
  padding: 24px 18px 14px 18px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
}
.service-teaser:hover, .service-detail:hover {
  box-shadow: 0 8px 40px 0 #F9AA3399;
  transform: scale(1.025) translateY(-3px);
  border-color: #FFB845;
}
.service-teaser h3, .service-detail h3 {
  color: #232F34;
  font-size: 1.13rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.service-price {
  position: relative;
  display: inline-block;
  background: #F9AA33;
  color: #232F34;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 13px;
  border-radius: 8px;
  margin-top: 12px;
  box-shadow: 0 1px 8px #FFD17F6f;
  letter-spacing: 0.03em;
}

.category-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 18px 0;
  flex-wrap: wrap;
}
.category-tabs span {
  font-weight: 600;
  color: #232F34;
  font-size: 1.02rem;
}

/* === FOOTER === */
footer {
  background: #232F34;
  color: #fff;
  padding: 44px 0 20px 0;
  margin-top: 80px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.footer-nav a {
  color: #F9AA33;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  padding: 2px 8px;
  border-radius: 5px;
  transition: color 0.16s, background 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: #F9AA33;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
}
.footer-brand img {
  height: 28px;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: #4A6572;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 16px;
  top: 12px;
  z-index: 150;
  transition: background 0.18s, color 0.16s;
  cursor: pointer;
}
.mobile-menu-toggle:focus {
  outline: 3px solid #F9AA33;
}

.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #232F34;
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.85,.13,.29,1.27);
  z-index: 3000;
  box-shadow: 8px 0 55px 0 #0009;
  padding-top: 0;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F9AA33;
  font-size: 2.3rem;
  line-height: 1;
  position: absolute;
  right: 22px;
  top: 20px;
  cursor: pointer;
  padding: 8px;
  z-index: 3010;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #444950;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 90px 0 0 32px;
  min-width: 210px;
  width: 80vw;
  max-width: 430px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 0 15px 8px;
  border-radius: 6px;
  transition: background 0.17s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9AA33;
  color: #232F34;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #232F34;
  color: #fff;
  box-shadow: 0 -2px 22px 0 #0005;
  z-index: 5000;
  padding: 26px 10px 22px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  transition: transform 0.34s;
  border-radius: 18px 18px 0 0;
}
.cookie-banner.hide {
  transform: translateY(200%);
}
.cookie-banner__text {
  flex: 1 1 180px;
  font-size: 1rem;
  max-width: 420px;
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cookie-banner .btn {
  min-width: 130px;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 7px;
  font-weight: bold;
}
.cookie-banner .btn-accept {
  background: #F9AA33;
  color: #232F34;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #fff;
  color: #F9AA33;
  border: 1.5px solid #F9AA33;
}
.cookie-banner .btn-reject {
  background: #4A6572;
}
.cookie-banner .btn-settings {
  background: transparent;
  color: #F9AA33;
  border: 1.5px solid #F9AA33;
}
.cookie-banner .btn-settings:hover {
  background: #F9AA33;
  color: #232F34;
}

/* === COOKIE MODAL === */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35,47,52,0.90);
  z-index: 7000;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: 18px;
  padding: 38px 28px 28px 28px;
  min-width: 330px;
  max-width: 96vw;
  box-shadow: 0 10px 65px #0002;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #232F34;
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #232F34;
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #4A6572;
  cursor: pointer;
  border-radius: 5px;
  padding: 4px 10px;
}
.cookie-modal__body {
  padding-top: 10px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.cookie-modal__category input[type=checkbox] {
  accent-color: #F9AA33;
  scale: 1.17;
}
.cookie-modal__category label {
  margin-left: 7px;
  font-weight: 500;
  color: #232F34;
}
.cookie-modal__category--essential label {
  font-style: italic;
}
.cookie-modal__footer {
  margin-top: 17px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal__footer .btn {
  min-width: 130px;
  font-size: 1rem;
  padding: 10px 18px;
}

/* === FORMS AND INPUTS (placeholders) === */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 7px;
  border: 1.5px solid #4A6572;
  margin-bottom: 16px;
  width: 100%;
  background: #F9FAFC;
  color: #232F34;
  transition: border 0.15s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #F9AA33;
  outline: none;
}

/* === UTILITIES AND MISC === */
.margin-bottom-20 { margin-bottom: 20px; }
.margin-bottom-32 { margin-bottom: 32px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.rounded-12 { border-radius: 12px; }
.rounded-16 { border-radius: 16px; }
.shadow-strong { box-shadow: 0 8px 40px 0 #F9AA3399; }

/* ==== MEDIA QUERIES === */
@media (max-width: 1024px) {
  .main-nav { gap: 8px; }
  .footer-nav { gap: 10px; }
}
@media (max-width: 900px) {
  .container { padding: 0 6px; }
  .main-nav { font-size: 0.98rem; }
  .hero h1 { font-size: 2.05rem; }
}
@media (max-width: 768px) {
  section {
    padding: 28px 5px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 4px;
  }
  .hero {
    padding-top: 30px;
    padding-bottom: 38px;
    min-height: 230px;
    border-radius: 0 0 22px 22px;
  }
  .hero h1 {
    font-size: 1.45rem;
    margin-bottom: 10px;
  }
  .hero p {
    font-size: 1.01rem;
  }
  .text-image-section, .content-grid, .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .category-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .testimonial-card {
    padding: 14px;
    font-size: 1rem;
  }
  .footer-brand { font-size: 0.92rem; }
}
@media (max-width: 500px) {
  html { font-size: 15px; }
  .hero { min-height: 130px; }
  h1 { font-size: 1.22rem; }
  .container { max-width: 99vw; }
}

/* === VIBRANT ENERGETIC ELEMENTS === */
body, html {
  background: linear-gradient(120deg, #fff 65%, #FFECB3 100%);
}
section, .card, .service-teaser, .service-detail {
  /* Dynamic shadow for energy */
  box-shadow: 0 6px 40px -10px rgba(249, 170, 51, 0.14),
    0 1.5px 4px -1.5px #4A657220;
}
.btn, .category-btn {
  /* Bold, pop look */
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
.btn-accent, .category-btn {
  box-shadow: 0 2px 18px 0 #FFD17F5d;
  border: 1.5px solid #F9AA33;
}
section {
  border: 2.3px solid #FFB845;
  background: #fffefb;
}
.hero {
  border-bottom: 5px solid #FFB845;
  animation: heroPulse 4s linear infinite alternate;
}
@keyframes heroPulse {
  0% { box-shadow: 0 3px 22px rgba(249,170,51,0.15); }
  100% { box-shadow: 0 10px 38px rgba(249,170,51,0.23); }
}
.testimonial-card {
  border: 2.5px solid #F9AA33;
  background: #FFE7B2;
  filter: drop-shadow(0 6px 30px #FFD17F3c);
}
.testimonial-card blockquote {
  color: #232F34;
  font-size: 1.15rem;
}

::-webkit-scrollbar {
  width: 13px;
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #F9AA33;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFB845;
}

/* ==== END OF STYLE.CSS ==== */
