/* ============================================
   SERENE MOSAIC - PLAYFUL DYNAMIC STYLES
   Design Style: Playful & Dynamic
   ============================================ */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2d2d2d;
  background: linear-gradient(135deg, #fff9e6 0%, #ffe6f0 50%, #e6f7ff 100%);
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  color: #F57C00;
  text-shadow: 3px 3px 0px rgba(255, 183, 77, 0.3);
  animation: bounceIn 0.8s ease-out;
}

h2 {
  font-size: 36px;
  color: #1B5E20;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #F57C00, #FFB74D);
  border-radius: 2px;
  animation: slideRight 0.6s ease-out;
}

h3 {
  font-size: 24px;
  color: #F57C00;
}

h4 {
  font-size: 18px;
  color: #1B5E20;
}

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

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

ul {
  list-style: none;
}

/* ANIMATIONS */
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3) rotate(-5deg); }
  50% { opacity: 1; transform: scale(1.05) rotate(2deg); }
  70% { transform: scale(0.95) rotate(-1deg); }
  100% { transform: scale(1) rotate(0); }
}

@keyframes slideRight {
  from { width: 0; }
  to { width: 60px; }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100%); }
  to { opacity: 1; transform: translateX(0); }
}

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

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  background: linear-gradient(135deg, #F57C00, #FFB74D);
  color: white;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.6);
}

.mobile-menu-toggle:active {
  transform: scale(0.95) rotate(90deg);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  z-index: 10000;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
  animation: slideInLeft 0.4s ease-out;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: white;
  color: #1B5E20;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: block;
  position: relative;
  overflow: hidden;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 77, 0.3), transparent);
  transition: left 0.5s ease;
}

.mobile-nav a:hover::before {
  left: 100%;
}

.mobile-nav a:hover {
  background: rgba(255, 183, 77, 0.3);
  transform: translateX(10px);
}

/* HEADER */
header {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(27, 94, 32, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: fadeInUp 0.6s ease-out;
}

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

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
  animation: wiggle 0.5s ease;
}

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

.main-nav a {
  color: white;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #FFB74D;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  background: rgba(255, 183, 77, 0.2);
  transform: translateY(-2px);
}

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

.cta-button {
  background: linear-gradient(135deg, #F57C00, #FFB74D);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
  border: 3px solid transparent;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.6);
  border-color: white;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #FFB74D 0%, #F57C00 50%, #FF6F00 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

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

.hero h1 {
  color: white;
  text-shadow: 4px 4px 0px rgba(27, 94, 32, 0.3);
  margin-bottom: 24px;
  font-size: 56px;
}

.hero .tagline,
.hero .intro,
.hero p {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 32px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  color: white;
  box-shadow: 0 4px 15px rgba(27, 94, 32, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(27, 94, 32, 0.6);
  border-color: #FFB74D;
}

.btn-secondary {
  background: white;
  color: #1B5E20;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-color: white;
}

.btn-secondary:hover {
  background: #FFB74D;
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 183, 77, 0.5);
}

.btn-link {
  background: transparent;
  color: #F57C00;
  padding: 12px 24px;
  font-weight: 700;
  border: 2px solid #F57C00;
}

.btn-link:hover {
  background: #F57C00;
  color: white;
  transform: translateY(-2px);
}

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

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

/* VALUE PROPOSITION */
.value-proposition {
  background: white;
  border-radius: 20px;
  padding: 60px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #fff9e6, #ffe6f0);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before {
  content: '★';
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 30px;
  color: #FFB74D;
  animation: pulse 2s infinite;
}

.benefit-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 35px rgba(245, 124, 0, 0.3);
  border-color: #F57C00;
}

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

.benefit-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* SERVICES GRID */
.services-preview,
.services-grid {
  background: linear-gradient(135deg, #e6f7ff, #fff9e6);
  border-radius: 20px;
  padding: 60px 20px;
}

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

.services-grid .services-grid,
.services-preview .services-grid,
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.service-card::after {
  content: '→';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 24px;
  color: #F57C00;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(245, 124, 0, 0.3);
  border-color: #FFB74D;
}

.service-card:hover::after {
  opacity: 1;
  right: 15px;
}

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

.service-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .price {
  font-size: 28px;
  font-weight: 800;
  color: #F57C00;
  margin: 16px 0;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  padding: 60px 20px;
  border-radius: 20px;
}

.testimonials h2 {
  color: white;
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 550px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  border: 3px solid #FFB74D;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #FFB74D;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.testimonial-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 12px 35px rgba(245, 124, 0, 0.4);
}

.testimonial-card p {
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .client-name {
  color: #1B5E20;
  font-weight: 700;
  font-size: 14px;
  font-style: normal;
  text-align: right;
  margin-bottom: 0;
}

/* CTA BANNER */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #F57C00, #FFB74D);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(245, 124, 0, 0.3);
}

.cta-banner h2,
.cta-section h2 {
  color: white;
  font-size: 42px;
  margin-bottom: 16px;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.cta-banner p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* STORY & CONTENT */
.story,
.mission-vision,
.legal-content {
  background: white;
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.content-wrapper p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
}

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

.content-wrapper li {
  list-style: disc;
  color: #444;
  margin-bottom: 12px;
  font-size: 16px;
}

.content-wrapper li::marker {
  color: #F57C00;
}

/* MISSION VISION */
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.mission-card,
.vision-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #fff9e6, #ffe6f0);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(245, 124, 0, 0.3);
  border-color: #F57C00;
}

.values {
  background: linear-gradient(135deg, #e6f7ff, #fff9e6);
  padding: 40px;
  border-radius: 20px;
  margin-top: 32px;
}

.values h3 {
  margin-bottom: 24px;
  color: #1B5E20;
}

.values ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.values li {
  list-style: none;
  padding-left: 32px;
  position: relative;
  color: #444;
  font-size: 16px;
  font-weight: 600;
}

.values li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F57C00;
  font-size: 20px;
  font-weight: 800;
}

/* ACHIEVEMENTS / STATS */
.achievements {
  background: linear-gradient(135deg, #FFB74D, #F57C00);
  padding: 60px 20px;
  border-radius: 20px;
}

.achievements h2 {
  color: white;
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 250px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 35px rgba(27, 94, 32, 0.4);
  border-color: #1B5E20;
}

.stat-card h3 {
  font-size: 48px;
  color: #F57C00;
  margin-bottom: 12px;
  font-weight: 900;
}

.stat-card p {
  color: #555;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

/* CATEGORIES */
.categories-grid {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
}

.categories-grid h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
}

.category-cards,
.lifehack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFB74D, #F57C00);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(245, 124, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.category-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 40px rgba(245, 124, 0, 0.5);
  border-color: white;
}

.category-card h3 {
  color: white;
  margin-bottom: 12px;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.category-card p {
  color: white;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* LIFEHACKS */
.featured-lifehacks {
  background: linear-gradient(135deg, #e6f7ff, #fff9e6);
  padding: 60px 20px;
  border-radius: 20px;
}

.featured-lifehacks h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
}

.lifehack-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.lifehack-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 35px rgba(245, 124, 0, 0.3);
  border-color: #FFB74D;
}

.lifehack-card h3 {
  color: #1B5E20;
  margin-bottom: 12px;
  font-size: 20px;
}

.lifehack-card .badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFB74D, #F57C00);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lifehack-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* BLOG */
.blog-categories {
  background: white;
  padding: 40px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.category-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab {
  background: linear-gradient(135deg, #e6f7ff, #fff9e6);
  border: 3px solid transparent;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1B5E20;
}

.tab:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-color: #F57C00;
}

.tab.active {
  background: linear-gradient(135deg, #F57C00, #FFB74D);
  color: white;
  border-color: #F57C00;
}

.blog-posts {
  background: linear-gradient(135deg, #fff9e6, #ffe6f0);
  padding: 60px 20px;
  border-radius: 20px;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.post-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.post-card::after {
  content: '→';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 24px;
  color: #F57C00;
  opacity: 0;
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(245, 124, 0, 0.3);
  border-color: #FFB74D;
}

.post-card:hover::after {
  opacity: 1;
  right: 15px;
}

.post-card h3 {
  color: #1B5E20;
  margin-bottom: 16px;
  font-size: 20px;
}

.post-excerpt {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.post-meta {
  color: #F57C00;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

/* NEWSLETTER */
.newsletter-cta,
.newsletter-signup {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
}

.newsletter-cta h2,
.newsletter-signup h2 {
  color: white;
  margin-bottom: 16px;
  font-size: 42px;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.newsletter-cta p,
.newsletter-signup p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

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

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  border-radius: 30px;
  border: 3px solid white;
  font-size: 16px;
  background: white;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 183, 77, 0.3);
  transform: translateY(-2px);
}

/* CONTACT */
.contact-info {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.info-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: linear-gradient(135deg, #fff9e6, #ffe6f0);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(245, 124, 0, 0.3);
  border-color: #F57C00;
}

.info-card img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 2px 5px rgba(245, 124, 0, 0.3));
}

.info-card h3 {
  color: #1B5E20;
  font-size: 18px;
  margin-bottom: 8px;
}

.info-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* CONTACT FORM */
.contact-form-section {
  background: linear-gradient(135deg, #e6f7ff, #fff9e6);
  padding: 60px 20px;
  border-radius: 20px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #FFB74D;
  box-shadow: 0 0 0 4px rgba(255, 183, 77, 0.2);
  background: white;
}

.form-field input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.privacy-notice {
  text-align: center;
  color: #888;
  font-size: 14px;
  margin-top: 24px;
}

/* THANK YOU PAGE */
.hero.thank-you {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  padding: 100px 20px;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #1B5E20;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  animation: bounceIn 0.8s ease-out;
}

.confirmation-message {
  font-size: 22px;
  color: white;
  font-weight: 600;
}

.confirmation-details {
  background: white;
  padding: 60px 20px;
  border-radius: 20px;
}

.suggested-actions {
  background: linear-gradient(135deg, #fff9e6, #ffe6f0);
  padding: 60px 20px;
  border-radius: 20px;
}

.suggested-actions h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
}

.action-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(245, 124, 0, 0.3);
  border-color: #FFB74D;
}

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

.action-card p {
  color: #555;
  margin-bottom: 24px;
  font-size: 15px;
}

.back-home {
  text-align: center;
  padding: 40px 20px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  padding: 60px 20px 20px;
  color: white;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.footer-column h4 {
  color: #FFB74D;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

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

.footer-column nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-column nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-column nav a:hover {
  color: #FFB74D;
  padding-left: 20px;
}

.footer-column nav a:hover::before {
  opacity: 1;
  left: 0;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

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

.legal-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #FFB74D;
  text-decoration: underline;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  flex: 1;
  color: white;
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 30px;
  border: 2px solid white;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: white;
  color: #1B5E20;
}

.cookie-btn.accept:hover {
  background: #FFB74D;
  color: white;
  border-color: #FFB74D;
  transform: translateY(-2px);
}

.cookie-btn.reject {
  background: transparent;
  color: white;
}

.cookie-btn.reject:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cookie-btn.settings {
  background: transparent;
  color: white;
}

.cookie-btn.settings:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #1B5E20;
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #fff9e6, #ffe6f0);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cookie-category:hover {
  border-color: #FFB74D;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.cookie-category h3 {
  color: #1B5E20;
  font-size: 18px;
  margin-bottom: 0;
}

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

.cookie-toggle.active {
  background: #1B5E20;
}

.cookie-toggle.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

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

.cookie-toggle.active::after {
  left: 30px;
}

.cookie-category p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

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

.modal-btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-btn.save {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  color: white;
}

.modal-btn.save:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 94, 32, 0.4);
}

.modal-btn.cancel {
  background: #e0e0e0;
  color: #555;
}

.modal-btn.cancel:hover {
  background: #d0d0d0;
  transform: translateY(-2px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
  }

  .cta-button {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .benefit-card,
  .service-card,
  .testimonial-card,
  .stat-card,
  .category-card,
  .lifehack-card,
  .post-card,
  .info-card,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .mission-card,
  .vision-card {
    flex: 1 1 100%;
  }

  .footer-main {
    flex-direction: column;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .email-input {
    min-width: 100%;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-modal-content {
    padding: 32px 20px;
  }

  .form-wrapper {
    padding: 32px 20px;
  }

  .category-tabs {
    flex-direction: column;
  }

  .tab {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 14px;
  }

  section {
    padding: 40px 16px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

  .modal-btn {
    width: 100%;
  }
}

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

  body {
    background: white;
  }

  * {
    box-shadow: none !important;
  }
}