/* ===================================
   GOLDEN PORTFOLIO - PLAYFUL DYNAMIC STYLES
   Design: Bright, Animated, Energetic
   =================================== */

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

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

body {
  font-family: 'Comic Sans MS', 'Trebuchet MS', 'Arial', sans-serif;
  line-height: 1.6;
  color: #2D2D2D;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE6F0 50%, #E6F0FF 100%);
  overflow-x: hidden;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: #FF4D8B;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  animation: bounceIn 0.8s ease;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #FF6B35;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #4ECDC4;
}

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

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

a:hover {
  color: #FF6B35;
  transform: scale(1.05);
}

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

li {
  margin-bottom: 8px;
}

strong {
  color: #FF4D8B;
  font-weight: 700;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  text-align: center;
  animation: pulse 2s infinite;
}

.btn-primary {
  background: linear-gradient(135deg, #FF4D8B, #FF6B35);
  color: white;
  box-shadow: 0 8px 20px rgba(255, 77, 139, 0.4);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 77, 139, 0.6);
  animation: none;
}

.btn-secondary {
  background: linear-gradient(135deg, #4ECDC4, #44A08D);
  color: white;
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(78, 205, 196, 0.6);
  animation: none;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #FFD93D, #FF6B6B, #4ECDC4);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.5s ease;
}

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

.logo img {
  height: 60px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

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

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

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

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FF4D8B, #FF6B35);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 77, 139, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #FF4D8B, #FF6B35, #4ECDC4);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  color: #FF4D8B;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: white;
  font-size: 20px;
  font-weight: 700;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

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

/* HERO SECTION */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFD93D, #FF6B6B, #4ECDC4, #6C5CE7);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

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

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

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

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

.trust-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badges span {
  background: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  color: #FF4D8B;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: bounceIn 1s ease;
}

/* PAGE HERO */
.page-hero {
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, #4ECDC4, #44A08D);
  text-align: center;
}

.page-hero h1 {
  color: white;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.page-hero p {
  color: white;
  font-size: 18px;
  margin-top: 16px;
}

.breadcrumb {
  margin-bottom: 20px;
  color: white;
  font-size: 14px;
}

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

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

.section-subheadline {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #2D2D2D;
}

/* SERVICES GRID */
.services-overview, .services-detailed {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  overflow: hidden;
  border: 4px solid #FFD93D;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 221, 61, 0.2) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: rotateBackground 10s linear infinite;
}

.service-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(255, 77, 139, 0.3);
  border-color: #FF4D8B;
}

.service-card h3 {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.service-card p {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #FF4D8B;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* SERVICE DETAIL */
.service-detail {
  background: white;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-left: 8px solid #4ECDC4;
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(78, 205, 196, 0.3);
}

.service-detail h2 {
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 20px;
  font-weight: 700;
  color: #FF4D8B;
  margin-top: 16px;
}

.service-detail .duration {
  color: #4ECDC4;
  font-weight: 600;
}

/* BENEFITS */
.benefits {
  background: linear-gradient(135deg, #FFE66D, #FF6B6B);
  padding: 60px 20px;
}

.benefits h2 {
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

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

.benefit-item {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-item:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
}

.benefit-item h3 {
  margin-bottom: 16px;
}

/* TESTIMONIALS */
.testimonials {
  background: rgba(255, 255, 255, 0.9);
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 40px;
}

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

.testimonial-card {
  background: linear-gradient(135deg, #FFD93D, #FF6B6B);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 12px 40px rgba(255, 221, 61, 0.4);
}

.testimonial-card p {
  font-style: italic;
  font-size: 16px;
  color: white;
  margin-bottom: 0;
}

.testimonial-card .author {
  font-weight: 700;
  font-style: normal;
  color: white;
  text-align: right;
  width: 100%;
}

.rating {
  font-size: 18px;
  font-weight: 700;
  color: #FF4D8B;
  margin-top: 20px;
}

/* CTA SECTIONS */
.cta-banner, .cta-section, .cta-alternative {
  background: linear-gradient(135deg, #6C5CE7, #A8E6CF);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 30px;
}

.cta-banner h2, .cta-section h2, .cta-alternative h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-banner p, .cta-section p, .cta-alternative p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.contact-info {
  color: white;
  font-size: 16px;
  margin-top: 20px;
}

/* PRICING */
.pricing-intro, .pricing-table, .pricing-packages, .price-guarantee {
  background: white;
  padding: 40px 20px;
  margin-bottom: 40px;
  border-radius: 20px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price-item {
  background: linear-gradient(135deg, #FFE66D, #FFAFBD);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 175, 189, 0.4);
}

.price-item h3 {
  margin-bottom: 8px;
  color: #2D2D2D;
}

.price-item p {
  margin-bottom: 8px;
}

.price-item .price {
  font-size: 24px;
  font-weight: 700;
  color: #FF4D8B;
}

.price-item .duration {
  font-size: 14px;
  color: #4ECDC4;
  font-weight: 600;
}

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

.package-card {
  background: white;
  border: 4px solid #4ECDC4;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  text-align: center;
}

.package-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
  border-color: #FF4D8B;
}

.package-card h3 {
  margin-bottom: 12px;
}

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

.package-card li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.package-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ECDC4;
  font-weight: 700;
}

.package-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #FF4D8B;
  margin-top: 20px;
}

.trust-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFD93D, #FF6B6B);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ */
.faq-general, .faq-certification, .faq-power-of-attorney, .faq-apostille {
  background: white;
  padding: 40px 20px;
  margin-bottom: 40px;
  border-radius: 20px;
}

.faq-item {
  background: linear-gradient(135deg, #A8E6CF, #DCEDC1);
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 15px;
  border-left: 6px solid #4ECDC4;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.faq-item h3 {
  margin-bottom: 12px;
  color: #2D2D2D;
}

.faq-cta {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #FF6B6B, #FFD93D);
  border-radius: 30px;
}

.faq-cta h2 {
  color: white;
  margin-bottom: 20px;
}

.faq-cta p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
}

/* CONTACT */
.contact-methods, .contact-info-section, .office-hours, .location-section {
  background: white;
  padding: 40px 20px;
  margin-bottom: 40px;
  border-radius: 20px;
}

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

.contact-method {
  background: linear-gradient(135deg, #FFD93D, #FF6B6B);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 12px 40px rgba(255, 221, 61, 0.4);
}

.contact-method h3 {
  color: white;
  margin-bottom: 16px;
}

.contact-method p {
  color: white;
}

/* COMPANY STORY */
.company-story, .mission-values, .team {
  background: white;
  padding: 60px 20px;
  margin-bottom: 40px;
  border-radius: 20px;
}

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

.stat-item {
  background: linear-gradient(135deg, #4ECDC4, #44A08D);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 40px rgba(78, 205, 196, 0.4);
}

.stat-item strong {
  font-size: 28px;
  color: white;
  display: block;
}

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

.value-item {
  background: linear-gradient(135deg, #FFE66D, #FFAFBD);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(255, 175, 189, 0.4);
}

.value-item h3 {
  color: #2D2D2D;
  margin-bottom: 16px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #6C5CE7, #A8E6CF);
  padding: 80px 20px;
  text-align: center;
}

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

.thank-you-hero h1 {
  color: white;
}

.thank-you-hero .subheadline {
  font-size: 20px;
  color: white;
  margin-bottom: 16px;
}

.next-steps, .resources, .social-proof, .contact-reminder {
  background: white;
  padding: 60px 20px;
  margin-bottom: 40px;
  border-radius: 20px;
}

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

.step-item, .resource-item {
  background: linear-gradient(135deg, #FFD93D, #FF6B6B);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.step-item:hover, .resource-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 12px 40px rgba(255, 221, 61, 0.4);
}

.step-item h3, .resource-item h3 {
  color: white;
  margin-bottom: 12px;
}

.step-item p, .resource-item p {
  color: white;
}

.resource-item .btn {
  margin-top: 16px;
}

.response-time {
  text-align: center;
  margin-top: 32px;
  font-weight: 700;
  color: #4ECDC4;
}

/* LEGAL PAGES */
.legal-page {
  background: white;
  padding: 60px 20px;
  margin-bottom: 40px;
  border-radius: 20px;
}

.legal-page h1 {
  margin-bottom: 32px;
}

.legal-page h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-page h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

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

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

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

.footer-section h3 {
  color: #FFD93D;
  margin-bottom: 16px;
}

.footer-section p {
  color: white;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: white;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #FFD93D;
  transform: translateX(5px);
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 221, 61, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

/* COOKIE CONSENT BANNER */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FF4D8B, #FF6B35);
  padding: 24px;
  z-index: 2001;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  animation: slideUp 0.5s ease forwards;
}

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

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

.cookie-banner-text {
  flex: 1 1 300px;
  color: white;
  font-size: 16px;
}

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

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

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

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

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

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

.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* COOKIE MODAL */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2002;
  padding: 20px;
}

#cookie-settings-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: bounceIn 0.5s ease;
}

.cookie-modal-content h2 {
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #FFE66D, #FFAFBD);
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-category h3 {
  margin-bottom: 8px;
  color: #2D2D2D;
}

.cookie-category p {
  margin-bottom: 0;
  font-size: 14px;
  color: #2D2D2D;
}

.cookie-toggle {
  flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #4ECDC4;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  background: white;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

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

/* ANIMATIONS */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes moveBackground {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

@keyframes rotateBackground {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Mobile adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .hero-subheadline {
    font-size: 16px;
  }

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

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .service-card, .benefit-item, .testimonial-card,
  .package-card, .contact-method, .stat-item,
  .value-item, .step-item, .resource-item {
    flex: 1 1 100%;
  }

  .services-grid, .benefits-grid, .testimonials-grid,
  .packages-grid, .contact-grid, .stats-grid,
  .values-grid, .steps-grid, .resources-grid {
    flex-direction: column;
  }

  .hero-cta, .cta-buttons, .cookie-banner-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

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

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

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

  .cookie-modal-content {
    padding: 24px;
  }

  .cookie-category {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .benefit-item, .value-item {
    flex: 1 1 calc(50% - 24px);
  }
}

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

  body {
    background: white;
  }

  .container {
    max-width: 100%;
  }
}