/* =================================================================
   CSS RESET & NORMALIZE
================================================================= */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background: #fff;
  color: #222;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #264072;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.7rem;
}
h3 {
  font-size: 1.2rem;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
  height: auto;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
ul li,strong {
  font-size: 1em;
}
a {
  color: #388655;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #264072;
  text-decoration: underline;
}
strong {
  font-weight: 700;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =================================================================
   COLORS & CREATIVE ARTISTIC THEME
================================================================= */
:root {
  --primary: #264072;
  --secondary: #DCE4EF;
  --accent: #66A979;
  --neutral: #ffffff;
  --text: #232740;
  --vibe-yellow: #F7D774;
  --vibe-pink: #F7BED7;
  --vibe-coral: #FF7979;
  --vibe-blue: #61A6F7;
  --shadow: 0 6px 28px 0 rgba(68,84,131,0.12);
}

body {
  background: var(--neutral);
  color: var(--text);
}

/* =================================================================
   HEADER & NAVIGATION
================================================================= */
header {
  background: var(--secondary);
  box-shadow: 0 2px 12px rgba(38,64,114,0.07);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 102;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img {
  display: block;
  width: 148px;
  min-width: 90px;
  height: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-left: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(102,169,121,0.06);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 2px 8px 0 rgba(102,169,121,0.18);
  text-decoration: none;
}
.btn {
  appearance: none;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 28px;
  border: none;
  font-weight: 700;
  font-size: 1.07rem;
  transition: background 0.16s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  box-shadow: 0 2px 8px 0 rgba(38,64,114,0.08);
  margin-left: 16px;
  outline: none;
  letter-spacing: 0.04em;
  text-align: center;
  display: inline-block;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--vibe-blue);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(38,64,114,0.15);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover, .btn-accent:focus {
  background: var(--vibe-coral);
  color: #fff;
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 8px 32px 0 rgba(102,169,121,0.19);
}

/* =================================================================
   MOBILE MENU (BURGER NAVIGATION)
================================================================= */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 2.1rem;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  transition: background 0.2s, transform 0.13s;
  z-index: 105;
}
.mobile-menu-toggle:active {
  background: var(--accent);
  transform: scale(1.09);
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 310px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 24px 0 rgba(38,64,114,0.19);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.56,.11,.55,1.1);
  z-index: 2002;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 38px 32px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.19s;
}
.mobile-menu-close:hover {
  background: var(--vibe-coral);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.17rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  font-weight: 600;
  background: transparent;
  border-radius: 10px;
  padding: 10px 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 1020px) {
  header .container {
    gap: 8px;
  }
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 6px;
  }
}
@media (max-width: 800px) {
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Hide scrollbar in mobile menu */
.mobile-menu::-webkit-scrollbar {
  display: none;
}
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
  content: "";
  position: fixed;
  z-index: 2001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38,64,114,0.13);
  display: none;
}
.mobile-menu.open ~ .mobile-menu-overlay {
  display: block;
}

/* =================================================================
   HERO / CTA / CREATIVE DECOR
================================================================= */
.hero-section {
  background: linear-gradient(120deg, var(--secondary) 75%, var(--vibe-yellow) 100%);
  min-height: 390px;
  border-radius: 0 0 70px 0;
  box-shadow: 0 12px 36px 0 rgba(247,215,116,0.07);
  display: flex;
  align-items: center;
}
.hero-section .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero-section h1 {
  color: var(--vibe-coral);
  font-size: 2.5rem;
  line-height: 1.18;
  text-shadow: 0 2px 0px var(--vibe-yellow), 0 6px 24px rgba(102,169,121,.08);
  letter-spacing: 0.01em;
}
.hero-section .subheadline {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 18px;
  max-width: 540px;
}
.hero-section .btn-accent {
  margin-top: 10px;
  border: 2px solid var(--accent);
  font-size: 1.18rem;
  letter-spacing: 0.03em;
}

.cta-section {
  background: var(--accent);
  color: #fff;
  border-radius: 54px;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
  padding: 44px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section h2 {
  color: #fff;
}
.cta-section .btn-primary{
  margin-top: 16px;
  background: #fff;
  color: var(--accent);
  border: 2px solid #fff;
}
.cta-section .btn-primary:hover {
  background: var(--vibe-coral);
  color: #fff;
  border-color: var(--vibe-coral);
}

/* =================================================================
   CARD, SECTION, FEATURE, FLEXBOX COMPONENTS
================================================================= */
.feature-grid, .blog-teasers, .guide-teasers, .product-listing, .blog-articles, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div, .blog-teasers > article, .guide-teasers > .guide-card, .product-listing > .product-card, .blog-articles > article, .testimonial-slider > .testimonial-card {
  flex: 1 1 270px;
  background: var(--secondary);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  min-width: 220px;
  min-height: 180px;
  margin-bottom: 20px;
  border: 3px solid transparent;
  transition: border 0.18s, box-shadow 0.19s, transform 0.19s;
}
.feature-grid > div:hover, .blog-teasers > article:hover, .guide-teasers > .guide-card:hover, .product-listing > .product-card:hover, .blog-articles > article:hover, .testimonial-slider > .testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 40px 0 rgba(102,169,121,0.18);
  transform: translateY(-2px) scale(1.025);
  z-index: 3;
}
.feature-grid img, .product-listing img {
  margin-bottom: 10px;
  width: 48px;
  height: 48px;
}
.feature-grid h3, .blog-teasers h3 {
  color: var(--vibe-coral);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.guide-card a, .blog-teasers a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background: var(--accent);
  color: #fff;
  border-radius: 22px;
  padding: 8px 14px;
  margin-top: 10px;
  align-self: flex-start;
}
.guide-card a:hover, .blog-teasers a:hover {
  background: var(--vibe-coral);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px;
  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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 2px solid var(--vibe-blue);
  box-shadow: 0 1px 10px 0 rgba(97,166,247,0.13);
  border-radius: 22px;
  min-width: 260px;
  max-width: 370px;
  position: relative;
  font-size: 1.08rem;
}
.testimonial-card p {
  color: #222;
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.stars {
  color: var(--accent);
  letter-spacing: 0.12em;
  font-size: 1.12em;
  vertical-align: baseline;
}
/* Testimonials Section Container */
.testimonials-section {
  background: var(--secondary);
  border-radius: 0 0 44px 0;
  box-shadow: 0 1px 12px 0 rgba(38,64,114,0.06);
}

/* Blog list - creative color stripes */
.blog-articles > article {
  border-left: 8px solid var(--vibe-coral);
  border-right: 8px solid var(--vibe-yellow);
}
.blog-articles > article:nth-child(2) {
  border-left: 8px solid var(--vibe-blue);
  border-right: 8px solid var(--vibe-pink);
}
.blog-articles > article:last-child {
  border-left: 8px solid var(--accent);
  border-right: 8px solid var(--primary);
}
.article, .guide-card {
  position: relative;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Shop Filters */
.shop-filters {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  margin: 14px 0;
  background: var(--secondary);
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 1em;
  box-shadow: 0 1px 7px 0 rgba(38,64,114,0.08);
  display: flex;
  flex-direction: row;
  gap:12px;
}
.shop-filters strong { color: var(--accent); }

/* Product card distinct accent */
.product-card {
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(102,169,121,0.05);
  padding: 18px 16px 14px 16px;
  margin-bottom: 20px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.18s, border 0.18s, transform 0.17s;
  position: relative;
}
.product-card:hover {
  border-color: var(--vibe-coral);
  box-shadow: 0 8px 36px 0 rgba(102,169,121,0.23);
  transform: scale(1.025);
}

/* =================================================================
   FORMS, LINKS & DECORATIVE STATES
================================================================= */
::-webkit-input-placeholder { color: var(--primary); }
::-moz-placeholder { color: var(--primary); }
:-ms-input-placeholder { color: var(--primary); }
::placeholder { color: var(--primary); }
textarea, input, select, button {
  font-family: inherit;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--accent);
}

/* =================================================================
   FOOTER
================================================================= */
footer {
  background: var(--primary);
  color: #fff;
  border-radius: 70px 0 0 0;
  margin-top: 32px;
  box-shadow: 0 -8px 30px 0 rgba(38,64,114,0.11);
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 24px;
}
.logo-footer img {
  width: 110px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  background: rgba(247,215,116,0.06);
  border-radius: 7px;
  padding: 7px 12px;
  transition: background 0.18s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--vibe-yellow);
  color: var(--primary);
}
.footer-contact {
  font-size: 0.98rem;
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact a {
  color: var(--vibe-blue);
  text-decoration: underline;
  transition: color 0.17s;
}
.footer-contact a:hover {
  color: var(--vibe-coral);
}

/* =================================================================
   COOKIE CONSENT BANNER (BOTTOM FIXED)
================================================================= */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: fixed;
  z-index: 3100;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 24px;
  background: var(--secondary);
  color: var(--text);
  box-shadow: 0 -2px 24px 0 rgba(38,64,114,0.21);
  border-top: 3px solid var(--accent);
  font-size: 1.01rem;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s, opacity 0.3s;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-banner .btn {
  padding: 8px 17px;
  font-size: 1rem;
  border-radius: 19px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin: 0;
  box-shadow: none;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
}
.cookie-banner .btn:hover {
  background: var(--vibe-coral);
  color: #fff;
  border-color: var(--vibe-coral);
}
.cookie-banner .btn-settings {
  background: #fff;
  color: var(--primary);
  border-color: var(--vibe-blue);
}
.cookie-banner .btn-settings:hover {
  background: var(--vibe-blue);
  color: #fff;
}
/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3101;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(38,64,114,0.21);
  display: none;
}
.cookie-modal-overlay.visible {
  display: block;
}
.cookie-modal {
  position: fixed;
  z-index: 3102;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #fff;
  color: var(--text);
  width: 95vw;
  max-width: 420px;
  border-radius: 26px;
  box-shadow: 0 13px 48px 0 rgba(38,64,114,0.26);
  padding: 32px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.27s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  color: var(--vibe-blue);
  font-size: 1.23rem;
  margin-bottom:8px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
}
.cookie-modal .cookie-switch {
  width: 48px;
  height: 28px;
  border-radius: 22px;
  background: var(--secondary);
  position: relative;
  cursor: pointer;
  border: 1px solid var(--accent);
}
.cookie-modal .cookie-switch input { display: none; }
.cookie-modal .cookie-slider {
  display: block;
  width: 100%; height: 100%;
  border-radius: 22px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 85%);
}
.cookie-modal .cookie-switch.disabled .cookie-slider {
  background: #ccc;
}
.cookie-modal .cookie-knob {
  position: absolute;
  left: 2px; top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  transition: left 0.17s;
}
.cookie-modal .cookie-switch input:checked ~ .cookie-knob {
  left: 22px;
  border-color: var(--primary);
}
.cookie-modal .cookie-actions {
  gap: 14px;
}
.cookie-modal .btn-close-modal {
  align-self: flex-end;
  font-size: 1.2rem;
  color: var(--primary);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: -11px 0 0 0;
}

/* =================================================================
   RESPONSIVE & ADAPTIVE
================================================================= */
@media (max-width: 1180px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 1000px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  footer .container {
    padding: 16px 6px;
  }
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 9px;
  }
}
@media (max-width: 700px) {
  section {
    margin-bottom: 36px;
    padding: 28px 6px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .feature-grid, .blog-teasers, .blog-articles, .product-listing, .guide-teasers, .testimonial-slider {
    gap: 12px;
  }
  .feature-grid > div, .blog-teasers > article, .guide-teasers > .guide-card, .product-listing > .product-card, .blog-articles > article, .testimonial-slider > .testimonial-card {
    padding: 18px 10px;
    min-width: unset;
    min-height: unset;
    font-size: .98em;
  }
  .hero-section {
    min-height: unset;
    border-radius: 0 0 32px 0;
    padding-bottom: 20px;
  }
  footer {
    border-radius: 38px 0 0 0;
  }
}
@media (max-width: 768px) {
  .text-image-section, .content-grid, .feature-grid, .blog-teasers, .guide-teasers, .product-listing, .blog-articles, .testimonial-slider, .card-container {
    flex-direction: column !important;
    gap: 16px;
    align-items: stretch !important;
  }
  .section {
    padding: 20px 2px;
  }
  .main-nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.42rem;
  }
  h2 {
    font-size: 1.17rem;
  }
  .logo img, .logo-footer img {
    width: 75px;
  }
}

/* =================================================================
   TYPOGRAPHY & CREATIVE FONTS
================================================================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6,
.btn, .main-nav a, .mobile-nav a, .feature-grid h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.text-section ul li {
  margin-bottom: 8px;
}

/* =================================================================
   ARTISTIC ELEMENTS
================================================================= */
.section {
  background: linear-gradient(110deg, #fff 84%, var(--vibe-pink) 100%) no-repeat;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 33px;
  box-shadow: 0 0 0 rgba(0,0,0,0.01);
  position: relative;
}
.section::before {
  content: '';
  position: absolute;
  top: -22px;
  right: -22px;
  width: 66px;
  height: 66px;
  background: var(--vibe-yellow);
  border-radius: 30% 70% 70% 30%;
  opacity: 0.15;
  z-index: 0;
}
.section::after {
  content: '';
  position: absolute;
  bottom: -26px;
  left: -16px;
  width: 77px;
  height: 66px;
  background: var(--vibe-coral);
  border-radius: 70% 30% 40% 80%;
  opacity: 0.15;
  z-index: 0;
}
.section > * {
  position: relative;
  z-index: 1;
}
/* Extra Illustrative for some featured sections */
.features-section {
  background: linear-gradient(100deg, #fff 89%, var(--accent) 101%) no-repeat;
  border-radius: 40px;
  position: relative;
}
.features-section::before {
  background: var(--vibe-coral);
  right: auto; left: -18px; top: -8px; width: 55px; height: 55px;
  border-radius: 55% 45% 38% 62%;
}
.features-section::after {
  background: var(--vibe-blue);
  bottom: -16px; left: auto; right: -14px; width: 44px; height: 44px;
  border-radius: 35% 65% 65% 35%;
}

/* =================================================================
   MICROINTERACTIONS
================================================================= */
.btn, .main-nav a, .mobile-nav a, .guide-card a, .product-card a {
  outline: none;
  transition: background .18s, color .16s, box-shadow .19s, transform .17s;
}
.btn:focus, .main-nav a:focus, .mobile-nav a:focus, .guide-card a:focus, .product-card a:focus {
  box-shadow: 0 0 0 3px var(--vibe-yellow);
}
.product-card a:hover { filter: brightness(1.07); }
.card, .testimonial-card, .guide-card, .product-card {
  transition: box-shadow .17s, transform .14s;
}

/* Subtle card hover wiggle */
@media (hover: hover) {
  .guide-card:hover, .product-card:hover, .feature-grid > div:hover, .testimonial-card:hover {
    animation: wiggle 0.22s cubic-bezier(.31,.56,.56,1.4);
  }
  @keyframes wiggle {
    0% {transform: rotate(-2deg) scale(1.01); }
    33% {transform: rotate(1.4deg) scale(1.035);}
    100% {transform: rotate(0) scale(1.025);}
  }
}

/* =================================================================
   MISC SPACING
================================================================= */
.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; }

/* =================================================================
   SPECIAL: THANK-YOU PAGE
================================================================= */
.thank-you-section {
  background: linear-gradient(120deg, #fff 80%, var(--vibe-yellow) 100%) no-repeat;
  box-shadow: 0 3px 22px 0 rgba(247,215,116,.09);
  border-radius: 38px 38px 0 38px;
  text-align: center;
}
.next-steps h2 {
  color: var(--accent);
  font-size: 1.25rem;
}
.next-steps ul {
  margin: 14px 0;
}

/* =================================================================
   CARD/TESTIMONIAL COLOR CONTRAST (Focus)
================================================================= */
.testimonial-card,
.blog-articles > article,
.product-card,
.guide-card {
  background: #fff;
  color: #232740;
  border-color: var(--accent);
}
.testimonial-meta,
.stars {
  color: var(--accent) !important;
}

/* Contrast focus for reviews */
.testimonials-section {
  background: var(--secondary);
}

/* =================================================================
   MAP/STATIC-MAP
================================================================= */
.static-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px 0 rgba(97,166,247,0.10);
  margin-top: 11px;
  width: 100%;
  max-width: 520px;
}
.static-map img {
  width: 100%;
  border-radius: 0;
}

/* =================================================================
   END CSS FILE
================================================================= */
