/* =================================================================
   CryoFusion - Playful Dynamic Design System
   Zelena Energija Website - Comprehensive CSS Styles
   ================================================================= */

/* 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, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 50%, #E6F7FF 100%);
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  color: #1D5A37;
  text-shadow: 3px 3px 0px rgba(92, 184, 122, 0.3);
  animation: bounceIn 0.8s ease-out;
}

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

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #FFD93D, #FF6B35);
  border-radius: 2px;
}

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

h4 {
  font-size: 18px;
  color: #4D96FF;
}

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

a {
  color: #1D5A37;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

/* Header - Energetic & Playful */
header {
  background: linear-gradient(135deg, #1D5A37 0%, #2D7A4F 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
  animation: slideDown 0.5s ease-out;
}

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

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

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

/* Main Navigation - Bright & Fun */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FFD93D, #FF6B35);
  transition: left 0.3s ease;
  z-index: -1;
  border-radius: 20px;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  color: #1A1A1A;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 12px rgba(255, 107, 53, 0.4);
}

/* CTA Button - Dynamic & Attention-Grabbing */
.cta-button,
.btn-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #FFD93D 100%);
  color: #1A1A1A;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  border: 3px solid #FF6B35;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

.cta-button:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, #FFD93D 0%, #FF6B35 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
  color: #FFFFFF;
}

.btn-secondary {
  background: transparent;
  color: #1D5A37;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 16px;
  border: 3px solid #1D5A37;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
}

.btn-secondary:hover {
  background: #1D5A37;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(29, 90, 55, 0.3);
}

.btn-link {
  color: #FF6B35;
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #FFD93D;
  transform: translateX(5px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #FF6B35, #FFD93D);
  color: #1A1A1A;
  border: none;
  font-size: 28px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 12px;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1D5A37 0%, #2D7A4F 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  padding: 80px 24px 24px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #FF6B35;
  color: #FFFFFF;
  border: none;
  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;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #FF6B35, #FFD93D);
  color: #1A1A1A;
  transform: translateX(10px);
}

/* Hero Section - Big, Bold, Energetic */
.hero {
  background: linear-gradient(135deg, #6BCB77 0%, #4D96FF 50%, #FFD93D 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

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

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

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0px rgba(29, 90, 55, 0.4);
}

.subheadline {
  font-size: 20px;
  color: #1A1A1A;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.5;
}

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

.trust-badge {
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  color: #1D5A37;
  display: inline-block;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 3px solid #FFD93D;
}

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

.hero-stats span {
  background: rgba(255, 255, 255, 0.95);
  padding: 16px 28px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 18px;
  color: #FF6B35;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  border: 3px solid #FF6B35;
}

/* Sections - Playful Spacing */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Benefits Grid - Colorful Cards */
.benefits-grid,
.services-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

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

.benefit-card:nth-child(1) {
  border-color: #FF6B35;
}

.benefit-card:nth-child(2) {
  border-color: #FFD93D;
}

.benefit-card:nth-child(3) {
  border-color: #6BCB77;
}

.benefit-card:nth-child(4) {
  border-color: #4D96FF;
}

.benefit-card:hover,
.service-card:hover,
.card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.3);
}

.benefit-card h3,
.service-card h3 {
  color: #FF6B35;
  margin-bottom: 16px;
}

.benefit-card p,
.service-card p {
  color: #2D3436;
  line-height: 1.6;
}

.price,
.price-tag {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #1D5A37;
  margin: 20px 0;
  padding: 12px;
  background: linear-gradient(135deg, #FFD93D, #FFFFFF);
  border-radius: 12px;
  text-align: center;
}

/* Process Steps - Fun Timeline */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
  text-align: center;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid #6BCB77;
  position: relative;
}

.step:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 28px rgba(107, 203, 119, 0.3);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #FF6B35, #FFD93D);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1D5A37;
}

/* Testimonials - Bright & Trustworthy */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #FFD93D;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(255, 217, 61, 0.3);
}

.testimonial-card p {
  font-style: italic;
  color: #1A1A1A;
  font-size: 16px;
  line-height: 1.7;
}

.customer-name {
  font-weight: 700;
  color: #FF6B35;
  display: block;
  margin-top: 8px;
}

.customer-location {
  color: #636E72;
  font-size: 14px;
  display: block;
}

.rating {
  color: #FFD93D;
  font-size: 24px;
  letter-spacing: 4px;
}

/* Trust Indicators - Stats Grid */
.trust-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.trust-item,
.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F8FF 100%);
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border: 4px solid #4D96FF;
  transition: all 0.3s ease;
}

.trust-item:hover,
.stat-item:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 12px 28px rgba(77, 150, 255, 0.3);
}

.trust-item h3,
.stat-number {
  font-size: 36px;
  color: #FF6B35;
  font-weight: 800;
  margin-bottom: 8px;
}

.trust-item p,
.stat-label {
  color: #2D3436;
  font-weight: 600;
}

/* CTA Banner - Energetic */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #FF6B35 0%, #FFD93D 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 0;
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

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

.cta-banner p {
  color: #1A1A1A;
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 600;
}

.urgency {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Page Hero - Internal Pages */
.page-hero {
  background: linear-gradient(135deg, #4D96FF 0%, #6BCB77 100%);
  padding: 60px 20px;
  margin-bottom: 40px;
  text-align: center;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 48px;
}

.breadcrumb {
  color: #FFFFFF;
  margin-bottom: 24px;
  font-weight: 600;
}

.breadcrumb a {
  color: #FFFFFF;
  text-decoration: underline;
}

.breadcrumb span {
  color: #FFD93D;
}

/* Forms - Playful Input Design */
.form-wrapper,
.contact-form-section {
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.email-input:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
  transform: scale(1.02);
}

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

.form-field.checkbox input {
  width: auto;
  transform: scale(1.5);
}

/* Blog & Content Cards */
.blog-grid,
.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.blog-post-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 6px solid #4D96FF;
  position: relative;
  margin-bottom: 20px;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(77, 150, 255, 0.3);
}

.category,
.category-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FFD93D, #FF6B35);
  color: #1A1A1A;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.category-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.category-btn {
  border: 2px solid #6BCB77;
  background: transparent;
  color: #1D5A37;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background: linear-gradient(135deg, #6BCB77, #4D96FF);
  color: #FFFFFF;
  transform: scale(1.05);
}

.post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 14px;
  color: #636E72;
}

/* Footer - Fun & Informative */
footer {
  background: linear-gradient(135deg, #1D5A37 0%, #2D7A4F 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

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

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

.footer-column a {
  color: #FFFFFF;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

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

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

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

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

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

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

.footer-legal a {
  color: #FFFFFF;
  font-size: 14px;
}

/* Cookie Consent Banner - Playful */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1D5A37 0%, #2D7A4F 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #FFD93D;
}

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

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

.cookie-text {
  color: #FFFFFF;
  font-size: 14px;
  flex: 1 1 300px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #FFFFFF;
  text-transform: uppercase;
}

.cookie-accept {
  background: linear-gradient(135deg, #FFD93D, #FF6B35);
  color: #1A1A1A;
  border-color: #FFD93D;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 217, 61, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #FFFFFF;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #FFFFFF;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

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

.cookie-modal h2 {
  color: #1D5A37;
  margin-bottom: 20px;
}

.cookie-category {
  margin: 20px 0;
  padding: 16px;
  background: #F8F9FA;
  border-radius: 12px;
  border-left: 4px solid #6BCB77;
}

.cookie-category h3 {
  color: #FF6B35;
  font-size: 18px;
  margin-bottom: 8px;
}

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

.toggle-switch {
  width: 50px;
  height: 26px;
  background: #DFE6E9;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #6BCB77;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

/* Thank You Page - Celebratory */
.thank-you-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #FFD93D 0%, #FF6B35 50%, #6BCB77 100%);
  border-radius: 24px;
  margin: 40px 0;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.success-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: linear-gradient(135deg, #6BCB77, #4D96FF);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 60px;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s ease-out;
}

.confirmation-text {
  font-size: 18px;
  color: #2D3436;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Legal Content - Readable */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h2 {
  color: #1D5A37;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #FF6B35;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0 16px 32px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.last-updated {
  color: #636E72;
  font-size: 14px;
  font-style: italic;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
  padding: 12px;
  text-align: left;
  border: 2px solid #DFE6E9;
}

.cookie-table th {
  background: linear-gradient(135deg, #1D5A37, #2D7A4F);
  color: #FFFFFF;
  font-weight: 700;
}

.cookie-table tr:nth-child(even) {
  background: #F8F9FA;
}

/* Animations - Playful & Dynamic */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-50px);
  }
  50% {
    transform: scale(1.05) translateY(0);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .cta-button {
    display: none;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .blog-post-card {
    flex: 1 1 100%;
  }
  
  .trust-item,
  .stat-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .hero::before,
  .hero::after {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .section,
  section {
    padding: 32px 16px;
  }
  
  .trust-item,
  .stat-item {
    flex: 1 1 100%;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  a {
    text-decoration: underline;
  }
}
footer p {
  color: white;
}