/* ========================================
   ROUGHVAULT - PLAYFUL DYNAMIC DESIGN
   Pametne rešitve za sodoben dom prihodnosti
   ======================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
.cookie-text p {
  color: white;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  color: #fff;
  text-shadow: 3px 3px 0px rgba(52, 152, 219, 0.5), 6px 6px 0px rgba(155, 89, 182, 0.3);
  animation: bounce 2s ease-in-out infinite;
}

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

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #3498DB, #9B59B6, #E74C3C);
  border-radius: 10px;
  animation: colorSlide 3s ease-in-out infinite;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 700;
  color: #3498DB;
}

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

.content-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  transform: rotate(-1deg);
  transition: transform 0.3s ease;
}

.content-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

/* PLAYFUL HEADER */
header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease-out;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 25px;
  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: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

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

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

/* PLAYFUL BUTTONS */
.btn-primary, .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #E74C3C, #F39C12);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::before, .cta-button::before {
  content: '🚀';
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  font-size: 20px;
  transition: left 0.3s ease;
}

.btn-primary:hover, .cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(231, 76, 60, 0.6);
  animation: pulse 0.5s ease;
}

.btn-primary:hover::before, .cta-button:hover::before {
  left: 10px;
}

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

.btn-secondary:hover {
  background: #fff;
  color: #3498DB;
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #F39C12, #E74C3C);
  border: none;
  color: #fff;
  font-size: 32px;
  padding: 10px 20px;
  border-radius: 15px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.mobile-menu-close:hover {
  background: #fff;
  color: #E74C3C;
  transform: rotate(180deg);
}

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

.mobile-nav a {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(-3deg);
}

/* HERO SECTION - PLAYFUL */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '⚡';
  position: absolute;
  top: 20px;
  left: 10%;
  font-size: 80px;
  animation: float 3s ease-in-out infinite;
  opacity: 0.3;
}

.hero::after {
  content: '🎨';
  position: absolute;
  bottom: 20px;
  right: 10%;
  font-size: 80px;
  animation: float 4s ease-in-out infinite;
  opacity: 0.3;
}

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

.hero h1 {
  margin-bottom: 24px;
  animation: bounceIn 1s ease-out;
}

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

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

.trust-indicator {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  margin-top: 20px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #3498DB 0%, #9B59B6 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}

.last-updated {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

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

.benefits, .services-overview, .how-it-works, .testimonials, .statistics, .team, .solution-categories, .solution-packages, .use-cases, .reference-projects, .testimonials-detailed, .contact-options, .showroom, .faq-contact, .company-story, .process, .statistics-showcase, .next-steps, .what-to-expect, .resources, .social-proof, .additional-help, .services-full, .confirmation, .helpful-links, .return-home {
  background: #fff;
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.benefits::before, .services-overview::before, .testimonials::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #F39C12, #E74C3C);
  border-radius: 50%;
  opacity: 0.1;
  animation: pulse 4s ease-in-out infinite;
}

.section h2, .benefits h2, .services-overview h2, .how-it-works h2, .testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C3E50;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #7f8c8d;
  margin-top: -32px;
  margin-bottom: 40px;
}

/* FLEXBOX GRIDS - PLAYFUL */
.benefits-grid, .services-grid, .steps-grid, .testimonials-grid, .categories-grid, .packages-grid, .use-cases-grid, .stats-grid, .team-grid, .contact-methods, .faq-grid, .reference-grid, .process-steps, .expectations-grid, .resources-grid, .links-grid, .services-grid-full {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

/* BENEFIT CARDS */
.benefit-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '✨';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 40px;
  opacity: 0.3;
  animation: rotate 3s linear infinite;
}

.benefit-card:hover {
  transform: translateY(-10px) rotate(2deg) scale(1.05);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
}

.benefit-card h3 {
  color: #fff;
  margin-bottom: 12px;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

/* SERVICE CARDS */
.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  border: 4px solid #3498DB;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.service-card::after {
  content: '🔥';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 50px;
  animation: bounce 2s ease-in-out infinite;
}

.service-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  border-color: #E74C3C;
  box-shadow: 0 20px 50px rgba(231, 76, 60, 0.3);
}

.service-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.service-card p {
  color: #34495e;
  flex-grow: 1;
}

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

/* FULL SERVICE CARDS */
.service-card-full {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: linear-gradient(135deg, #fff 0%, #ECF0F1 100%);
  padding: 40px;
  border-radius: 25px;
  border: 5px solid #3498DB;
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-card-full:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: #9B59B6;
  box-shadow: 0 25px 60px rgba(155, 89, 182, 0.4);
}

.service-card-full h3 {
  color: #2C3E50;
  font-size: 24px;
}

.service-card-full .price {
  font-size: 32px;
  font-weight: 800;
  color: #E74C3C;
  margin: 8px 0;
}

/* STEP CARDS */
.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, #F39C12, #E74C3C);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.step::before {
  content: '👉';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  animation: bounce 1.5s ease-in-out infinite;
}

.step:hover {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 20px 50px rgba(243, 156, 18, 0.5);
}

.step h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: rgba(255, 255, 255, 0.9);
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: linear-gradient(135deg, #ECF0F1 0%, #fff 100%);
  padding: 32px;
  border-radius: 20px;
  border-left: 6px solid #3498DB;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 20px 50px rgba(52, 152, 219, 0.3);
  border-left-color: #E74C3C;
}

.testimonial-card p {
  font-style: italic;
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-card .author {
  font-weight: 700;
  color: #3498DB;
  font-style: normal;
  margin-top: 8px;
}

/* PACKAGE CARDS */
.package-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  border: 4px solid #3498DB;
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.package-card.popular {
  border-color: #E74C3C;
  transform: scale(1.05);
  background: linear-gradient(135deg, #fff 0%, #ffe5e5 100%);
}

.package-card:hover {
  transform: translateY(-15px) rotate(-2deg) scale(1.08);
  box-shadow: 0 25px 60px rgba(52, 152, 219, 0.4);
}

.package-card h3 {
  color: #2C3E50;
  font-size: 28px;
}

.package-price {
  font-size: 36px;
  font-weight: 800;
  color: #E74C3C;
  margin: 8px 0;
}

.badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #E74C3C, #F39C12);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

/* CATEGORY CARDS */
.category-card, .use-case, .team-member, .contact-method, .faq-item, .expectation {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #3498DB 0%, #9B59B6 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
}

.category-card:hover, .use-case:hover, .team-member:hover, .contact-method:hover, .faq-item:hover, .expectation:hover {
  transform: translateY(-10px) rotate(3deg) scale(1.05);
  box-shadow: 0 20px 50px rgba(52, 152, 219, 0.5);
}

.category-card h3, .use-case h3, .team-member h3, .contact-method h3, .faq-item h3, .expectation h3 {
  color: #fff;
  margin-bottom: 12px;
}

.category-card p, .use-case p, .team-member p, .contact-method p, .faq-item p, .expectation p {
  color: rgba(255, 255, 255, 0.9);
}

/* STAT CARDS */
.stat-card, .stat {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, #F39C12, #E74C3C);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover, .stat:hover {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 20px 50px rgba(243, 156, 18, 0.5);
  animation: wiggle 0.5s ease;
}

.stat-card h3, .stat h3 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 8px;
}

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

/* REFERENCE CARDS */
.reference-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  border: 4px solid #3498DB;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reference-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 20px 50px rgba(52, 152, 219, 0.4);
  border-color: #9B59B6;
}

.reference-card h3 {
  color: #2C3E50;
  font-size: 22px;
}

.reference-card .testimonial {
  font-style: italic;
  color: #7f8c8d;
  background: #ECF0F1;
  padding: 16px;
  border-radius: 10px;
  margin-top: 8px;
}

/* RESOURCE CARDS */
.resource-card, .link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  color: #fff;
}

.resource-card:hover, .link-card:hover {
  transform: translateY(-15px) scale(1.1);
  box-shadow: 0 25px 60px rgba(102, 126, 234, 0.5);
  animation: pulse 0.5s ease;
}

.resource-card h3, .link-card h3 {
  color: #fff;
  margin-bottom: 12px;
}

.resource-card p {
  color: rgba(255, 255, 255, 0.9);
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #E74C3C 0%, #F39C12 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '🎉';
  position: absolute;
  top: 20px;
  left: 10%;
  font-size: 60px;
  animation: float 3s ease-in-out infinite;
  opacity: 0.3;
}

.cta-banner::after {
  content: '🎊';
  position: absolute;
  bottom: 20px;
  right: 10%;
  font-size: 60px;
  animation: float 4s ease-in-out infinite;
  opacity: 0.3;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner h2::after {
  background: #fff;
}

.cta-banner p {
  color: #fff;
  font-size: 20px;
  margin-bottom: 32px;
}

.trust-element {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-top: 16px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 40px;
}

.thank-you-hero h1 {
  color: #fff;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: #fff;
  font-size: 20px;
}

/* CONTACT FORM INFO */
.form-info {
  background: #ECF0F1;
  padding: 32px;
  border-radius: 20px;
  margin-top: 24px;
  border-left: 6px solid #E74C3C;
}

.form-fields-display {
  margin-top: 20px;
}

.form-fields-display ul {
  list-style: none;
  margin-left: 0;
}

.form-fields-display li {
  padding: 8px 0;
  color: #2C3E50;
}

.form-fields-display li::before {
  content: '✓';
  color: #27ae60;
  font-weight: 700;
  margin-right: 10px;
}

/* LEGAL CONTENT */
.legal-content {
  margin-bottom: 60px;
}

.legal-content ul li {
  color: #2C3E50;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-column h4 {
  color: #F39C12;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-column p, .footer-column a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #F39C12;
  transform: translateX(10px);
}

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

.footer-menu {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

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

.footer-menu a:hover {
  color: #F39C12;
  transform: scale(1.1);
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
  color: #fff;
  padding: 24px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: bottom 0.5s ease;
  border-top: 4px solid #F39C12;
}

.cookie-banner.show {
  bottom: 0;
}

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

.cookie-text {
  flex: 1 1 400px;
}

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

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

.cookie-btn.accept {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: #fff;
}

.cookie-btn.accept:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

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

.cookie-btn.reject:hover {
  background: #fff;
  color: #2C3E50;
}

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

.cookie-btn.settings:hover {
  background: #F39C12;
  color: #fff;
}

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

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

.cookie-modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: bounceIn 0.5s ease-out;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #2C3E50;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #E74C3C;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #ECF0F1;
  border-radius: 15px;
}

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

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.cookie-save {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #3498DB, #9B59B6);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.cookie-save:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
}

/* ANIMATIONS */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

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

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

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

@keyframes colorSlide {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .main-nav { display: none; }
  .cta-button { display: none; }
  .mobile-menu-toggle { display: block; }
  
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 28px; }
  .hero-subtitle { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: center; }
  
  .benefit-card, .service-card, .service-card-full, .package-card, .category-card, .use-case, .team-member, .contact-method, .faq-item, .reference-card, .resource-card, .link-card, .expectation, .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .step, .stat-card, .stat {
    flex: 1 1 calc(50% - 24px);
    min-width: 150px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-menu {
    flex-direction: column;
    gap: 12px;
  }
  
  .package-card.popular {
    transform: scale(1);
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .content-wrapper {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 24px; }
  h2 { font-size: 22px; }
  
  .btn-primary, .cta-button, .btn-secondary {
    padding: 12px 24px;
    font-size: 16px;
  }
  
  .stat-card, .stat {
    flex: 1 1 100%;
  }
  
  .stat-card h3, .stat h3 {
    font-size: 36px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal, header, footer {
    display: none;
  }
  
  body {
    background: #fff;
  }
  
  .hero, .page-hero, .cta-banner {
    background: #fff;
    color: #000;
  }
}