/* ===================================
   Noble Barn - Nature Organic Design
   CSS Stylesheet
   =================================== */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #3a3a2a;
  background-color: #faf9f5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* NATURE ORGANIC COLOR PALETTE */
:root {
  --primary-brown: #8B4513;
  --secondary-tan: #D4A574;
  --accent-cream: #E8DCC4;
  --moss-green: #7a8450;
  --sage-green: #9caf88;
  --earth-brown: #5d4e37;
  --warm-beige: #f5f0e8;
  --dark-text: #3a3a2a;
  --light-text: #6b6b5a;
  --white: #ffffff;
  --shadow-soft: rgba(90, 70, 50, 0.1);
  --shadow-medium: rgba(90, 70, 50, 0.15);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--earth-brown);
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 { font-size: 48px; font-weight: 700; }
h2 { font-size: 32px; font-weight: 600; }
h3 { font-size: 24px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

p {
  margin-bottom: 16px;
  color: var(--dark-text);
  line-height: 1.7;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* HEADER */
header {
  background: linear-gradient(135deg, var(--warm-beige) 0%, var(--accent-cream) 100%);
  padding: 20px 0;
  box-shadow: 0 2px 8px var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--sage-green);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  max-width: 180px;
  height: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--earth-brown);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 8px 4px;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--moss-green);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--moss-green);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  background: var(--primary-brown);
  color: var(--white);
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 12px var(--shadow-medium);
  transition: transform 0.3s ease, background 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  background: var(--moss-green);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--warm-beige) 0%, var(--accent-cream) 100%);
  z-index: 999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px var(--shadow-medium);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--primary-brown);
  color: var(--white);
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  background: var(--moss-green);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: var(--earth-brown);
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: var(--white);
  border-left-color: var(--moss-green);
  transform: translateX(8px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--moss-green) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  color: var(--warm-beige);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--secondary-tan) 0%, var(--accent-cream) 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 4px solid var(--moss-green);
}

.page-hero h1 {
  color: var(--earth-brown);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--dark-text);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.last-updated,
.effective-date {
  font-size: 14px;
  color: var(--light-text);
  margin-top: 16px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary-brown);
  color: var(--white);
  box-shadow: 0 4px 12px var(--shadow-medium);
}

.btn-primary:hover {
  background: var(--moss-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-medium);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--moss-green);
}

.button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.value-proposition,
.services-highlight,
.testimonials,
.location-info,
.products-section,
.benefits-section,
.cta-section,
.workshops-value,
.workshops-schedule,
.workshop-details,
.faq-section,
.brand-story,
.mission-vision,
.why-choose-us,
.community-stats,
.gallery-intro,
.gallery-categories,
.projects-showcase,
.techniques-section,
.submit-project,
.contact-methods,
.contact-form-section,
.location-details,
.legal-content,
.contact-dpo,
.user-rights,
.cookie-settings,
.returns-complaints,
.thank-you-hero,
.next-steps,
.meanwhile-suggestions,
.contact-alternatives,
.return-home {
  padding: 60px 20px;
}

.value-proposition {
  background: var(--white);
}

.services-highlight {
  background: var(--warm-beige);
}

.testimonials {
  background: linear-gradient(135deg, var(--accent-cream) 0%, var(--warm-beige) 100%);
}

.location-info {
  background: var(--white);
}

.cta-section {
  background: linear-gradient(135deg, var(--moss-green) 0%, var(--sage-green) 100%);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  color: var(--warm-beige);
  font-size: 18px;
  margin-bottom: 32px;
}

/* FLEXBOX GRIDS */
.value-grid,
.services-grid,
.testimonials-grid,
.products-grid,
.benefits-grid,
.workshops-grid,
.values-grid,
.reasons-grid,
.stats-grid,
.projects-grid,
.techniques-grid,
.contact-grid,
.suggestions-grid,
.contact-options,
.rights-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.value-item,
.service-card,
.product-card,
.benefit-item,
.workshop-card,
.value-card,
.reason-item,
.stat-item,
.project-card,
.technique-card,
.contact-card,
.suggestion-card,
.contact-option,
.right-item,
.step-item {
  flex: 1 1 280px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-item:hover,
.service-card:hover,
.product-card:hover,
.workshop-card:hover,
.technique-card:hover,
.contact-card:hover,
.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.value-item h3,
.service-card h3,
.product-card h3,
.workshop-card h3,
.technique-card h3 {
  color: var(--primary-brown);
  margin-bottom: 12px;
}

.price {
  display: inline-block;
  background: var(--moss-green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

/* TESTIMONIALS */
.testimonial-card {
  flex: 1 1 400px;
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  border-left: 4px solid var(--moss-green);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: var(--dark-text);
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: var(--primary-brown);
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-top: auto;
}

/* LOCATION DETAILS */
.location-details p,
.location-info p {
  margin-bottom: 12px;
}

.location-details strong {
  color: var(--primary-brown);
  font-weight: 600;
}

/* FAQ SECTION */
.faq-item {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px var(--shadow-soft);
  border-left: 4px solid var(--sage-green);
}

.faq-item h3 {
  color: var(--primary-brown);
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: var(--dark-text);
  line-height: 1.7;
}

/* TEXT SECTIONS */
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--primary-brown);
}

.text-section p,
.text-section ul,
.text-section ol {
  margin-bottom: 16px;
  color: var(--dark-text);
}

.text-section ul li,
.text-section ol li {
  margin-bottom: 8px;
  padding-left: 8px;
}

.text-section a {
  color: var(--moss-green);
  text-decoration: underline;
}

.text-section a:hover {
  color: var(--primary-brown);
}

/* GALLERY FILTERS */
.categories-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.filter-btn {
  padding: 12px 24px;
  background: var(--white);
  color: var(--earth-brown);
  border: 2px solid var(--sage-green);
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--moss-green);
  color: var(--white);
  border-color: var(--moss-green);
}

/* PROJECT CARDS */
.project-card {
  flex: 1 1 300px;
  background: var(--accent-cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow-soft);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  margin-bottom: 20px;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.project-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-info h3 {
  color: var(--primary-brown);
  font-size: 20px;
}

.project-info p {
  color: var(--dark-text);
  font-size: 14px;
}

.creator {
  color: var(--light-text);
  font-size: 14px;
  font-style: italic;
  margin-top: auto;
}

/* CONTACT FORM */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--shadow-soft);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  color: var(--earth-brown);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--accent-cream);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background: var(--warm-beige);
  color: var(--dark-text);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--moss-green);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-field input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.checkbox-field label {
  margin-bottom: 0;
  font-weight: 400;
}

.privacy-note {
  font-size: 14px;
  color: var(--light-text);
  margin-top: 16px;
  text-align: center;
}

.privacy-note a {
  color: var(--moss-green);
  text-decoration: underline;
}

/* LOCATION INFO */
.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.info-block {
  flex: 1 1 250px;
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-soft);
}

.info-block h3 {
  color: var(--primary-brown);
  margin-bottom: 12px;
  font-size: 18px;
}

.info-block p {
  color: var(--dark-text);
  line-height: 1.7;
}

/* COOKIE SETTINGS */
.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 32px auto;
}

.toggle-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-soft);
  gap: 16px;
  flex-wrap: wrap;
}

.toggle-item h3 {
  color: var(--primary-brown);
  font-size: 16px;
  margin-bottom: 4px;
}

.toggle-item p {
  color: var(--light-text);
  font-size: 14px;
  margin: 0;
}

.toggle-btn {
  padding: 8px 20px;
  background: var(--sage-green);
  color: var(--white);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.toggle-btn:hover {
  background: var(--moss-green);
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--moss-green) 100%);
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  color: var(--moss-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px var(--shadow-medium);
}

.thank-you-hero h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: var(--warm-beige);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.return-home {
  text-align: center;
  padding: 60px 20px;
}

.quick-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.quick-links a {
  color: var(--moss-green);
  font-weight: 500;
  padding: 12px 24px;
  border: 2px solid var(--sage-green);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.quick-links a:hover {
  background: var(--moss-green);
  color: var(--white);
  border-color: var(--moss-green);
}

/* PROCESS SECTION */
.process-section {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px var(--shadow-soft);
}

.process-section h3 {
  color: var(--primary-brown);
  margin-bottom: 16px;
}

.process-section ol {
  color: var(--dark-text);
  padding-left: 20px;
}

.process-section li {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* NOTE STYLES */
.note {
  background: rgba(156, 175, 136, 0.1);
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid var(--moss-green);
  margin-top: 24px;
  color: var(--dark-text);
  font-size: 14px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--earth-brown) 0%, var(--primary-brown) 100%);
  color: var(--warm-beige);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 12px;
}

.footer-column h4 {
  color: var(--accent-cream);
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column a {
  color: var(--warm-beige);
  font-size: 14px;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 8px;
}

.footer-column a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-column p {
  color: var(--warm-beige);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(232, 220, 196, 0.2);
  color: var(--accent-cream);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--earth-brown) 0%, var(--primary-brown) 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px var(--shadow-medium);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent-banner.show {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1 1 400px;
  color: var(--warm-beige);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cookie-btn-accept {
  background: var(--moss-green);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--sage-green);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--warm-beige);
  border: 2px solid var(--warm-beige);
}

.cookie-btn-reject:hover {
  background: var(--warm-beige);
  color: var(--primary-brown);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--accent-cream);
  text-decoration: underline;
}

.cookie-btn-settings:hover {
  color: var(--white);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(58, 58, 42, 0.9);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--warm-beige);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 8px 32px var(--shadow-medium);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--primary-brown);
  color: var(--white);
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  background: var(--moss-green);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-nav {
    display: none;
  }
  
  header .container {
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .value-grid,
  .services-grid,
  .products-grid,
  .workshops-grid,
  .projects-grid,
  .contact-grid {
    flex-direction: column;
  }
  
  .value-item,
  .service-card,
  .product-card,
  .workshop-card,
  .project-card,
  .contact-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .form-wrapper {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.page-hero,
.value-item,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* SELECTION COLOR */
::selection {
  background: var(--moss-green);
  color: var(--white);
}

/* FOCUS STYLES */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--moss-green);
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal {
    display: none !important;
  }
}