/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

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

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

/* ========================================
   TYPOGRAPHY - MODERN BOLD STYLE
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 40px;
  text-transform: uppercase;
}

h3 {
  font-size: 28px;
  font-weight: 700;
}

p {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.8;
}

strong {
  font-weight: 700;
  color: #000000;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

/* ========================================
   HEADER - BOLD MODERN DESIGN
   ======================================== */

header {
  background: #000000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #4CAF50;
  border-bottom-color: #4CAF50;
  transform: translateY(-2px);
}

/* ========================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #FF9800;
  border: none;
  color: #000000;
  font-size: 32px;
  font-weight: 900;
  width: 60px;
  height: 60px;
  border-radius: 0;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #F57C00;
  transform: scale(1.1);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #000000;
  z-index: 1999;
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF9800;
  border: none;
  color: #000000;
  font-size: 40px;
  font-weight: 900;
  width: 60px;
  height: 60px;
  border-radius: 0;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #F57C00;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 0;
  border-left: 6px solid transparent;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #4CAF50;
  border-left-color: #4CAF50;
  padding-left: 32px;
}

/* ========================================
   BUTTONS - BOLD MODERN STYLE
   ======================================== */

.btn {
  display: inline-block;
  padding: 18px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  margin: 8px 8px 8px 0;
}

.btn-primary {
  background: #4CAF50;
  color: #000000;
}

.btn-primary:hover {
  background: #2E7D32;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
  background: #FF9800;
  color: #000000;
}

.btn-secondary:hover {
  background: #F57C00;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

/* ========================================
   HERO SECTION - BOLD & IMPACTFUL
   ======================================== */

.hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(76, 175, 80, 0.03) 10px,
    rgba(76, 175, 80, 0.03) 20px
  );
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 #4CAF50;
}

.hero-subheadline {
  font-size: 22px;
  margin-bottom: 32px;
  color: #FFF9C4;
  font-weight: 600;
}

.trust-indicator {
  margin-top: 32px;
  font-weight: 700;
  font-size: 18px;
  color: #4CAF50;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================
   SECTIONS - GEOMETRIC & BOLD
   ======================================== */

.value-proposition,
.services-preview,
.testimonials,
.mission,
.team,
.stats,
.services,
.blog,
.recipes,
.contact {
  padding: 80px 20px;
  margin-bottom: 60px;
}

.value-proposition {
  background: #FFF9C4;
}

.services-preview {
  background: #f5f5f5;
}

.testimonials {
  background: #000000;
  color: #ffffff;
}

.section-subheadline {
  font-size: 20px;
  color: #666666;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 600;
}

.testimonials .section-subheadline {
  color: #FFF9C4;
}

/* ========================================
   CARDS & GRIDS - FLEXBOX LAYOUTS
   ======================================== */

.value-cards,
.services-grid,
.testimonials-grid,
.team-grid,
.stats-grid,
.blog-grid,
.recipes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.value-card,
.service-card,
.service-detail,
.testimonial-card,
.team-member,
.stat,
.blog-post,
.recipe-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  margin-bottom: 24px;
  border: 4px solid #000000;
  position: relative;
  transition: all 0.3s ease;
}

.value-card {
  background: #ffffff;
}

.service-card,
.service-detail {
  background: #ffffff;
}

.testimonial-card {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #4CAF50;
  padding: 40px;
}

.testimonial-card .quote {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card .author {
  color: #4CAF50;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value-card:hover,
.service-card:hover,
.service-detail:hover,
.blog-post:hover,
.recipe-card:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0 #4CAF50;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0 #FF9800;
}

.value-card h3,
.service-card h3,
.service-detail h3,
.team-member h3,
.blog-post h2,
.recipe-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #000000;
  text-transform: uppercase;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: #4CAF50;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 0;
}

.service-detail ul li {
  padding: 12px 0;
  border-bottom: 2px solid #f5f5f5;
  font-weight: 600;
}

.service-detail ul li::before {
  content: '▸';
  color: #4CAF50;
  font-weight: 900;
  margin-right: 12px;
  font-size: 20px;
}

.category,
.tags,
.meta {
  font-size: 14px;
  color: #666666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 12px;
}

.tags {
  color: #FF9800;
}

/* ========================================
   TEAM & STATS SECTIONS
   ======================================== */

.team-member {
  text-align: center;
}

.team-member .title {
  color: #4CAF50;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.stat {
  text-align: center;
  border: 6px solid #000000;
  background: #FFF9C4;
}

.stat .number {
  font-size: 64px;
  font-weight: 900;
  color: #4CAF50;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 16px;
}

.stat .label {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-methods,
.opening-hours {
  margin-top: 48px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.contact-method {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #FFF9C4;
  padding: 40px;
  border: 4px solid #000000;
  margin-bottom: 24px;
}

.contact-method h3 {
  color: #000000;
  margin-bottom: 16px;
}

.contact-form-section {
  background: #f5f5f5;
  padding: 48px;
  margin-top: 48px;
  border: 4px solid #000000;
}

.form-info {
  margin-top: 32px;
}

.form-info p {
  font-weight: 600;
  margin-bottom: 12px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.hours-list li {
  padding: 16px;
  background: #FFF9C4;
  margin-bottom: 8px;
  font-weight: 700;
  border-left: 6px solid #4CAF50;
}

.note {
  color: #FF9800;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* ========================================
   CTA SECTION - HIGH IMPACT
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
  color: #000000;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0, 0, 0, 0.05) 20px,
    rgba(0, 0, 0, 0.05) 40px
  );
  pointer-events: none;
}

.cta-section h2 {
  color: #000000;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary {
  background: #000000;
  color: #4CAF50;
}

.cta-section .btn-primary:hover {
  background: #1a1a1a;
  color: #ffffff;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you {
  padding: 100px 20px;
  text-align: center;
}

.thank-you h1 {
  color: #4CAF50;
  margin-bottom: 24px;
}

.next-steps,
.actions,
.contact-info {
  margin: 64px 0;
}

.step {
  background: #FFF9C4;
  padding: 32px;
  margin-bottom: 24px;
  border: 4px solid #000000;
}

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

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page {
  padding: 60px 20px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 48px;
  font-size: 32px;
}

.legal-content ul,
.legal-content ol {
  margin: 24px 0;
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.last-updated {
  color: #666666;
  font-style: italic;
  margin-bottom: 32px;
}

/* ========================================
   FOOTER - BOLD DESIGN
   ======================================== */

footer {
  background: #000000;
  color: #ffffff;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.footer-brand,
.footer-contact,
.footer-links {
  flex: 1 1 250px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #FFF9C4;
  font-weight: 600;
}

footer h3 {
  color: #4CAF50;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

footer p {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #ffffff;
  font-weight: 600;
  padding: 8px 0;
  border-left: 3px solid transparent;
  padding-left: 12px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #4CAF50;
  border-left-color: #4CAF50;
  padding-left: 20px;
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid #333333;
  color: #999999;
  font-size: 14px;
  font-weight: 600;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  color: #ffffff;
  padding: 24px;
  z-index: 1998;
  border-top: 4px solid #4CAF50;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.cookie-accept {
  background: #4CAF50;
  color: #000000;
}

.cookie-accept:hover {
  background: #2E7D32;
  color: #ffffff;
}

.cookie-reject {
  background: #FF9800;
  color: #000000;
}

.cookie-reject:hover {
  background: #F57C00;
  color: #ffffff;
}

.cookie-settings {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-settings:hover {
  background: #ffffff;
  color: #000000;
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #ffffff;
  color: #000000;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  border: 6px solid #4CAF50;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f5f5f5;
  border-left: 4px solid #4CAF50;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #cccccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch.active {
  background: #4CAF50;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.toggle-switch.active::after {
  left: 33px;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  p {
    font-size: 16px;
  }
  
  /* Hero */
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Buttons */
  .btn {
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
    margin: 8px 0;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  /* Cards */
  .value-card,
  .service-card,
  .service-detail,
  .testimonial-card,
  .team-member,
  .stat,
  .blog-post,
  .recipe-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Sections */
  .section,
  .value-proposition,
  .services-preview,
  .testimonials,
  .cta-section {
    padding: 60px 20px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-brand,
  .footer-contact,
  .footer-links {
    flex: 1 1 100%;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  /* Contact */
  .contact-method {
    flex: 1 1 100%;
  }
  
  /* Action Links */
  .action-links {
    flex-direction: column;
  }
  
  .action-links .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
  
  .value-card,
  .service-card,
  .stat,
  .blog-post,
  .recipe-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .service-detail,
  .testimonial-card,
  .team-member {
    flex: 1 1 calc(50% - 16px);
  }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Apply animations */
.hero-content,
.value-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-section,
  header,
  footer {
    display: none;
  }
  
  body {
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ========================================
   ACCESSIBILITY ENHANCEMENTS
   ======================================== */

:focus {
  outline: 3px solid #4CAF50;
  outline-offset: 2px;
}

.btn:focus,
a:focus {
  outline: 3px solid #4CAF50;
  outline-offset: 4px;
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  left: -9999px;
  z-index: 999;
}

.skip-to-main:focus {
  left: 0;
  background: #4CAF50;
  color: #000000;
  padding: 16px;
  font-weight: 700;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn,
  .value-card,
  .service-card {
    border-width: 6px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}