/* ============================================
   AURA BLAST - MODERN BOLD CSS STYLES
   Design Style: Modern Bold
   ============================================ */

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

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - MODERN BOLD STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 32px;
}

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
}

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

a {
  color: #2D8659;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

a:hover {
  color: #F7941D;
  transform: translateY(-2px);
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

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

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

/* HEADER - BOLD & MODERN */
header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2D8659 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

header .logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

header .logo:hover {
  transform: scale(1.1) rotate(-5deg);
}

/* MAIN NAVIGATION - DESKTOP */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #F7941D;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #F7941D;
  transform: translateY(-2px);
}

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

/* CTA BUTTON IN HEADER */
.cta-button {
  background: #F7941D;
  color: #1a1a1a;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background: #ffffff;
  color: #2D8659;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(247, 148, 29, 0.6);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #F7941D;
  color: #1a1a1a;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  background: #2D8659;
  color: #ffffff;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #2D8659 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

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

/* MOBILE MENU CLOSE BUTTON */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F7941D;
  color: #1a1a1a;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #ffffff;
  color: #2D8659;
}

/* MOBILE NAVIGATION */
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 0;
}

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 20px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #F7941D;
  padding-left: 20px;
  border-bottom-color: #F7941D;
  transform: translateX(0);
}

/* HERO SECTION - BOLD IMPACT */
.hero {
  background: linear-gradient(135deg, #2D8659 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: #F7941D;
  opacity: 0.1;
  transform: rotate(45deg);
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 400;
}

/* CTA GROUP */
.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* BUTTON STYLES - BOLD & GEOMETRIC */
.btn-primary {
  background: #F7941D;
  color: #1a1a1a;
  padding: 18px 40px;
  border-radius: 0;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 3px solid #F7941D;
}

.btn-primary:hover {
  background: #ffffff;
  color: #2D8659;
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.3);
  border-color: #2D8659;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 0;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  border: 3px solid #ffffff;
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #2D8659;
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(255, 255, 255, 0.3);
}

.btn-link {
  color: #F7941D;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 0;
  border-bottom: 3px solid #F7941D;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #2D8659;
  border-bottom-color: #2D8659;
  transform: translateX(10px);
}

.trust-indicator {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.8;
  margin-top: 30px;
}

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

.value-proposition {
  padding: 80px 20px;
  background: #FFF4E6;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
}

/* THREE COLUMN LAYOUT - FLEXBOX */
.three-column {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.three-column .column {
  flex: 1;
  min-width: 280px;
  text-align: center;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 0;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  border: 3px solid #1a1a1a;
  transition: all 0.3s ease;
}

.three-column .column:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(45, 134, 89, 0.3);
  border-color: #2D8659;
}

.three-column .column img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.three-column .column h3 {
  color: #2D8659;
  margin-bottom: 16px;
}

/* SERVICES PREVIEW */
.services-preview {
  padding: 80px 20px;
  background: #ffffff;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 42px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
}

/* SERVICES GRID - FLEXBOX */
.services-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.service-card {
  flex: 1;
  min-width: 300px;
  background: #FFF4E6;
  padding: 40px 30px;
  border-radius: 0;
  border: 4px solid #1a1a1a;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, #F7941D, #2D8659);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 15px 15px 0 rgba(247, 148, 29, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  color: #1a1a1a;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card .price {
  font-size: 32px;
  font-weight: 800;
  color: #F7941D;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

.service-card ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.service-card ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}

.service-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #2D8659;
  font-weight: 800;
  font-size: 20px;
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2D8659 100%);
  color: #ffffff;
}

.testimonials h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
}

.testimonial-card {
  background: #ffffff;
  color: #1a1a1a;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 0;
  border-left: 8px solid #F7941D;
  box-shadow: 8px 8px 0 rgba(247, 148, 29, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 0;
}

.testimonial-card .author {
  font-weight: 800;
  color: #2D8659;
  font-style: normal;
  font-size: 16px;
  text-align: right;
  margin-top: 20px;
}

/* CTA BANNER */
.cta-banner {
  background: #F7941D;
  padding: 80px 20px;
  text-align: center;
  color: #1a1a1a;
}

.cta-banner h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 20px;
  margin-bottom: 40px;
}

.cta-banner .small-text {
  font-size: 14px;
  margin-top: 20px;
  opacity: 0.8;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2D8659 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 60px 20px 40px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* BREADCRUMBS */
.breadcrumbs {
  font-size: 14px;
  margin-bottom: 30px;
  opacity: 0.8;
}

.breadcrumbs a {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumbs a:hover {
  color: #F7941D;
}

/* FILTERS */
.filters {
  padding: 40px 20px;
  background: #FFF4E6;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-group label {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.filter-group select,
.filter-group input[type="text"],
.filter-group input[type="email"],
.filter-group textarea {
  padding: 14px 20px;
  border: 3px solid #1a1a1a;
  border-radius: 0;
  font-size: 16px;
  background: #ffffff;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.filter-group select:focus,
.filter-group input:focus,
.filter-group textarea:focus {
  outline: none;
  border-color: #2D8659;
  box-shadow: 4px 4px 0 rgba(45, 134, 89, 0.2);
}

/* RECIPE GRID - FLEXBOX */
.recipe-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.recipe-card {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  padding: 30px;
  border: 4px solid #1a1a1a;
  border-radius: 0;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.recipe-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(45, 134, 89, 0.3);
  border-color: #2D8659;
}

.recipe-card h3 {
  color: #2D8659;
  margin-bottom: 12px;
  font-size: 20px;
}

.recipe-meta {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  margin-bottom: 16px;
}

/* GUIDE GRID - FLEXBOX */
.guide-grid,
.diet-grid,
.goals-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.guide-card,
.diet-card,
.goal-card {
  flex: 1;
  min-width: 250px;
  background: #FFF4E6;
  padding: 30px;
  border: 3px solid #1a1a1a;
  border-radius: 0;
  text-align: center;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.guide-card:hover,
.diet-card:hover,
.goal-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(247, 148, 29, 0.3);
  border-color: #F7941D;
}

.guide-card img,
.diet-card img,
.goal-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.guide-card h3,
.diet-card h3,
.goal-card h3 {
  color: #2D8659;
  margin-bottom: 16px;
}

/* CTA SECTION */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #F7941D 0%, #2D8659 100%);
  text-align: center;
  color: #ffffff;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
}

.price-info {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  opacity: 0.9;
}

/* GUARANTEES */
.guarantees {
  padding: 60px 20px;
  background: #FFF4E6;
}

.guarantees h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
}

.guarantee-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.guarantee-item {
  flex: 1;
  min-width: 220px;
  text-align: center;
  padding: 30px 20px;
}

.guarantee-item img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.guarantee-item h3 {
  color: #2D8659;
  margin-bottom: 12px;
  font-size: 18px;
}

.guarantee-item p {
  font-size: 14px;
  color: #666;
}

/* STATS GRID */
.stats-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 40px 20px;
  background: #FFF4E6;
  border: 4px solid #1a1a1a;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
  font-size: 48px;
  color: #F7941D;
  margin-bottom: 16px;
  font-weight: 800;
}

.stat-item p {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
  text-transform: uppercase;
}

/* TEAM GRID */
.team-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.team-member {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  padding: 40px 30px;
  text-align: center;
  border: 3px solid #1a1a1a;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(45, 134, 89, 0.3);
  border-color: #2D8659;
}

.team-member h3 {
  color: #2D8659;
  margin-bottom: 8px;
}

.team-member .role {
  font-weight: 700;
  color: #F7941D;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* BLOG GRID */
.articles-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.article-card {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 30px;
  border: 3px solid #1a1a1a;
  border-radius: 0;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(247, 148, 29, 0.3);
  border-color: #F7941D;
}

.article-card h3 {
  color: #2D8659;
  margin-bottom: 12px;
  font-size: 20px;
}

.article-meta {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  margin-bottom: 16px;
}

/* FEATURED ARTICLE */
.featured-article {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF4E6 0%, #ffffff 100%);
  border-left: 10px solid #F7941D;
  margin-bottom: 40px;
}

.featured-badge {
  display: inline-block;
  background: #F7941D;
  color: #1a1a1a;
  padding: 8px 20px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* CATEGORY GRID */
.category-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.category-card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  padding: 30px;
  text-align: center;
  border: 3px solid #1a1a1a;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(45, 134, 89, 0.3);
  border-color: #2D8659;
}

.category-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.category-card h3 {
  color: #2D8659;
  margin-bottom: 8px;
  font-size: 18px;
}

.category-card p {
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

/* NEWSLETTER */
.newsletter {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2D8659 0%, #1a1a1a 100%);
  color: #ffffff;
  text-align: center;
}

.newsletter h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter p {
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 20px;
  border: 3px solid #ffffff;
  border-radius: 0;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
}

.newsletter .small-text {
  font-size: 13px;
  opacity: 0.8;
}

/* CONTACT METHODS */
.contact-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.contact-card {
  flex: 1;
  min-width: 250px;
  background: #FFF4E6;
  padding: 40px 30px;
  text-align: center;
  border: 4px solid #1a1a1a;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(247, 148, 29, 0.3);
  border-color: #F7941D;
}

.contact-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.contact-card h3 {
  color: #2D8659;
  margin-bottom: 16px;
}

.contact-card .detail {
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

/* FORM STYLING */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

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

.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px 20px;
  border: 3px solid #1a1a1a;
  border-radius: 0;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  background: #ffffff;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2D8659;
  box-shadow: 4px 4px 0 rgba(45, 134, 89, 0.2);
}

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

.form-field.checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-field.checkbox label {
  margin-bottom: 0;
  text-transform: none;
  font-weight: 400;
  font-size: 14px;
}

/* OFFICE INFO */
.office-details {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.detail-block {
  flex: 1;
  min-width: 250px;
}

.detail-block h3 {
  color: #2D8659;
  margin-bottom: 16px;
  font-size: 20px;
}

/* FAQ */
.faq-item {
  background: #FFF4E6;
  padding: 30px;
  margin-bottom: 20px;
  border-left: 6px solid #F7941D;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #2D8659;
  margin-bottom: 12px;
  font-size: 18px;
}

/* NOTICE BOX */
.notice-box {
  background: #FFF4E6;
  border: 3px solid #F7941D;
  padding: 30px;
  margin: 40px 0;
}

.notice-box h3 {
  color: #F7941D;
  margin-bottom: 16px;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border: 3px solid #1a1a1a;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
  color: #2D8659;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.content-wrapper h3 {
  color: #1a1a1a;
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 20px;
}

.content-wrapper ul {
  margin-left: 30px;
  margin-bottom: 20px;
}

.content-wrapper li {
  margin-bottom: 12px;
}

.content-wrapper a {
  color: #F7941D;
  text-decoration: underline;
}

.last-updated,
.effective-date {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  margin-top: 10px;
}

/* COOKIES TABLE */
.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
  padding: 16px;
  text-align: left;
  border: 2px solid #1a1a1a;
}

.cookies-table th {
  background: #2D8659;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
}

.cookies-table td {
  background: #FFF4E6;
}

/* COOKIE PREFERENCES */
.preferences-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.preference-item {
  flex: 1;
  min-width: 200px;
  background: #FFF4E6;
  padding: 24px;
  border: 3px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preference-item h3 {
  color: #2D8659;
  margin-bottom: 8px;
  font-size: 16px;
}

.preference-item p {
  font-size: 13px;
  color: #666;
  margin-bottom: 0;
}

.preference-item input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2D8659 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #F7941D;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 800;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(247, 148, 29, 0.4);
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  font-size: 24px;
  color: #F7941D;
  font-weight: 700;
  margin-bottom: 20px;
}

/* TIMELINE */
.timeline {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}

.timeline-step {
  flex: 1;
  min-width: 250px;
  background: #FFF4E6;
  padding: 30px;
  text-align: center;
  border: 3px solid #1a1a1a;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-step h3 {
  color: #2D8659;
  margin-bottom: 16px;
  font-size: 20px;
}

.note {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 30px;
}

/* SUGGESTION GRID */
.suggestion-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.suggestion-card {
  flex: 1;
  min-width: 250px;
  background: #ffffff;
  padding: 30px;
  text-align: center;
  border: 3px solid #1a1a1a;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.suggestion-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(45, 134, 89, 0.3);
  border-color: #2D8659;
}

.suggestion-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.suggestion-card h3 {
  color: #2D8659;
  margin-bottom: 12px;
}

/* SOCIAL BUTTONS */
.social-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

.social-btn {
  background: #F7941D;
  color: #1a1a1a;
  padding: 14px 30px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  border: 3px solid #F7941D;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #ffffff;
  color: #2D8659;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(45, 134, 89, 0.3);
  border-color: #2D8659;
}

.engagement {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
}

/* FOOTER - BOLD DESIGN */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2D8659 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: #F7941D;
  margin-bottom: 20px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #F7941D;
  padding-left: 10px;
  transform: translateX(0);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
  font-size: 13px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #F7941D;
  opacity: 1;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  display: none;
  border-top: 4px solid #F7941D;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-consent .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.cookie-btn.accept {
  background: #F7941D;
  color: #1a1a1a;
}

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

.cookie-btn.reject {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cookie-btn.reject:hover {
  background: #ffffff;
  color: #1a1a1a;
}

.cookie-btn.settings {
  background: transparent;
  color: #F7941D;
  border-color: #F7941D;
}

.cookie-btn.settings:hover {
  background: #F7941D;
  color: #1a1a1a;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 4px solid #F7941D;
  box-shadow: 12px 12px 0 rgba(247, 148, 29, 0.3);
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  color: #2D8659;
  margin-bottom: 24px;
}

.cookie-option {
  background: #FFF4E6;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #2D8659;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-option-info h3 {
  color: #1a1a1a;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-option-info p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.cookie-toggle {
  width: 60px;
  height: 30px;
  background: #ccc;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #2D8659;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(30px);
}

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu toggle */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  header .cta-button {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  /* Stack columns on mobile */
  .three-column {
    flex-direction: column;
  }
  
  .services-grid,
  .recipe-grid,
  .guide-grid,
  .diet-grid,
  .goals-grid,
  .articles-grid {
    flex-direction: column;
  }
  
  .three-column .column,
  .service-card,
  .recipe-card,
  .guide-card,
  .diet-card,
  .goal-card,
  .article-card {
    min-width: 100%;
  }
  
  /* Footer stack */
  .footer-columns {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  /* Cookie consent stack */
  .cookie-consent .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Form adjustments */
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    min-width: 100%;
  }
  
  /* Reduce padding/margin on mobile */
  .section,
  .value-proposition,
  .services-preview,
  .testimonials,
  .cta-banner {
    padding: 40px 20px;
  }
  
  /* Timeline stack */
  .timeline {
    flex-direction: column;
  }
  
  /* Social buttons stack */
  .social-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .social-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .three-column .column {
    min-width: 45%;
  }
  
  .service-card,
  .recipe-card {
    min-width: 45%;
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* SMOOTH TRANSITIONS */
* {
  transition: color 0.2s ease, background-color 0.2s ease;
}

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

/* ACCESSIBILITY IMPROVEMENTS */
:focus {
  outline: 3px solid #F7941D;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #F7941D;
  outline-offset: 2px;
}

/* HIGH CONTRAST MODE SUPPORT */
@media (prefers-contrast: high) {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .hero,
  .page-hero {
    background: #000000;
    color: #ffffff;
  }
}

/* REDUCED MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}