/* --- CSS RESET & BASE STYLES --- */
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, font, 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F4F1EB;
  color: #304738;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #205441;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.7,.2,.2,1);
}
a:hover, a:focus {
  color: #E4A023;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* --- BRAND COLORS AS CSS VARIABLES --- */
:root {
  --pr-primary: #205441;
  --pr-secondary: #F4F1EB;
  --pr-accent: #E4A023;
  --pr-accent-dark: #AD7700;
  --pr-contrast: #fff;
  --pr-grey: #EFEFEF;
  --pr-shadow: rgba(32,84,65,0.08);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--pr-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(32,84,65,0.06);
}
h1 { font-size: 2.7rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.18rem; margin-bottom: 14px; color: var(--pr-accent-dark); }
h4 { font-size: 1.08rem; }
p, li, span, a, strong {
  font-size: 1rem;
  line-height: 1.6;
}
strong { font-weight: 600; }

@media (min-width: 600px) {
  h1 { font-size: 3.1rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.4rem; }
  p, li, span, a, strong { font-size: 1.04rem; }
}

/* --- CONTAINERS & BASIC STRUCTURE --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pr-secondary);
  border-radius: 28px;
  box-shadow: 0 4px 24px var(--pr-shadow);
}

@media (max-width: 768px) {
  .section { padding: 25px 6px; margin-bottom: 42px; border-radius: 16px; }
  .container { padding: 0 6px; }
}

/* --- HEADER & NAV --- */
header {
  background: var(--pr-contrast);
  box-shadow: 0 2px 12px var(--pr-shadow);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  min-height: 73px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  padding: 7px 20px;
  border-radius: 20px;
  transition: background 0.15s;
  position: relative;
  color: var(--pr-primary);
  font-weight: 500;
}
.main-nav a:not(.cta-primary):hover, .main-nav a:not(.cta-primary):focus {
  background: var(--pr-grey);
  color: var(--pr-accent-dark);
}
.cta-primary {
  background: var(--pr-accent);
  color: var(--pr-contrast)!important;
  font-weight: 700;
  border-radius: 55px;
  box-shadow: 0 2px 14px var(--pr-shadow);
  padding: 9px 28px;
  margin-left: 10px;
  font-size: 1.08rem;
  transition: background 0.2s, transform 0.16s cubic-bezier(.7,.2,.2,1);
  letter-spacing: 0.01em;
  border: none;
  outline: none;
  display: inline-block;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--pr-accent-dark);
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
}
.cta-secondary {
  background: none;
  color: var(--pr-accent-dark);
  border: 2px solid var(--pr-accent);
  border-radius: 55px;
  padding: 9px 28px;
  font-weight: 700;
  font-size: 1.02rem;
  transition: background 0.18s, border 0.18s;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--pr-accent);
  color: var(--pr-contrast);
  border: 2px solid var(--pr-accent-dark);
}

.mobile-menu-toggle {
  background: var(--pr-secondary);
  color: var(--pr-primary);
  font-size: 2.2rem;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px var(--pr-shadow);
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: background 0.16s;
  z-index: 99;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--pr-grey);
}

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

/* --- MOBILE NAV MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(110deg, var(--pr-secondary) 75%, #ffe7c1 100%);
  box-shadow: -4px 0 30px var(--pr-shadow);
  z-index: 110;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--pr-accent-dark);
  font-size: 2.4rem;
  align-self: flex-end;
  margin: 20px 24px 10px 0;
  cursor: pointer;
  z-index: 120;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--pr-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  align-items: center;
  font-size: 1.35rem;
}
.mobile-nav a {
  background: var(--pr-grey);
  color: var(--pr-primary);
  padding: 13px 32px;
  border-radius: 2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  width: 80vw;
  text-align: center;
  transition: background 0.17s, color 0.17s;
  box-shadow: 0 2px 6px var(--pr-shadow);
  margin: 0 auto;
}
.mobile-nav a.cta-primary {
  background: var(--pr-accent);
  color: #fff!important;
  font-size: 1.13rem;
  margin-top: 12px;
}
.mobile-nav a:hover {
  background: var(--pr-accent-dark);
  color: #fff;
}

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

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(95deg, #F9F7EF 80%, #FFDA60 130%);
  border-radius: 22px;
  margin-bottom: 48px;
  box-shadow: 0 6px 24px var(--pr-shadow);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
  min-height: 330px;
  padding: 45px 18px 32px 18px;
}
.hero h1 {
  color: var(--pr-accent-dark);
  font-size: 2.65rem;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.1;
  margin-bottom: 19px;
  text-shadow: 0 2px 8px #fff7;
}
.hero p {
  font-size: 1.17rem;
  color: var(--pr-primary);
  margin-bottom: 24px;
  font-weight: 500;
  max-width: 48em;
}
.hero .cta-primary {
  margin-top: 8px;
}
@media (min-width: 650px) {
  .hero .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    min-height: 280px;
  }
}
@media (max-width:600px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
}

/* --- FLEXBOX LAYOUT PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 4px 24px var(--pr-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 23px 23px 16px 23px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.19s cubic-bezier(.67,.12,.03,1), box-shadow 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 38px var(--pr-shadow), 0 0 0 2px var(--pr-accent-dark);
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}
.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 22px;
  background: var(--pr-contrast);
  border-radius: 17px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px var(--pr-shadow);
  position: relative;
  min-width: 190px;
  max-width: 630px;
  transition: box-shadow 0.13s, transform 0.14s;
}
.testimonial-card p {
  color: #2a3533;
  font-size: 1.07rem;
  font-style: italic;
}
.testimonial-card span {
  color: var(--pr-accent-dark);
  font-weight: 600;
  font-size: 0.98rem;
}
.testimonial-card:before {
  content: '\2605';
  font-size: 2.1rem;
  color: var(--pr-accent);
  margin-right: 12px;
  margin-left: -13px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 22px var(--pr-shadow), 0 0 0 2px var(--pr-accent-dark);
  transform: scale(1.02) rotate(-1deg);
  z-index: 2;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div {
  background: #fff;
  padding: 22px 17px 15px 17px;
  border-radius: 17px;
  box-shadow: 0 3px 14px var(--pr-shadow);
  min-width: 190px;
  max-width: 285px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.15s, transform 0.15s;
  position: relative;
}
.features-grid > div:hover { 
  box-shadow: 0 12px 32px var(--pr-shadow);
  transform: translateY(-6px) scale(1.03) rotate(1deg);
}
.features-grid img {
  width: 40px; height: 40px;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 8px #e4a02322);
  animation: bounceIn 1.2s cubic-bezier(.67,.12,.03,1) 1;
}

@media (max-width:900px) {
  .features-grid { gap: 18px; justify-content: center; }
  .features-grid > div { max-width: 100%; flex: 1 1 80vw; }
}
@media (max-width:700px) {
  .features-grid { flex-direction: column; }
}
@media (max-width: 768px) {
  .content-grid, .text-image-section { flex-direction: column; gap: 17px; }
}

/* --- BADGES & SPECIAL ELEMENTS --- */
.pet-friendly-badge {
  display: inline-block;
  background: var(--pr-accent);
  color: #fff;
  border-radius: 16px;
  padding: 7px 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.02rem;
  box-shadow: 0 2px 8px #e4a02322;
  margin-top: 18px;
  animation: badgePop 0.6s cubic-bezier(.3,1.7,.4,1) 1;
}
@keyframes badgePop {
  0% { transform: scale(0); }
  55% { transform: scale(1.13); }
  80% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--pr-accent);
  color: #fff;
  border-radius: 19px;
  margin-bottom: 54px;
  box-shadow: 0 8px 28px var(--pr-shadow);
  animation: bannerWobble 1s cubic-bezier(.3,1.3,.7,1) 1;
}
.cta-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 35px 8px 32px 8px;
  gap: 10px;
}
.cta-banner h2 {
  color: #fff;
  text-shadow: 0 2px 8px #c48a0a3a;
  margin-bottom: 15px;
}
.cta-banner p {
  color: #fffdf5;
  font-size: 1.13rem;
  margin-bottom: 18px;
}
@keyframes bannerWobble {
  0% {transform: scale(0.92) rotate(-2deg);}
  40%{transform: scale(1.06) rotate(2deg);}
  65%{transform: scale(0.97) rotate(-2deg);}
  100% {transform: scale(1) rotate(0);}
}

/* --- SPECIAL OFFER --- */
.special-offer {
  background: #fff7d5;
  color: var(--pr-accent-dark);
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 2px 8px #e4a02324;
  margin: 14px 0 10px;
  display: inline-block;
  animation: badgePop 0.7s cubic-bezier(.25,1.4,.44,1) 1;
}

/* --- THANK YOU PAGE --- */
.thank-you-next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 18px;
  margin-left: 18px;
}

/* --- CONTACT HIGHLIGHTS --- */
.contact-info-highlight {
  background: #f7fbf4;
  color: var(--pr-accent-dark);
  border-left: 6px solid var(--pr-accent);
  padding: 10px 18px;
  border-radius: 13px 0 0 13px;
  font-weight: 700;
}

/* --- FOOTER --- */
footer {
  background: var(--pr-primary);
  color: #fff;
  padding: 32px 0 0 0;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
footer .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--pr-accent);
}
footer img {
  width: 40px;
  margin-bottom: 13px;
  filter: drop-shadow(0 2px 8px #fc0a);
}
footer p {
  color: #f4f1eb;
  font-size: 0.99rem;
  margin-bottom: 7px;
}

@media (max-width: 820px) {
  footer .container, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* --- ANIMATIONS --- */
@keyframes bounceIn {
  0%   { transform: scale(0.2) rotate(-8deg); opacity: 0;}
  55%  { transform: scale(1.1) rotate(8deg);  opacity: 1;}
  80%  { transform: scale(0.97) rotate(-4deg); }
  100% { transform: scale(1) rotate(0);}
}

/* --- BUTTONS --- */
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  border: none;
  border-radius: 22px;
  padding: 9px 22px;
  background: var(--pr-accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 12px var(--pr-shadow);
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.18s, transform 0.15s;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: var(--pr-accent-dark);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 7px 19px #ad770024;
}

/* --- LIST STYLES --- */
ul li {
  padding-left: 24px;
  margin-bottom: 13px;
  position: relative;
  color: #304738;
  font-size: 1.02rem;
}
ul li:before {
  content: '✔';
  color: var(--pr-accent);
  margin-right: 8px;
  font-size: 1.05rem;
  position: absolute;
  left: 0;
}

/* --- FORM ELEMENTS --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 8px 13px;
  border-radius: 12px;
  border: 1.6px solid var(--pr-grey);
  margin-bottom: 15px;
  background: #fff;
  outline: none;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.6px solid var(--pr-accent-dark);
}
label { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.02rem; font-weight: 500; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe7;
  box-shadow: 0 -4px 24px #20544111;
  padding: 15px 19px 14px 17px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  justify-content: center;
  animation: bannerSlideUp 0.6s cubic-bezier(.17,.67,.49,1.1) 1;
  font-family: 'Montserrat', Arial, sans-serif;
}
@keyframes bannerSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: #4a441c;
  font-size: 1rem;
  margin-bottom: 3px;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-buttons .cookie-accept {
  background: var(--pr-accent);
  color: #fff;
  padding: 7px 19px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: 0 2px 8px #f6b51334;
  border: none;
}
.cookie-buttons .cookie-accept:hover, .cookie-buttons .cookie-accept:focus {
  background: var(--pr-accent-dark);
}
.cookie-buttons .cookie-reject {
  background: #fff;
  color: var(--pr-accent);
  border: 2px solid var(--pr-accent);
  border-radius: 18px;
  padding: 7px 19px;
  font-weight: 600;
  font-size: 0.98rem;
}
.cookie-buttons .cookie-reject:hover, .cookie-buttons .cookie-reject:focus {
  border-color: var(--pr-accent-dark);
  color: var(--pr-accent-dark);
}
.cookie-buttons .cookie-settings {
  background: none;
  color: var(--pr-primary);
  border: none;
  padding: 7px 19px;
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.98rem;
}
.cookie-buttons .cookie-settings:hover, .cookie-buttons .cookie-settings:focus {
  color: var(--pr-accent-dark);
  text-decoration: none;
}

/* --- COOKIE MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 10000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: modalFadeIn 0.2s cubic-bezier(.67,.09,.09,.99) 1;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: var(--pr-secondary);
  border-radius: 22px;
  max-width: 410px;
  width: 94vw;
  box-shadow: 0 8px 36px #2054411a;
  padding: 30px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
  animation: badgePop 0.3s cubic-bezier(.22,.8,.44,1) 1;
  position: relative;
}
.cookie-modal h2 {
  color: var(--pr-primary);
  font-size: 1.27rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 13px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--pr-accent);
  margin-top: 0; margin-bottom: 0;
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  color: var(--pr-accent-dark);
  font-size: 2.1rem;
  position: absolute;
  top: 11px;
  right: 16px;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--pr-primary);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 670px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .features-grid { gap: 11px; }
  .section { padding: 21px 4px; }
}

@media (max-width: 440px) {
  .container { padding: 0 3px; }
  h1 { font-size: 1.4rem; }
}

/* --- PLAYFUL & DYNAMIC EFFECTS --- */
.features-grid img, .cta-primary, .cta-secondary, .feature-item {
  will-change: transform;
  transition: transform 0.14s, box-shadow 0.14s, background 0.15s;
}
.features-grid > div:hover img {
  animation: bounceIn 0.7s cubic-bezier(.5,1.6,.4,1) 1;
}

section, .card, .features-grid > div, .testimonial-card, .cta-primary, .cta-secondary, .pet-friendly-badge {
  box-shadow: 0 2px 12px var(--pr-shadow);
}

/* --- MISC --- */
::-webkit-input-placeholder { color: #b4b4b4; opacity:1; }
::-moz-placeholder { color: #b4b4b4; opacity:1; }
:-ms-input-placeholder { color: #b4b4b4; opacity:1; }
::placeholder { color: #b4b4b4; opacity:1; }

::-webkit-scrollbar { width: 8px; background: #e7eccb; }
::-webkit-scrollbar-thumb { background: #d6e1c2; border-radius: 8px; }

/* --- END OF STYLE.CSS --- */
