/* ============================================
   ENCHANTED BASTION - VIBRANT ENERGETIC DESIGN
   CSS Reset & Base Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: linear-gradient(135deg, #FF00FF 0%, #00FFFF 50%, #FFFF00 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - VIBRANT & ENERGETIC
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Arial Black', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: #FF0080;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 255, 255, 0.3);
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

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

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

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

a {
  color: #FF00FF;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

a:hover {
  color: #00FFFF;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

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

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(255, 0, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  background: linear-gradient(90deg, #FF0080 0%, #FF00FF 50%, #00FFFF 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 0, 128, 0.5);
}

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

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

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

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 0, 0.9);
  color: #FF0080;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 0, 0.6);
}

.cta-button {
  background: linear-gradient(135deg, #FFFF00 0%, #FF00FF 100%);
  color: #1A1A1A;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(255, 255, 0, 0.5);
  transition: all 0.3s ease;
  font-size: 14px;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 0, 255, 0.7);
  background: linear-gradient(135deg, #FF00FF 0%, #00FFFF 100%);
  color: #FFFFFF;
}

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FF00FF 0%, #00FFFF 100%);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 0, 255, 0.6);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 255, 255, 0.8);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #FF0080 0%, #FF00FF 50%, #00FFFF 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

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

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

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

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

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

.mobile-nav a:hover {
  background: #FFFF00;
  color: #FF0080;
  border-color: #FF00FF;
  transform: translateX(10px);
}

/* ============================================
   BUTTONS - VIBRANT & ENERGETIC
   ============================================ */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #FF00FF 0%, #00FFFF 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFFF00 0%, #FF0080 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 0, 255, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #FFFF00 0%, #00FF00 100%);
  color: #1A1A1A;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #00FFFF 0%, #FF00FF 100%);
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.6);
}

/* ============================================
   HERO SECTION - EXPLOSIVE ENERGY
   ============================================ */

.hero {
  background: linear-gradient(135deg, #FF0080 0%, #FF00FF 25%, #00FFFF 50%, #FFFF00 75%, #FF0080 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

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

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

.hero h1 {
  font-size: 56px;
  color: #FFFFFF;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 0, 0.8);
  margin-bottom: 24px;
  animation: titleBounce 1s ease-out;
}

@keyframes titleBounce {
  0% { transform: translateY(-50px); opacity: 0; }
  60% { transform: translateY(10px); opacity: 1; }
  100% { transform: translateY(0); }
}

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

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

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-indicators span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   HERO INTERNAL PAGES
   ============================================ */

.hero-internal {
  background: linear-gradient(135deg, #00FFFF 0%, #FF00FF 50%, #FFFF00 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(255, 0, 255, 0.4);
}

.hero-internal h1 {
  color: #FFFFFF;
  font-size: 48px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-internal p {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ============================================
   CARD LAYOUTS - FLEXBOX ONLY
   ============================================ */

.features-grid,
.services-grid,
.testimonials-grid,
.categories-grid,
.benefits-grid,
.values-grid,
.team-grid,
.trends-grid,
.articles-grid,
.contact-grid,
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.feature-card,
.service-card,
.testimonial-card,
.category-card,
.benefit-card,
.value-card,
.team-member,
.trend-card,
.article-card,
.contact-card,
.step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(255, 0, 128, 0.2);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.feature-card:hover,
.service-card:hover,
.category-card:hover,
.benefit-card:hover,
.value-card:hover,
.team-member:hover,
.trend-card:hover,
.article-card:hover,
.contact-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 35px rgba(255, 0, 255, 0.4);
  border-color: #FF00FF;
  background: linear-gradient(135deg, rgba(255, 255, 0, 0.2) 0%, rgba(0, 255, 255, 0.2) 100%);
}

.feature-card img,
.contact-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.6));
}

.feature-card h3,
.service-card h3,
.category-card h3,
.benefit-card h3,
.value-card h3,
.team-member h3,
.trend-card h3,
.article-card h3,
.contact-card h3,
.step h3 {
  color: #FF0080;
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-card p,
.service-card p,
.category-card p,
.benefit-card p,
.value-card p,
.team-member p,
.trend-card p,
.article-card p,
.contact-card p,
.step p {
  color: #2A2A2A;
  font-size: 14px;
  line-height: 1.6;
}

.price {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: #FF00FF;
  margin-top: 16px;
  text-shadow: 1px 1px 2px rgba(0, 255, 255, 0.3);
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, #FFFF00 0%, #FF00FF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
}

.testimonials h2 {
  text-align: center;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 20px;
  border: 3px solid #FF0080;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

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

.author {
  font-weight: 700;
  color: #FF0080;
  margin-top: 12px;
  font-size: 14px;
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */

.value-proposition {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.3);
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */

.services-preview {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 60px;
  border-radius: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: #2A2A2A;
  margin-bottom: 32px;
  font-weight: 600;
}

/* ============================================
   CTA BANNER - EXPLOSIVE
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, #FF00FF 0%, #00FFFF 50%, #FFFF00 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 8px 32px rgba(255, 0, 255, 0.5);
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-banner p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* ============================================
   TEXT SECTIONS & CONTENT
   ============================================ */

.text-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.text-section h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-section ul,
.text-section ol {
  margin-left: 24px;
  margin-bottom: 24px;
}

.text-section li {
  margin-bottom: 12px;
  color: #2A2A2A;
  font-size: 16px;
  line-height: 1.6;
}

.expertise-list,
.departments-list {
  list-style: none;
  margin-left: 0;
}

.expertise-list li,
.departments-list li {
  padding: 16px;
  background: linear-gradient(90deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
  border-left: 4px solid #FF00FF;
  margin-bottom: 12px;
  border-radius: 8px;
  font-weight: 600;
}

/* ============================================
   STATS & NUMBERS
   ============================================ */

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
}

.stat-item strong {
  display: block;
  font-size: 48px;
  color: #FF00FF;
  font-weight: 900;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 255, 255, 0.3);
}

.stat-item span {
  display: block;
  font-size: 14px;
  color: #2A2A2A;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 60px;
  border-radius: 20px;
}

.process h2 {
  text-align: center;
  margin-bottom: 48px;
}

.step {
  text-align: center;
  position: relative;
}

.step::after {
  content: '→';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: #FF00FF;
  font-weight: 900;
}

.step:last-child::after {
  display: none;
}

/* ============================================
   BLOG & ARTICLES
   ============================================ */

.blog-categories {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  border-radius: 20px;
  text-align: center;
}

.categories-filter {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.categories-filter a {
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
  border-radius: 20px;
  font-weight: 700;
  color: #FF0080;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.categories-filter a:hover,
.categories-filter a.active {
  background: linear-gradient(135deg, #FFFF00 0%, #FF00FF 100%);
  color: #FFFFFF;
  border-color: #00FFFF;
  transform: translateY(-2px);
}

.article-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: #FF00FF;
}

.article-meta span {
  padding: 6px 12px;
  background: rgba(255, 0, 255, 0.1);
  border-radius: 12px;
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter {
  background: linear-gradient(135deg, #FF00FF 0%, #00FFFF 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 60px;
}

.newsletter h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.newsletter p {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 32px;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   CONTACT SECTIONS
   ============================================ */

.contact-quick,
.contact-methods,
.contact-info-detailed {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 60px;
  border-radius: 20px;
  text-align: center;
}

.contact-info,
.info-block {
  margin-top: 32px;
  font-size: 16px;
}

.contact-info p,
.info-block p {
  margin-bottom: 16px;
  font-weight: 600;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 60px;
  border-radius: 20px;
}

/* ============================================
   FOOTER - VIBRANT
   ============================================ */

.site-footer {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-top: 5px solid #FF00FF;
}

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

.footer-brand,
.footer-nav,
.footer-legal,
.footer-contact {
  flex: 1 1 200px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.6));
}

.tagline {
  font-size: 14px;
  color: #CCCCCC;
  font-style: italic;
  margin-top: 8px;
}

.footer-nav h3,
.footer-legal h3,
.footer-contact h3 {
  color: #FFFF00;
  margin-bottom: 16px;
  font-size: 18px;
}

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

.footer-nav a,
.footer-legal a {
  color: #CCCCCC;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: #00FFFF;
  padding-left: 8px;
}

.footer-contact p {
  font-size: 14px;
  color: #CCCCCC;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid rgba(255, 0, 255, 0.3);
  font-size: 14px;
  color: #999999;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #FF00FF 0%, #00FFFF 100%);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-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 p {
  color: #FFFFFF;
  font-size: 14px;
  margin: 0;
  flex: 1 1 300px;
}

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

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

.cookie-accept {
  background: #FFFF00;
  color: #1A1A1A;
}

.cookie-accept:hover {
  background: #00FF00;
  transform: scale(1.05);
}

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

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

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

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

/* ============================================
   COOKIE PREFERENCES MODAL
   ============================================ */

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(255, 0, 255, 0.5);
  position: relative;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 0, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid #FF00FF;
}

.cookie-category h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

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

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

.toggle-switch.active {
  background: #FF00FF;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
}

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

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .cta-button {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-internal h1 {
    font-size: 32px;
  }
  
  /* Layout adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Card layouts - stack on mobile */
  .features-grid,
  .services-grid,
  .testimonials-grid,
  .categories-grid,
  .benefits-grid,
  .values-grid,
  .team-grid,
  .trends-grid,
  .articles-grid,
  .contact-grid,
  .process-steps {
    flex-direction: column;
  }
  
  .feature-card,
  .service-card,
  .testimonial-card,
  .category-card,
  .benefit-card,
  .value-card,
  .team-member,
  .trend-card,
  .article-card,
  .contact-card,
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .step::after {
    display: none;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-nav nav,
  .footer-legal nav {
    align-items: center;
  }
  
  /* Stats */
  .stats {
    flex-direction: column;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    justify-content: center;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .feature-card,
  .service-card,
  .category-card,
  .benefit-card,
  .value-card,
  .team-member,
  .trend-card,
  .article-card,
  .contact-card,
  .step {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ============================================
   ANIMATIONS
   ============================================ */

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-button,
  .cta-banner {
    display: none !important;
  }
  
  body {
    background: #FFFFFF;
  }
  
  .section {
    box-shadow: none;
    border: 1px solid #CCCCCC;
  }
}