/*
  Breeze Pedal — Elegant Classic CSS Theme
  Author: Senior CSS Developer & UI Designer
  Style: Timeless, elegant_classic, muted, classic proportions, modern flex layouts
  Mandatory flexbox at all times, no grid!

  ==== CSS RESET & NORMALIZE ====
*/

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
html { height: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; background: #FFFDF6; color: #2c2b27; -webkit-font-smoothing: antialiased; line-height: 1.7; font-family: 'Roboto', serif; }

img { max-width: 100%; height: auto; display: block; border: 0; }
ul, ol { margin-left: 20px; }
li { margin-bottom: 8px; }

a { color: #335C67; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #2A9D8F; text-decoration: underline; }
hr { border: none; border-top: 1px solid #E6E6E6; margin: 32px 0; }

/* === TYPOGRAPHY SYSTEM === */
body { font-family: 'Roboto', serif; font-size: 16px; color: #2c2b27; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', serif;
  font-weight: 700;
  color: #335C67;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
.subtitle {
  color: #7a776f;
  font-size: 1.25rem;
  margin-bottom: 24px;
  font-family: 'Roboto', serif;
}

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

strong, b { font-weight: 700; }

/* === LAYOUT STRUCTURE === */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

@media (max-width: 600px) {
  .section { padding: 26px 7px; }
}

main > section:last-child { margin-bottom: 0; }
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul { margin-top: 14px; }

.text-section ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05em;
  margin-bottom: 10px;
  color: #3E4837;
}
.text-section ul img {
  width: 23px;
  height: 23px;
  opacity: 0.8;
}

/* === FLEXBOX LAYOUT UTILITIES === */
.card-container, .feature-grid, .highlight-blocks, .footer-nav, .footer-legal, .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container, .feature-grid, .highlight-blocks {
  gap: 24px;
  margin-bottom: 20px;
  align-items: stretch;
}
.card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(51,92,103,0.08);
  margin-bottom: 20px;
  padding: 24px 22px;
  position: relative;
  flex: 1 1 270px;
  min-width: 250px;
  max-width: 360px;
  transition: box-shadow 0.23s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 22px 0 rgba(51,92,103,0.16);
  transform: translateY(-6px);
}

.feature-grid > div {
  background: #FBFAF6;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(50,60,73,0.06);
  padding: 24px 18px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 270px;
  min-width: 230px;
  transition: box-shadow 0.22s, transform 0.16s;
  border: 1px solid #ECE9E0;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 14px 0 rgba(51,92,103,0.10);
  transform: translateY(-4px);
}
.feature-grid img { margin-bottom: 13px; width: 38px; height: 38px; }
.service-price {
  margin-top: 13px;
  color: #2A9D8F;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1.07em;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div {
    min-width: unset;
    width: 100%;
  }
}

.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;
}
.card-content { display: flex; flex-direction: column; justify-content: center; }
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: #FFF;
  border: 1.5px solid #ECE9E0;
  box-shadow: 0 2px 12px 0 rgba(51,92,103,0.09);
  max-width: 530px;
  font-style: italic;
  transition: box-shadow 0.22s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px 0 rgba(42,157,143,0.13);
  border-color: #2A9D8F;
}
.testimonial-card p {
  color: #2d2c2b;
  font-size: 1.09em;
  line-height: 1.63;
  margin-bottom: 0;
}
.testimonial-meta {
  margin-top: 2px;
  color: #335C67;
  font-style: normal;
  font-size: 0.98em;
  font-family: 'Montserrat', serif;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .testimonial-card { padding: 17px 13px; max-width: 98vw; }
}

.card-container { gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { gap: 20px; justify-content: space-between; }
.text-image-section { gap: 30px; flex-wrap: wrap; align-items: center; }
.testimonial-card { gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

.highlight-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.highlight-blocks > div {
  background: #FFF3B0;
  border-radius: 10px;
  flex: 1 1 228px;
  min-width: 180px;
  padding: 18px 17px 16px 17px;
  box-shadow: 0 1px 8px 0 rgba(246,229,139,0.11);
  border: 1px solid #EDE9D3;
  transition: box-shadow 0.17s;
}
.highlight-blocks > div:hover { box-shadow: 0 3px 18px 0 rgba(51,92,103,0.10); }

@media (max-width: 800px) {
  .highlight-blocks { flex-direction: column; gap: 14px; }
  .highlight-blocks > div { min-width: unset; width: 100%; }
}

.map-snippet {
  margin-top: 18px;
  max-width: 420px;
}

/* === MAIN CTA BUTTON === */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 32px;
  background: #335C67;
  color: #FFF;
  border: none;
  border-radius: 27px;
  font-family: 'Montserrat', serif;
  font-size: 1.11em;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(51,92,103,0.10);
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.21s, transform 0.18s;
  letter-spacing: 0.02em;
  margin-top: 12px;
  margin-bottom: 18px;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #2A9D8F;
  color: #FFF;
  box-shadow: 0 4px 14px 0 rgba(42,157,143,0.16);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}

/* === HEADER & NAVIGATION === */
header {
  border-bottom: 1px solid #ECE9E0;
  background: #FFFDF6;
  box-shadow: 0 2px 8px 0 rgba(51,92,103,0.03);
}
header .container {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 13px;
  padding-bottom: 13px;
  position: relative;
}
header a img {
  height: 45px;
  margin-right: 17px;
  vertical-align: middle;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1.01em;
  color: #335C67;
  padding: 5px 2px;
  font-weight: 500;
  position: relative;
  transition: color 0.17s, border-color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #2A9D8F;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: #FFF3B0;
  color: #335C67;
  border: none;
  padding: 8px 17px;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 1px 6px 0 rgba(51,92,103,0.06);
  margin-left: 16px;
  z-index: 2060;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #335C67;
  color: #FFF3B0;
}

@media (max-width: 990px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(46, 56, 60, 0.92);
  z-index: 2100;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.72,.42,.46,.98);
  display: flex;
  flex-direction: column;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 21px 21px 0 auto;
  font-size: 2.1rem;
  background: none;
  color: #FFF3B0;
  border: none;
  cursor: pointer;
  padding: 2px 12px;
  border-radius: 32px;
  transition: background 0.16s, color 0.16s;
  z-index: 2110;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFF3B0;
  color: #335C67;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 48px 0 0 0;
  align-items: flex-start;
  padding: 0 30px 0 48px;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  color: #FFFDF6;
  padding: 8px 0;
  font-weight: 500;
  transition: color 0.15s, background 0.16s;
  border-radius: 9px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #335C67;
  background: #FFF3B0;
  padding-left: 7px;
}
@media (max-width:495px) {
  .mobile-nav { padding-left: 20px; }
}

@media (min-width: 991px) {
  .mobile-menu { display: none !important; }
}

/* === FOOTER === */
footer {
  margin-top: 44px;
  background: #335C67;
  color: #FFF3B0;
  padding: 38px 0 12px 0;
  font-size: 1.07em;
  border-top: 3px solid #2A9D8F;
  box-shadow: 0 -3px 22px 0 rgba(38,64,68,0.07);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.footer-nav, .footer-legal, .footer-social {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a, .footer-legal a {
  color: #FFF3B0;
  font-family: 'Montserrat', serif;
  font-size: 1em;
  letter-spacing: 0.01em;
  transition: color .18s, text-decoration .18s;
  padding: 2px 0;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #2A9D8F;
  text-decoration: underline;
}
.footer-social a:hover img { filter: brightness(0.7); }
.footer-copy {
  color: #FFF3B0;
  font-size: 0.98em;
  font-family: 'Roboto', serif;
  margin-top: 17px;
  opacity: 0.86;
  text-align: center;
}

@media (max-width: 650px) {
  footer .container { gap: 16px; }
  .footer-nav, .footer-legal { flex-direction: column; gap: 10px; align-items: center; }
  .footer-social { gap: 10px; }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #335C67;
  color: #FFF3B0;
  padding: 24px 17px 20px 17px;
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -2px 22px 0 rgba(51,92,103,0.19);
  font-family: 'Roboto', serif;
  font-size: 1.03em;
  animation: fade-in-bounce 0.33s cubic-bezier(.74, 1.7, .37, .96);
  gap: 18px;
}
.cookie-banner .cookie-text {
  flex: 1 1 350px;
  max-width: 650px;
  margin-right: 14px;
}
.cookie-banner .cookie-actions {
  display: flex; gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', serif;
  font-size: 1em;
  border: none;
  border-radius: 19px;
  padding: 8px 19px;
  background: #FFF3B0;
  color: #335C67;
  font-weight: 600;
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 1px 5px 0 rgba(51,92,103,0.10);
  cursor: pointer;
  transition: background 0.13s, color 0.16s, box-shadow 0.13s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #2A9D8F;
  color: #FFF;
  box-shadow: 0 3px 14px 0 rgba(42,157,143,0.18);
}
.cookie-btn.reject {
  background: #FFEEC1;
  color: #1A5851;
}
.cookie-btn.reject:hover { background: #335C67; color: #FFF3B0; }
.cookie-btn.settings { background: #2A9D8F; color: #FFF; }
.cookie-btn.settings:hover { background: #FFF3B0; color: #335C67; }

@keyframes fade-in-bounce {
  0% { opacity: 0; transform: translateY(32px) scale(0.97); }
  70% { opacity: 1; transform: translateY(-3px) scale(1.04); }
  100% { opacity: 1; transform: none; }
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    padding: 15px 4px 13px 4px;
  }
  .cookie-banner .cookie-text { margin-right: 0; text-align: center; }
  .cookie-banner .cookie-actions { flex-direction: column; gap: 7px; align-items: center; }
}

/* ===== COOKIE MODAL POPUP ===== */
.cookie-modal-backdrop {
  display: none;
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(38, 64, 68, 0.63);
  z-index: 3200;
  justify-content: center;
  align-items: center;
}
.cookie-modal-backdrop.open { display: flex; }
.cookie-modal {
  background: #FBFAF6;
  color: #335C67;
  border-radius: 18px;
  box-shadow: 0 2px 33px 0 rgba(51,92,103,0.25);
  min-width: 320px;
  max-width: 98vw;
  width: 420px;
  padding: 27px 27px 23px 27px;
  animation: fade-in-bounce .37s;
  display: flex; flex-direction: column; gap: 17px;
  position: relative;
}
.cookie-modal h3 { font-family: 'Montserrat', serif; font-size: 1.3em; margin-bottom: 12px; }
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-modal .category-label {
  flex: 1;
  font-size: 1em;
  font-weight: 500;
  color: #335C67;
}
.cookie-modal .toggle-switch {
  width: 38px; height: 22px;
  background: #ECE9E0;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background .17s;
  border: none;
  outline: none;
}
.cookie-modal .toggle-switch[data-checked="true"] { background: #2A9D8F; }
.cookie-modal .toggle-switch .switch-dot {
  display: block;
  width: 18px; height: 18px;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 2px;
  transition: left .17s;
}
.cookie-modal .toggle-switch[data-checked="true"] .switch-dot { left: 18px; }
.cookie-modal .essential {
  color: #888376;
  font-size: 0.93em;
  font-style: italic;
}
.cookie-modal .cookie-modal-actions {
  display: flex; gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn { font-size: 1em; }
.cookie-modal-close {
  position: absolute;
  top: 17px; right: 20px;
  background: transparent;
  color: #335C67;
  border: none;
  font-size: 1.6em;
  cursor: pointer;
  padding: 2px 7px;
  border-radius: 10px;
  transition: background 0.13s;
}
.cookie-modal-close:hover { background: #FFF3B0; }
@media (max-width: 540px) {
  .cookie-modal {
    min-width: 98vw; width: 98vw; padding: 18px 7px 17px 7px;
  }
}

/* === MISCELLANEOUS === */
ul { list-style: disc; }
ol { list-style: decimal; }
a:focus-visible, button:focus-visible { outline: 2px solid #2A9D8F; outline-offset: 1px; }

.map-snippet img { border-radius: 15px; width: 100%; max-width: 420px; box-shadow: 0 1px 12px 0 rgba(41,131,108,0.07); border: 1px solid #EFEBD9; }

/* === VISUAL EFFECTS === */
.card, .feature-grid > div, .testimonial-card, .highlight-blocks > div {
  transition: box-shadow 0.18s, transform 0.14s, border-color 0.17s;
}

/* === ANIMATIONS === */
@keyframes btn-pop {
  0% { transform: scale(0.94); }
  70% { transform: scale(1.04); }
  100% { transform: none; }
}

.cta-btn:active, .cookie-btn:active {
  animation: btn-pop 0.17s cubic-bezier(.67,.05,1,1.48);
}

/* === PAGE UTILITY CLASSES === */
.content-wrapper.text-section {
  background: #FFF;
  border-radius: 11px;
  box-shadow: 0 1px 9px 0 rgba(180,158,84,0.08);
  padding: 38px 28px;
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .content-wrapper.text-section { padding: 17px 7px; }
}

/* === RESPONSIVE LAYOUTS === */
@media (max-width: 810px) {
  .container { padding-left: 9px; padding-right: 9px; }
}
@media (max-width: 700px) {
  .container { padding-left: 4px; padding-right: 4px; }
}
@media (max-width: 770px) {
  .content-wrapper, .content-wrapper.text-section { gap: 13px; }
}

@media (max-width: 768px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* === ACCESSIBILITY AND SELECTION === */
::selection { background: #FFF3B0; color: #335C67; }

/* === PRINT @media SUPPORT === */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
  a { color: #111 !important; text-decoration: underline !important; }
}
