/* ============ CSS RESET & NORMALIZATION ============ */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F3F4F6;
  color: #292524;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol { padding-left: 1.2em; }
li { margin-bottom: 0.6em; }
a { color: #374151; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #FDBA74; text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.13;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.13rem; margin-bottom: 10px; }
p { margin-bottom: 1.2em; }
strong { color: #EC4899; font-weight: 700; }
em { color: #0796E6; }
address { font-style: normal; }

/***** FLEX & LAYOUT HELPERS *****/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(251, 186, 116, 0.11);
  position: relative;
  animation: floatInUp 0.8s cubic-bezier(.24,1.42,.45,1.04) 0.08s both;
}
@keyframes floatInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.content-wrapper, .text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/***** HERO SECTION *****/
.hero {
  background: linear-gradient(97deg, #FDBA74 0%, #F3F4F6 80%);
  padding: 56px 0;
  border-radius: 0 0 48px 48px;
  box-shadow: 0 8px 40px 0 rgba(251,186,116, 0.166);
}
.hero h1 {
  color: #374151;
  font-size: 2.25rem;
  font-family: 'Montserrat', cursive, sans-serif;
  margin-bottom: 20px;
  text-shadow: 0 4px 28px rgba(251,186,116,0.08);
}
.hero p {
  color: #424242;
  font-size: 1.2rem;
  margin-bottom: 22px;
}
.hero .button.primary {
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  padding: 16px 36px;
}

/***** BUTTONS *****/
.button, button, .button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: #FDBA74;
  color: #292524;
  border: none;
  cursor: pointer;
  margin: 12px 0;
  box-shadow: 0 2px 18px #FDBA7440;
  transition: background 0.2s, transform 0.07s, box-shadow 0.2s;
  gap: 8px;
}
.button.primary:hover, .button:hover {
  background: #fb923c;
  box-shadow: 0 4px 40px #FDBA741e;
  transform: scale(1.045) rotate(-2deg);
}
.button:active { transform: scale(0.97); }

/***** MAIN NAVIGATION *****/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(55, 65, 81, 0.085);
  position: sticky;
  top: 0;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
.main-nav > a img {
  max-height: 44px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin-left: 32px;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 14px;
  border-radius: 20px;
  transition: background 0.16s, color 0.16s;
}
.main-nav li a:hover, .main-nav li a:focus {
  background: #FDBA74;
  color: #292524;
}
.main-nav .button.primary {
  margin-left: 38px;
}
.mobile-menu-toggle {
  display: none;
  background: #FDBA74;
  color: #374151;
  font-size: 2.3rem;
  border: none;
  border-radius: 50%;
  height: 46px;
  width: 46px;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 102;
  align-items: center;
    justify-content: center;
  box-shadow: 0 2px 18px #FDBA742e;
  transition: background 0.16s, box-shadow 0.16s, transform 0.15s;
}
.mobile-menu-toggle:active { transform: scale(0.96); }
.mobile-menu-toggle:focus { outline: 2px solid #FDBA74; }

/***** MOBILE MENU *****/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: 0 12px 64px #37415133;
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.51,.15,.11,.91);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #374151;
  font-size: 2.4rem;
  border: none;
  align-self: flex-end;
  margin: 22px 28px 0 0;
  cursor: pointer;
  transition: color 0.13s, transform 0.11s;
}
.mobile-menu-close:hover { color: #FDBA74; transform: rotate(2deg); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 40px 0 40px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #374151;
  padding: 12px 0;
  border-radius: 18px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:focus, .mobile-nav a:hover { background: #FDBA74; color: #292524; }

/***** FEATURES SECTION & LISTS *****/
.features {
  background: #fffbea;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
  justify-content: space-between;
}
.feature-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 #FDBA7417;
  padding: 32px 28px 28px 28px;
  min-width: 235px;
  flex: 1 1 220px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
}
.feature-item:hover {
  box-shadow: 0 4px 36px #FDBA742e;
  transform: translateY(-3px) rotate(-1.5deg) scale(1.03);
}
.feature-item img {
  width: 48px; height: 48px;
  margin-bottom: 5px;
  animation: icon-bounce 1.2s cubic-bezier(.5,.1,.48,1.17) both;
}
@keyframes icon-bounce {
  0% { transform: translateY(-24px) scale(.8) rotate(-17deg); opacity:.8; }
  50% { transform: translateY(8px) scale(1.07) rotate(7deg); opacity:1; }
  100% { transform: translateY(0) scale(1) rotate(0deg); opacity:1; }
}
.feature-item h3 {
  font-size:1.23rem;
  color: #374151;
  font-weight: 700;
}
.feature-item p {
  font-size: 1rem;
  color: #52525B;
}
.feature-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  color: #fb923c;
  background: #ffe6c5;
  padding: 5px 16px;
  border-radius: 14px;
  margin-top: 6px;
  letter-spacing: 0.2px;
}

/***** SERVICES OVERVIEW *****/
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.service {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #FDBA7412;
  padding: 28px 21px 24px 21px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.19s;
}
.service:hover {
  box-shadow: 0 6px 32px #FDBA7427;
  transform: scale(1.03) rotate(-0.7deg);
}
.service-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: #fb923c; /* slightly more orange accent */
  background: #fff7e6;
  padding: 4px 13px;
  border-radius: 13px;
  align-self: flex-start;
}

/***** PROJECTS & CARDS *****/
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.project-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px #37415118;
  flex: 1 1 280px;
  padding: 28px 22px 19px 22px;
  margin-bottom: 20px;
  min-width: 240px;
  transition: box-shadow 0.2s, transform 0.21s;
}
.project-card:hover {
  box-shadow: 0 8px 38px #FDBA742e;
  transform: scale(1.04) rotate(1.5deg);
}

/***** TESTIMONIALS SLIDER *****/
.testimonials {
  background: #fffbea;
  border-radius: 36px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px #FDBA7416;
  padding: 20px 22px 18px 22px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.14s;
  color: #374151;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px #FDBA7428;
  color: #292524;
  transform: scale(1.025) rotate(-2deg);
}
.testimonial-card p {
  font-size: 1.13rem;
  font-weight: 600;
  color: #374151;
}
.testimonial-card span {
  font-family: 'Montserrat', cursive, sans-serif;
  color: #fb923c;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 8px;
}

/***** CTA SECTION *****/
.cta {
  background: #ffe7cb;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 4px 28px #FDBA741a;
}
.cta h2 {
  color: #374151;
  margin-bottom: 10px;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
}
.cta p {
  color: #424242;
  font-size: 1.16rem;
  margin-bottom: 22px;
}
.cta .button.primary {
  margin: 0 auto;
}

/***** FOOTER *****/
footer {
  background: #374151;
  color: #fff;
  padding: 44px 0 32px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 56px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.footer-nav, .footer-contact, .footer-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-nav a {
  color: #FDBA74;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 17px;
  padding: 5px 12px;
  background: transparent;
  transition: background 0.15s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FDBA74;
  color: #374151;
}
.footer-contact {
  color: #fff;
  font-size: 1rem;
  gap: 7px;
  flex-wrap: wrap;
}
.footer-contact a {
  color: #FDBA74;
  font-weight: 600;
}
.footer-brand {
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  height: 38px; width: 38px;
}
.footer-brand span {
  font-size: 1.13rem;
  font-family: 'Montserrat', cursive, sans-serif;
  color: #FDBA74;
  font-weight: 700;
}

/***** GENERIC CARD & FLEX CONTAINERS *****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px #FDBA7412;
  padding: 22px 20px;
  flex: 1 1 230px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px #FDBA7421;
}
.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;
}

/***** ABOUT PAGE & CONTENT TEXT SECTIONS *****/
.text-section {
  background: none;
  box-shadow: none;
  border-radius: 0;
  gap: 16px;
}
.text-section ul {
  padding-left: 1.3em;
  list-style-type: disc;
}
.text-section ul li {
  font-size: 1em;
}

/***** FORMS, CONTACT MAP, MISC. *****/
.contact-hint {
  background: #ffe6c5;
  color: #42341a;
  font-size: 1em;
  margin-top: 18px;
  border-radius: 13px;
  padding: 9px 17px;
  font-weight: 600;
}
.map-placeholder {
  margin-top: 18px;
  background: #FDBA74;
  color: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 1px 12px #FDBA7419;
}
address {
  margin-bottom: 12px;
  color: #374151;
  font-weight: 600;
}

/***** THANK YOU SECTION *****/
.thank-you-section {
  text-align: center;
}

/***** GARDEN / DIY / WORKSHOP COLORS *****/
.garden-services, .garden-diy, .workshop-list {
  background: #fdf6e3;
}
.garden-services h1, .garden-diy h2, .workshop-list h1 {
  color: #374151;
}

/***** PRIVACY, TERMS ETC PAGES *****/
.privacy-policy, .terms-of-use, .gdpr-policy, .cookie-policy {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 16px #FDBA7412;
  padding: 40px 20px;
}

/***** ANIMATION & INTERACTION EFFECTS *****/
.card, .feature-item, .service, .project-card, .testimonial-card {
  transition: box-shadow .2s, transform .19s, color 0.18s;
}
.card:focus, .feature-item:focus, .service:focus, .project-card:focus, .testimonial-card:focus {
  outline: 2.5px dashed #FDBA74;
  outline-offset: 3px;
}
.button:focus, .button.primary:focus {
  outline: 2.5px solid #FDBA74;
}

/***** COOKIE CONSENT BANNER & MODAL *****/
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fffbea;
  color: #374151;
  z-index: 900;
  box-shadow: 0 -2px 24px #FDBA7411;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 22px 18px;
  gap: 18px;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: transform 0.3s;
}
.cookie-banner button {
  min-width: 120px;
  font-size: 1rem;
  margin: 0 4px;
  padding: 10px 20px;
  border-radius: 24px;
  border: none;
  background: #FDBA74;
  color: #374151;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  box-shadow: 0 2px 18px #FDBA7414;
  transition: background 0.14s, color 0.13s, box-shadow 0.13s, transform 0.12s;
}
.cookie-banner button:hover, .cookie-banner button:focus { background: #fb923c; color: #fff; }
.cookie-banner button.cookie-settings {
  background: #374151;
  color: #FDBA74;
  border: 2px solid #FDBA74;
  margin-left: 8px;
}
.cookie-banner button.cookie-settings:hover { background: #FDBA74; color: #374151; border-color: #374151; }

.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, 50%);
  min-width: 320px; max-width: 95vw;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 64px #FDBA7422;
  padding: 38px 30px 30px 30px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .3s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: #374151;
  margin-bottom: 9px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.cookie-switch {
  width: 44px;
  height: 26px;
  appearance: none;
  background: #F3F4F6;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: 2px solid #FDBA74;
  transition: background 0.13s, border 0.13s;
}
.cookie-switch:checked {
  background: #fb923c;
}
.cookie-switch:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.14s;
}
.cookie-switch:checked:before {
  left: 22px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  background: #FDBA74;
  color: #374151;
  font-weight: 700;
  border: none;
  border-radius: 21px;
  padding: 9px 23px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 12px #FDBA7414;
  transition: background 0.12s, color 0.13s;
}
.cookie-modal .modal-actions button:hover {
  background: #fb923c;
  color: #fff;
}

/***** MEDIA QUERIES: RESPONSIVE DESIGN *****/
@media (max-width: 980px) {
  .features-grid, .services-list, .project-list, .testimonial-slider {
    flex-direction: column;
    gap: 28px;
  }
  .main-nav ul { gap: 10px; }
  .feature-item, .service, .project-card, .testimonial-card {
    min-width: 90%;
    flex: 1 1 98%;
    padding: 24px 13px 17px 13px;
  }
  .card { min-width: 90%; }
}

@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .main-nav ul,
  .main-nav .button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .hero {
    padding: 36px 0 30px 0;
    border-radius: 0 0 21px 21px;
  }
  section, .section {
    padding: 27px 4px;
    margin-bottom: 40px;
    border-radius: 9px;
  }
  .footer-brand img { height: 30px; width: 30px; }
  .footer-brand span { font-size: 1rem; }
}
@media (max-width: 616px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  .container {
    padding-left: 2px; padding-right: 2px;
  }
  .cta {
    border-radius: 12px;
    padding: 18px 3px;
  }
  .feature-item img { width: 34px; height: 34px; }
  .main-nav > a img { max-height: 33px; }
}
@media (max-width: 520px) {
  .mobile-menu {
    min-width: 0;
    padding: 0 0;
    font-size: 0.97rem;
  }
  .cookie-modal {
    padding: 22px 6px 17px 6px;
    border-radius: 15px;
  }
}

/***** FONTS: IMPORT & FALLBACKS *****/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/***** PLAYFULIZED HEADING FONTS + COLORS *****/
h1, h2, h3, .footer-brand span {
  font-family: 'Montserrat', cursive, sans-serif;
  background-image: linear-gradient(90deg, #FDBA74 40%, #fd73a8 70%, #fae278 100%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: heading-colorwave 12s linear infinite;
}
@keyframes heading-colorwave {
  0% { background-position: 0 80%; }
  100% { background-position: 200% 80%; }
}

/***** MISC STYLE POLISHES *****/
::-webkit-scrollbar {
  width: 12px;
  background: #ffe7cb;
}
::-webkit-scrollbar-thumb {
  background: #FDBA74;
  border-radius: 22px;
}

/***** Z-INDEX LAYERS FOR OVERLAYS *****/
.mobile-menu { z-index: 120; }
.cookie-banner { z-index: 900; }
.cookie-modal { z-index: 1200; }
header {z-index: 30;}

/***** HIGHLIGHT ANIMATIONS FOR INTERACTIONS *****/
.card, .feature-item, .service, .project-card, .testimonial-card {
  will-change: transform;
}
@media (max-width: 438px) {
  .footer-nav, .footer-contact, .footer-brand {
    gap: 9px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-contact { font-size: 0.97rem; }
}

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