/* ===================================
   IFAKO REINIGUNGSDIENSTE CSS
   Vibrant & Energetic Design Style
   =================================== */

/* === 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, Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* === VIBRANT COLOR PALETTE === */
:root {
  --electric-blue: #0066B3;
  --vibrant-green: #2C5F2D;
  --energetic-orange: #FF6B35;
  --bright-yellow: #FFD700;
  --hot-pink: #FF1493;
  --light-gray: #F0F4F8;
  --white: #ffffff;
  --dark-text: #1a1a1a;
  --shadow: 0 4px 20px rgba(0, 102, 179, 0.15);
  --shadow-hover: 0 8px 30px rgba(0, 102, 179, 0.25);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-text);
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, var(--electric-blue), var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  color: var(--electric-blue);
}

h3 {
  font-size: 24px;
  color: var(--vibrant-green);
}

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

strong {
  font-weight: 700;
  color: var(--electric-blue);
}

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

/* === BUTTONS === */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--electric-blue), var(--hot-pink));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

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

.btn-secondary {
  background: var(--white);
  color: var(--electric-blue);
  border-color: var(--electric-blue);
  box-shadow: 0 4px 15px rgba(0, 102, 179, 0.2);
}

.btn-secondary:hover {
  background: var(--electric-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 102, 179, 0.3);
}

.phone-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--energetic-orange);
  color: var(--white);
  font-weight: 700;
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.phone-btn:hover {
  background: var(--hot-pink);
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

/* === HEADER === */
header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 102, 179, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid var(--electric-blue);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.logo img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 2px 8px rgba(0, 102, 179, 0.3));
}

.tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--vibrant-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark-text);
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--electric-blue), var(--hot-pink));
  transform: translateY(-2px);
}

.header-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--electric-blue), var(--hot-pink));
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--electric-blue), var(--hot-pink));
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: right 0.4s 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: var(--white);
  color: var(--electric-blue);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--energetic-orange);
  color: var(--white);
}

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

.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: var(--white);
  color: var(--electric-blue);
  transform: translateX(10px);
  border-color: var(--bright-yellow);
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--hot-pink) 50%, var(--energetic-orange) 100%);
  color: var(--white);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: slide 20s linear infinite;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(50px); }
}

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

.hero h1 {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  animation: bounceIn 1s ease;
}

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

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
}

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

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

.trust-item img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.trust-item span {
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

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

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

section h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* === SERVICES GRID === */
.services-overview {
  background: var(--light-gray);
}

.services-grid,
.benefits-grid,
.testimonials-grid,
.methods-grid,
.values-grid,
.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card,
.benefit-item,
.testimonial-card,
.method-card,
.value-item,
.metric-item {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--electric-blue), var(--hot-pink), var(--energetic-orange));
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover,
.benefit-item:hover,
.method-card:hover,
.value-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: var(--shadow-hover);
}

.service-card img,
.benefit-item img,
.method-card img,
.value-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 102, 179, 0.3));
}

.service-card h3,
.benefit-item h3,
.method-card h3,
.value-item h3 {
  margin-bottom: 16px;
}

.service-card p,
.benefit-item p,
.method-card p,
.value-item p {
  margin-bottom: 20px;
  flex-grow: 1;
}

.price {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--bright-yellow), var(--energetic-orange));
  color: var(--dark-text);
  font-weight: 700;
  border-radius: 25px;
  font-size: 16px;
  margin-top: auto;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

/* === VALUE PROPOSITION === */
.value-proposition {
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.1), rgba(255, 20, 147, 0.1));
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--white);
}

.testimonial-card {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  border-left: 5px solid var(--electric-blue);
  padding: 30px;
  max-width: 500px;
}

.testimonial-card p {
  font-style: italic;
  font-size: 16px;
  color: var(--dark-text);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  color: var(--electric-blue);
  font-size: 16px;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

.rating {
  text-align: center;
  font-size: 20px;
  color: var(--bright-yellow);
  margin-top: 30px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--vibrant-green), var(--electric-blue));
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s ease infinite;
}

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

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
}

.cta-banner .btn-primary {
  position: relative;
  z-index: 10;
}

.phone-display {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 600;
}

.phone-display a {
  color: var(--bright-yellow);
  text-decoration: underline;
}

.availability {
  font-size: 14px;
  margin-top: 10px;
  opacity: 0.9;
}

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, var(--electric-blue), var(--vibrant-green));
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.breadcrumb a {
  color: var(--bright-yellow);
}

/* === SERVICE DETAIL === */
.service-detail {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.service-detail img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.service-info {
  flex: 1;
  min-width: 250px;
}

.service-info ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.service-info li {
  margin-bottom: 10px;
  color: #555;
}

/* === PRICING === */
.pricing-transparency {
  background: var(--light-gray);
  text-align: center;
}

/* === COMPANY STORY === */
.company-story,
.team-intro {
  max-width: 900px;
  margin: 0 auto;
}

.company-story p,
.team-intro p {
  font-size: 18px;
  line-height: 1.8;
}

/* === SUCCESS METRICS === */
.metric-item {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, var(--electric-blue), var(--hot-pink));
  color: var(--white);
  border-radius: 20px;
}

.metric-item h3 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 10px;
}

.metric-item p {
  color: var(--white);
  font-size: 16px;
}

/* === SERVICE AREAS === */
.contact-box {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 20px;
  border-left: 5px solid var(--electric-blue);
  margin: 30px 0;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 30px;
}

.areas-grid span {
  background: var(--electric-blue);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
}

.areas-grid span:hover {
  background: var(--hot-pink);
  transform: scale(1.1) rotate(-3deg);
}

.coverage-note {
  text-align: center;
  font-weight: 600;
  color: var(--vibrant-green);
  margin-top: 20px;
}

/* === CONTACT METHODS === */
.methods-grid {
  margin-bottom: 60px;
}

.method-card {
  text-align: center;
  align-items: center;
}

/* === CONTACT FORM === */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-note {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 5px solid var(--energetic-orange);
}

.form-note p {
  margin-bottom: 10px;
  font-size: 14px;
}

.form-note a {
  color: var(--electric-blue);
  font-weight: 600;
}

.form-placeholder {
  background: var(--white);
  padding: 60px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 3px dashed var(--electric-blue);
}

.form-instruction {
  font-size: 18px;
  font-weight: 600;
  color: var(--electric-blue);
  margin-bottom: 30px;
}

/* === INFO GRID === */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.info-item {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 30px;
  background: var(--light-gray);
  border-radius: 20px;
  border-top: 5px solid var(--electric-blue);
}

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

.info-item a {
  color: var(--electric-blue);
  font-weight: 600;
}

/* === RESPONSE TIME === */
.response-time ul {
  max-width: 700px;
  margin: 30px auto;
  padding-left: 0;
}

.response-time li {
  background: var(--light-gray);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 15px;
  border-left: 5px solid var(--vibrant-green);
  list-style: none;
}

.urgency-note {
  text-align: center;
  font-weight: 600;
  color: var(--energetic-orange);
  margin-top: 30px;
  font-size: 18px;
}

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

.legal-content h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content a {
  color: var(--electric-blue);
  text-decoration: underline;
}

.last-updated {
  font-style: italic;
  color: #666;
}

/* === THANK YOU PAGE === */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--electric-blue), var(--hot-pink));
  color: var(--white);
}

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

.thank-you-hero h1 {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
}

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

.step-item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--electric-blue);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--electric-blue), var(--hot-pink));
  color: var(--white);
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  line-height: 50px;
  margin-bottom: 20px;
}

.contact-highlight {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  margin-top: 30px;
  border: 3px solid var(--electric-blue);
}

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

.resource-card {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 30px 20px;
  background: var(--electric-blue);
  color: var(--white);
  text-align: center;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.resource-card:hover {
  background: var(--hot-pink);
  transform: translateY(-5px) scale(1.05);
}

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, var(--dark-text), var(--electric-blue));
  color: var(--white);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-info,
.footer-links,
.footer-legal {
  flex: 1 1 250px;
}

.footer-info img {
  width: 80px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-info p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-info a,
.footer-links a,
.footer-legal a {
  color: var(--white);
  transition: color 0.3s ease;
}

.footer-info a:hover,
.footer-links a:hover,
.footer-legal a:hover {
  color: var(--bright-yellow);
}

.footer-links h4,
.footer-legal h4 {
  color: var(--bright-yellow);
  font-size: 18px;
  margin-bottom: 20px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--electric-blue), var(--hot-pink));
  color: var(--white);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: var(--bright-yellow);
  color: var(--dark-text);
}

.cookie-accept:hover {
  background: var(--white);
  transform: scale(1.05);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-reject:hover {
  background: var(--white);
  color: var(--electric-blue);
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

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

/* === 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: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 15px;
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

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

.toggle-switch.active {
  background: var(--electric-blue);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

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

.cookie-save,
.cookie-modal-close {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.cookie-save {
  background: var(--electric-blue);
  color: var(--white);
}

.cookie-save:hover {
  background: var(--hot-pink);
}

.cookie-modal-close {
  background: var(--light-gray);
  color: var(--dark-text);
}

.cookie-modal-close:hover {
  background: #ddd;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  /* Mobile menu visibility */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography scaling */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  /* Section padding */
  section {
    padding: 40px 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  /* Flex direction changes */
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 70px;
  }
  
  .service-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .service-detail img {
    margin: 0 auto 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-indicators {
    gap: 20px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  /* Grid adjustments */
  .services-grid,
  .benefits-grid,
  .methods-grid,
  .values-grid,
  .metrics-grid {
    gap: 20px;
  }
  
  .service-card,
  .benefit-item,
  .method-card,
  .value-item,
  .metric-item {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
  }
  
  .service-card,
  .benefit-item,
  .testimonial-card {
    padding: 20px;
  }
  
  .mobile-menu {
    width: 100%;
  }
}

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

.service-card,
.benefit-item,
.testimonial-card {
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
  }
}

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