/* ================================
   HAPLO MUSIC - PLAYFUL DYNAMIC STYLES
   ================================ */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A237E;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  animation: slideInDown 0.8s ease-out;
}

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

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

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

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

strong {
  color: #1A237E;
  font-weight: 600;
}

blockquote {
  border-left: 5px solid #FDD835;
  padding: 20px 30px;
  margin: 32px 0;
  background: #FFF;
  border-radius: 8px;
  font-style: italic;
  font-size: 20px;
  color: #C62828;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(135deg, #1A237E 0%, #3949AB 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(26, 35, 126, 0.3);
  animation: slideDown 0.5s ease-out;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

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

.nav-menu li a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #FDD835;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-menu li a:hover {
  color: #FDD835;
  transform: translateY(-2px);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #C62828 0%, #E53935 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #FDD835;
  color: #FDD835;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 8px;
}

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: rgba(253, 216, 53, 0.2);
  border-left-color: #FDD835;
  transform: translateX(10px);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #C62828 0%, #E53935 100%);
  color: #FFFFFF;
  border-color: #C62828;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(198, 40, 40, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #FDD835 0%, #FBC02D 100%);
  color: #1A237E;
  border-color: #FDD835;
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(253, 216, 53, 0.4);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1A237E 0%, #3949AB 50%, #C62828 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 40, 40, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

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

.hero h1 {
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #FDD835;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

.trust-badge {
  color: #FFFFFF;
  font-style: italic;
  opacity: 0.9;
}

.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
  color: #FDD835;
  transition: opacity 0.3s ease;
}

.breadcrumbs a:hover {
  opacity: 0.8;
}

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

.section-intro,
.section-subtitle {
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

/* VALUE PROPOSITION */
.value-proposition {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.benefits-grid,
.services-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.benefit-card,
.service-card,
.card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: relative;
}

.benefit-card:hover,
.service-card:hover,
.card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 12px 30px rgba(198, 40, 40, 0.2);
  border-color: #FDD835;
}

.benefit-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.benefit-card:hover img {
  transform: scale(1.2) rotate(10deg);
}

.benefit-card h3,
.service-card h3 {
  margin-bottom: 12px;
}

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

.price {
  font-size: 24px;
  font-weight: 700;
  color: #C62828;
  margin-top: 16px;
}

/* TESTIMONIALS */
.testimonials,
.testimonials-featured {
  background: linear-gradient(135deg, #FDD835 0%, #FBC02D 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
}

.testimonials h2,
.testimonials-featured h2 {
  color: #1A237E;
  margin-bottom: 40px;
}

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

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

.testimonial-card:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: #2C3E50;
  margin-bottom: 16px;
  line-height: 1.6;
}

.author {
  font-weight: 700;
  color: #1A237E;
  margin-bottom: 4px;
}

.role {
  font-size: 14px;
  color: #C62828;
}

/* STATS SECTION */
.stats {
  background: linear-gradient(135deg, #1A237E 0%, #3949AB 100%);
  color: #FFFFFF;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
}

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

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

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #FDD835;
  margin-bottom: 8px;
  animation: countUp 1s ease-out;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #C62828 0%, #E53935 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(198, 40, 40, 0.3);
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

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

.contact-info {
  font-size: 20px;
  font-weight: 600;
  color: #FDD835;
  margin-top: 24px;
}

.contact-value {
  font-size: 28px;
  font-weight: 700;
  color: #FDD835;
  margin: 16px 0;
}

/* TEAM SECTION */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.team-member {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.team-member:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 30px rgba(26, 35, 126, 0.2);
  border-color: #C62828;
}

/* BLOG & ARTICLES */
.featured-article {
  background: linear-gradient(135deg, #1A237E 0%, #3949AB 100%);
  color: #FFFFFF;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 60px;
}

.featured-label {
  display: inline-block;
  background: #FDD835;
  color: #1A237E;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: wiggle 1s infinite;
}

.featured-article h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

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

.article-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #C62828;
}

.article-card:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: #FDD835;
}

.meta {
  font-size: 14px;
  color: #999;
  margin-top: 16px;
}

/* CONTACT PAGE */
.contact-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #C62828;
}

.contact-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-top-color: #FDD835;
}

.hours-list {
  list-style: none;
  margin: 24px 0;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.hours-list li {
  padding: 12px 20px;
  background: #FFFFFF;
  margin-bottom: 8px;
  border-radius: 8px;
  border-left: 4px solid #FDD835;
  transition: all 0.3s ease;
}

.hours-list li:hover {
  transform: translateX(10px);
  border-left-color: #C62828;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 40px auto;
}

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #C62828;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  border-left-color: #FDD835;
}

/* THANK YOU PAGE */
.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
  animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.steps-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step-card,
.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.step-card:hover,
.suggestion-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* LEGAL PAGES */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.text-section {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  line-height: 1.8;
}

.text-section h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #C62828;
}

.text-section h2:first-child {
  margin-top: 0;
}

/* SERVICE DETAIL */
.service-card-detail {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  border-left: 8px solid #C62828;
  transition: all 0.3s ease;
}

.service-card-detail:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-left-color: #FDD835;
}

.tagline {
  font-size: 20px;
  color: #1A237E;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
}

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

.service-card-detail ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #555;
}

.service-card-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 900;
  font-size: 18px;
}

/* CASE STUDIES */
.case-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.case-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #FDD835;
}

.case-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-top-color: #C62828;
}

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

.mission-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: linear-gradient(135deg, #1A237E 0%, #3949AB 100%);
  color: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(26, 35, 126, 0.2);
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 12px 35px rgba(26, 35, 126, 0.3);
}

.mission-card h3 {
  color: #FDD835;
  margin-bottom: 16px;
}

.values {
  margin-top: 40px;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.values ul {
  list-style: none;
  margin-top: 24px;
}

.values ul li {
  padding: 16px 0;
  border-bottom: 2px solid #F0F0F0;
  font-size: 16px;
}

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

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, #FDD835 0%, #FBC02D 100%);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
}

.newsletter h2 {
  color: #1A237E;
  margin-bottom: 24px;
}

.newsletter ul {
  list-style: none;
  max-width: 500px;
  margin: 24px auto;
  text-align: left;
}

.newsletter ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
}

.newsletter ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A237E;
  font-weight: 900;
  font-size: 18px;
}

.privacy-note {
  font-size: 14px;
  color: #666;
  margin-top: 24px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1A237E 0%, #0D1B3E 100%);
  color: #FFFFFF;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 250px;
}

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

.footer-section h4 {
  color: #FDD835;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #FDD835;
  transform: translateX(5px);
  display: inline-block;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A237E 0%, #3949AB 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.5s 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;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

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

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.cookie-btn-reject {
  background: linear-gradient(135deg, #C62828 0%, #E53935 100%);
  color: #FFFFFF;
}

.cookie-btn-reject:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
}

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

.cookie-btn-settings:hover {
  background: #FDD835;
  color: #1A237E;
  transform: scale(1.05);
}

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

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

.modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: popIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 32px;
  color: #C62828;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  transform: rotate(90deg) scale(1.2);
}

.cookie-category {
  padding: 20px;
  background: #F8F9FA;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #1A237E;
}

.cookie-category h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #CCC;
  border-radius: 26px;
  transition: all 0.3s ease;
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
}

input:checked + .toggle-slider {
  background: #4CAF50;
}

input:checked + .toggle-slider::before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ANIMATIONS */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

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

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

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .card,
  .contact-card,
  .testimonial-card,
  .article-card,
  .team-member,
  .step-card,
  .suggestion-card,
  .case-card,
  .mission-card {
    flex: 1 1 100%;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 40px);
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  /* Modal */
  .modal-content {
    padding: 24px;
  }
  
  /* Sections */
  section {
    padding: 30px 16px;
  }
  
  /* Buttons */
  .btn {
    display: block;
    width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .price {
    font-size: 20px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .stat-item {
    flex: 1 1 100%;
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}