/* ===================================
   SHIMMER DREAM - NATURE ORGANIC DESIGN
   Professional Home Staging Website
   =================================== */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #3E2723;
  background-color: #F5F3EF;
  overflow-x: hidden;
}

/* NATURE ORGANIC COLOR PALETTE */
:root {
  --primary-earth: #6B5D4F;
  --secondary-sage: #8BA888;
  --accent-terracotta: #C17B5A;
  --natural-cream: #F5F3EF;
  --forest-green: #4A6741;
  --warm-brown: #3E2723;
  --soft-beige: #E8E3DC;
  --leaf-green: #7FA87C;
  --clay-orange: #D4956C;
  --stone-gray: #8C8579;
}

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

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

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

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

p {
  margin-bottom: 16px;
  color: var(--warm-brown);
}

a {
  color: var(--forest-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-terracotta);
}

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

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

/* HEADER - ORGANIC STYLING */
header {
  background-color: #FFFFFF;
  border-bottom: 3px solid var(--secondary-sage);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(75, 103, 65, 0.1);
}

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

.logo img {
  height: 60px;
  width: auto;
}

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

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-sage), var(--accent-terracotta));
  transition: width 0.3s ease;
}

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

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

/* MOBILE MENU TOGGLE - ORGANIC BUTTON */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary-sage);
  border: none;
  color: white;
  font-size: 28px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  box-shadow: 0 4px 12px rgba(75, 103, 65, 0.3);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU - NATURE INSPIRED */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--soft-beige) 100%);
  z-index: 1200;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(75, 103, 65, 0.2);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-terracotta);
  border: none;
  color: white;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(193, 123, 90, 0.3);
}

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

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

.mobile-nav a {
  color: var(--warm-brown);
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-bottom: 1px solid var(--soft-beige);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.mobile-nav a:hover {
  background: var(--secondary-sage);
  color: white;
  padding-left: 28px;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50% 40% 60% 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 60% 50% 40% 60%;
  z-index: 0;
}

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

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(62, 39, 35, 0.2);
}

.hero-subtitle {
  font-size: 22px;
  color: white;
  margin-bottom: 16px;
  line-height: 1.6;
}

.trust-badge {
  display: inline-block;
  background: rgba(202, 99, 99, 0.205);
  color: rgb(214, 90, 90);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--accent-terracotta);
  color: white;
  box-shadow: 0 4px 15px rgba(193, 123, 90, 0.3);
}

.btn-primary:hover {
  background: var(--clay-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193, 123, 90, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--forest-green);
  border: 2px solid var(--forest-green);
}

.btn-secondary:hover {
  background: var(--forest-green);
  color: white;
  transform: translateY(-2px);
}

.btn-link {
  color: var(--forest-green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: var(--accent-terracotta);
  gap: 12px;
}

/* SECTIONS - ORGANIC SPACING */
.benefits,
.services-preview,
.process,
.testimonials,
.cta-final,
.story,
.mission-vision,
.achievements,
.services-list,
.case-studies,
.success-metrics,
.process-overview,
.value-proposition,
.pricing-packages,
.roi-examples,
.contact-options,
.contact-form-section,
.office-location,
.service-area,
.legal-content,
.cookie-settings,
.what-happens-next,
.immediate-actions,
.contact-reminder,
.social-proof {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.benefits,
.mission-vision,
.pricing-packages {
  background-color: white;
}

.services-preview,
.achievements,
.value-proposition {
  background-color: var(--soft-beige);
}

/* BENEFIT CARDS - NATURAL TEXTURES */
.benefits-grid,
.services-grid,
.stats-grid,
.values-grid,
.guarantees-grid,
.benefits-grid,
.contact-grid,
.roi-grid,
.actions-grid,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-card,
.service-card,
.stat-card,
.value,
.guarantee,
.benefit,
.contact-option,
.roi-example,
.action {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(107, 93, 79, 0.1);
  transition: all 0.3s ease;
  border: 2px solid var(--soft-beige);
  position: relative;
}

.benefit-card::before,
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-sage), var(--accent-terracotta));
  border-radius: 16px 16px 0 0;
}

.benefit-card:hover,
.service-card:hover,
.stat-card:hover,
.value:hover,
.guarantee:hover,
.contact-option:hover,
.roi-example:hover,
.action:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107, 93, 79, 0.2);
  border-color: var(--secondary-sage);
}

.benefit-card h3,
.service-card h3,
.stat-card h3 {
  color: var(--forest-green);
  margin-bottom: 12px;
  font-size: 22px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-terracotta);
  margin: 16px 0;
}

/* PROCESS STEPS - ORGANIC FLOW */
.process-steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid var(--secondary-sage);
  box-shadow: 0 3px 12px rgba(107, 93, 79, 0.08);
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--accent-terracotta);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(193, 123, 90, 0.3);
}

.step h3 {
  margin-top: 16px;
  color: var(--forest-green);
}

.step .subtitle {
  color: var(--stone-gray);
  font-style: italic;
  font-size: 14px;
  margin-bottom: 12px;
}

/* TESTIMONIALS - WARM & NATURAL */
.testimonials {
  background: linear-gradient(135deg, var(--soft-beige) 0%, white 100%);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(107, 93, 79, 0.1);
  border: 2px solid var(--secondary-sage);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 72px;
  color: var(--secondary-sage);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  color: var(--warm-brown);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--forest-green);
  font-style: italic;
  margin-top: 16px;
}

.rating-badge {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-terracotta);
}

/* PRICING CARDS - NATURAL HIERARCHY */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  max-width: 380px;
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(107, 93, 79, 0.1);
  border: 2px solid var(--soft-beige);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.pricing-card.popular {
  border: 3px solid var(--accent-terracotta);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(107, 93, 79, 0.2);
}

.pricing-card .badge {
  display: inline-block;
  background: var(--secondary-sage);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card.popular .badge {
  background: var(--accent-terracotta);
}

.pricing-card .price {
  font-size: 42px;
  font-weight: 700;
  color: var(--forest-green);
  margin: 20px 0;
}

.pricing-card .subtitle {
  color: var(--stone-gray);
  font-size: 14px;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 24px 0;
}

.pricing-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-beige);
  color: var(--warm-brown);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

/* FORMS - NATURAL INPUT STYLING */
.form-wrapper {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(107, 93, 79, 0.1);
  border: 2px solid var(--soft-beige);
}

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

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--soft-beige);
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  color: var(--warm-brown);
  transition: all 0.3s ease;
  background: var(--natural-cream);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--secondary-sage);
  background: white;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

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

.form-field.checkbox input {
  width: auto;
}

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

.response-time {
  text-align: center;
  color: var(--forest-green);
  font-weight: 600;
  margin-top: 16px;
}

/* HERO INTERNAL PAGES */
.hero-internal {
  background: linear-gradient(135deg, var(--soft-beige) 0%, white 100%);
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 3px solid var(--secondary-sage);
}

.hero-internal h1 {
  color: var(--forest-green);
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-internal .subtitle {
  font-size: 20px;
  color: var(--stone-gray);
  max-width: 700px;
  margin: 0 auto 16px;
}

.hero-internal .last-updated,
.hero-internal .timeline,
.hero-internal .stats {
  color: var(--stone-gray);
  font-style: italic;
}

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

.text-section h2 {
  color: var(--forest-green);
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-section p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.text-section ul {
  margin: 20px 0 20px 24px;
}

.text-section ul li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: var(--warm-brown);
}

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

.milestone {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: white;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--secondary-sage);
  box-shadow: 0 3px 12px rgba(107, 93, 79, 0.08);
}

.milestone h3 {
  font-size: 36px;
  color: var(--accent-terracotta);
  margin-bottom: 8px;
}

.milestone p {
  color: var(--warm-brown);
  font-size: 14px;
}

/* CONTENT WRAPPER - FLEXBOX LAYOUT */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
}

.mission,
.vision {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: white;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-sage);
  box-shadow: 0 3px 12px rgba(107, 93, 79, 0.08);
}

/* AWARDS LIST */
.awards {
  margin-top: 40px;
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--soft-beige);
}

.awards ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.awards ul li {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  background: var(--soft-beige);
  padding: 16px 20px;
  border-radius: 8px;
  color: var(--warm-brown);
  font-weight: 500;
  text-align: center;
  border-left: 3px solid var(--accent-terracotta);
}

/* SERVICE DETAIL */
.service-detail {
  background: white;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 32px;
  border: 2px solid var(--soft-beige);
  box-shadow: 0 4px 16px rgba(107, 93, 79, 0.08);
}

.service-detail h2 {
  color: var(--forest-green);
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-terracotta);
  margin: 16px 0;
}

.service-detail .tagline {
  display: inline-block;
  background: var(--secondary-sage);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-detail ul {
  margin: 20px 0;
  list-style: none;
}

.service-detail ul li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid var(--soft-beige);
  color: var(--warm-brown);
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-sage);
  font-weight: 700;
}

/* CASE STUDIES */
.case-study {
  background: white;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  border: 2px solid var(--soft-beige);
  box-shadow: 0 4px 16px rgba(107, 93, 79, 0.1);
}

.case-study h2 {
  color: var(--forest-green);
}

.case-study .subtitle {
  color: var(--accent-terracotta);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 24px;
}

.case-study .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.challenge,
.solution,
.results {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
}

.challenge h3 {
  color: var(--stone-gray);
}

.solution h3 {
  color: var(--secondary-sage);
}

.results h3 {
  color: var(--accent-terracotta);
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: white;
  color: var(--secondary-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.thank-you-hero h1 {
  color: white;
  font-size: 48px;
}

.thank-you-hero p {
  color: white;
  font-size: 18px;
}

/* CTA SECTIONS - ORGANIC CALL-TO-ACTION */
.cta-section,
.cta-final {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--secondary-sage) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50% 40% 60% 50%;
}

.cta-section h2,
.cta-final h2 {
  color: white;
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-section p,
.cta-final p {
  color: white;
  font-size: 20px;
  margin-bottom: 24px;
}

.urgency,
.success-rate,
.value-prop,
.process-summary,
.availability,
.response-guarantee {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 16px;
  backdrop-filter: blur(10px);
}

/* FOOTER - EARTH TONES */
footer {
  background: var(--warm-brown);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-section h3 {
  color: var(--secondary-sage);
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

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

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

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

.footer-nav a:hover {
  color: var(--secondary-sage);
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
}

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

/* COOKIE CONSENT BANNER - NATURAL STYLING */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 3px solid var(--secondary-sage);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(107, 93, 79, 0.2);
  z-index: 2000;
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  display: block;
  transform: translateY(0);
}

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

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

.cookie-banner-text p {
  color: var(--warm-brown);
  margin-bottom: 0;
}

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

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

.cookie-btn-accept {
  background: var(--secondary-sage);
  color: white;
}

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

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

.cookie-btn-reject:hover {
  border-color: var(--stone-gray);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--forest-green);
  border: 2px solid var(--forest-green);
}

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

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

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

.cookie-modal-content {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(107, 93, 79, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--soft-beige);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: var(--warm-brown);
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--stone-gray);
  color: white;
}

.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid var(--soft-beige);
}

.cookie-category h3 {
  color: var(--forest-green);
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-category p {
  color: var(--stone-gray);
  font-size: 14px;
}

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

.cookie-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: var(--soft-beige);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-switch.active {
  background: var(--secondary-sage);
}

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

.cookie-switch.active::after {
  transform: translateX(24px);
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

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

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

  /* Layout adjustments */
  .benefit-card,
  .service-card,
  .stat-card,
  .pricing-card,
  .step,
  .testimonial-card,
  .milestone,
  .mission,
  .vision,
  .challenge,
  .solution,
  .results {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  /* CTA buttons stack vertically */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  /* Footer stacks vertically */
  .footer-content {
    flex-direction: column;
  }

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

  /* Cookie banner adjustments */
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cookie-btn {
    width: 100%;
  }

  /* Spacing adjustments */
  .container {
    padding: 0 16px;
  }

  .hero,
  .hero-internal,
  .cta-section,
  .cta-final {
    padding: 60px 16px;
  }

  section {
    padding: 40px 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .service-card,
  .stat-card,
  .pricing-card {
    flex: 1 1 calc(50% - 24px);
  }

  .step {
    flex: 1 1 calc(50% - 24px);
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 14px;
  }
}

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

.benefit-card,
.service-card,
.testimonial-card,
.pricing-card {
  animation: fadeIn 0.6s ease forwards;
}

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

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

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

/* ACCESSIBILITY */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--secondary-sage);
  outline-offset: 2px;
}

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