/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Variables */
  --laundry-blue: hsl(199, 88%, 64%);
  --laundry-blue-dark: hsl(199, 88%, 54%);
  --laundry-blue-light: hsl(199, 88%, 74%);
  --laundry-teal: hsl(174, 72%, 56%);
  --laundry-gray: hsl(199, 15%, 96%);
  --white: #ffffff;
  --black: #000000;

  /* Gradients */
  --gradient-hero: linear-gradient(
    135deg,
    var(--laundry-blue),
    var(--laundry-teal)
  );
  --gradient-section: linear-gradient(
    180deg,
    var(--white),
    var(--laundry-gray)
  );

  /* Shadows */
  --shadow-hero: 0 20px 40px -10px hsla(199, 88%, 64%, 0.3);
  --shadow-card: 0 10px 25px -3px hsla(199, 88%, 64%, 0.1);

  /* Fonts */
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  border: 3px solid var(--laundry-blue);
  border-radius: 1.5rem;
}

.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
}

.badge-separator::before {
  content: "•";
  margin: 0 0.5rem;
  color: #999;
}

.about-section .container,
.services-section .container,
.gallery-section .container,
.contact-section .container,
.footer .container {
  display: block;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Header/Navigation */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.navbar {
  padding: 0.5rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
}

.nav-brand .brand-link {
  display: inline-block;
  text-decoration: none;
}

.nav-brand .brand-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nav-brand .brand-link:hover .brand-logo {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--laundry-blue);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: var(--black);
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hero Section */
.hero-section {
  position: relative;

  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding-top: 2rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("src/assets/WhatsApp Image 2025-09-13 at 00.13.30.jpeg")
    center/cover no-repeat;
  filter: blur(2px);
  z-index: -2;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.9) 0%,
    rgba(59, 130, 246, 0.9) 50%,
    rgba(6, 182, 212, 0.9) 100%
  );
  z-index: -1;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.particle:nth-child(3) {
  top: 30%;
  left: 70%;
  animation-delay: 4s;
  animation-duration: 7s;
}

.particle:nth-child(4) {
  top: 80%;
  left: 20%;
  animation-delay: 1s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  top: 40%;
  left: 90%;
  animation-delay: 3s;
  animation-duration: 5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-20px) rotate(270deg);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 8rem 0 0 0;
  width: 100%;
}

.hero-text {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s ease-out;
  margin: 0 auto;
  padding: 0 2rem;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 1rem 2rem;
  margin: 0 auto 3rem auto;
  font-size: 1rem;
  font-weight: 600;
  animation: fadeInUp 1s ease-out 0.2s both;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.badge-separator {
  opacity: 0.7;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin: 0 auto 2rem auto;
  line-height: 1.3;
  animation: fadeInUp 1s ease-out 0.4s both;
  text-align: center;
  width: 100%;
  letter-spacing: -2px;
  padding-bottom: 0.2rem;
}

.title-line {
  display: block;
  overflow: visible;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 2rem auto;
  animation: fadeInUp 1s ease-out 0.6s both;
  width: 100%;
  text-align: center;
}

.tagline-item {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 0.9;
}

.tagline-separator {
  opacity: 0.6;
  font-weight: 300;
}

.hero-welcome {
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0 auto 2.5rem auto;
  line-height: 1.4;
  animation: fadeInUp 1s ease-out 0.8s both;
  text-align: center;
  width: 100%;
  opacity: 0.95;
}

.highlight {
  background: linear-gradient(135deg, #ffffff 0%, #41b7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-description {
  font-size: 1.3rem;
  margin: 0 auto 4rem auto;
  max-width: 700px;
  opacity: 0.9;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 1s both;
  text-align: center;
  width: 100%;
  font-weight: 400;
}

.description-highlight {
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto 2rem auto;
  animation: fadeInUp 1s ease-out 1.2s both;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0 auto 4rem auto;
  animation: fadeInUp 1s ease-out 1.4s both;
  width: 100%;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  background: var(--laundry-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  min-width: 200px;
  justify-content: center;
}

.btn-primary {
  background: var(--laundry-blue);
  color: var(--white);
  box-shadow: 0 10px 40px rgba(65, 183, 255, 0.3);
  border: 1px solid var(--laundry-blue);
}

.btn-primary:hover {
  background: var(--laundry-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(65, 183, 255, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.arrow-right {
  width: 1.25rem;
  height: 1.25rem;
}

/* Hero Features */
.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 1.6s both;
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.feature:hover::before {
  left: 100%;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.feature-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
  padding: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.feature:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.2)
  );
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.feature-icon svg {
  color: var(--white);
}

.feature-text {
  text-align: left;
  position: relative;
  z-index: 1;
}

.feature-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
  line-height: 1.3;
}

.feature-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Sections */
.about-section,
.services-section,
.gallery-section,
.contact-section {
  padding: 5rem 0;
  margin: 2rem 0;
}

.about-section {
  background-color: var(--white);
}

.services-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding-top: 2rem;
}

.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.9) 0%,
    rgba(59, 130, 246, 0.9) 50%,
    rgba(6, 182, 212, 0.9) 100%
  );
  z-index: -1;
}

.services-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 8rem 0;
}

.services-section .container {
  border: none;
}

.services-section .section-title {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.gallery-section {
  background-color: var(--white);
}

.contact-section {
  background-color: var(--white);
}

/* Section Titles */
.section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--laundry-blue);
}

/* About Section Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 0;
}

.about-content {
  margin: 1.5rem 0;
  font-size: 1.125rem;
  color: #666;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-text-bottom {
  margin-top: 0;
}

.about-text-bottom .about-content {
  margin: 0;
}

/* About section links - make them unnoticeable */
.about-section a {
  color: inherit;
  text-decoration: none;
}

.about-section a:hover {
  color: inherit;
  text-decoration: none;
}

.about-image {
  position: relative;
  margin: 0;
  padding: 0;
}

.about-img {
  width: 100%;
  height: 384px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  margin: 0;
  padding: 0;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--laundry-blue);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.badge-number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.badge-text {
  font-size: 0.875rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 5rem 0;
}

.stat-card {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  color: var(--laundry-blue);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  font-size: 2.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--laundry-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--laundry-blue);
}

.stat-description {
  color: #666;
}

/* Values Section */
.values-section {
  margin-top: 5rem;
  margin-bottom: 6rem;
}

.values-title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--laundry-blue);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.value-icon {
  background-color: rgba(65, 183, 255, 0.1);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--laundry-blue);
  font-size: 1.5rem;
}

.value-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.value-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* About Button Hover Effect */
.about-button .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px -5px hsla(199, 88%, 64%, 0.4);
}

/* Services Section */
.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 768px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
  color: var(--black);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon {
  background-color: rgba(65, 183, 255, 0.1);
  padding: 0.75rem;
  border-radius: 50%;
  color: var(--laundry-blue);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--laundry-blue);
}

.service-description {
  color: #666;
  margin-bottom: 1.5rem;
}

.service-items {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-items li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #555;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid var(--laundry-blue);
  transition: all 0.2s ease;
}

.service-items li:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.service-items li svg {
  color: var(--laundry-blue);
  flex-shrink: 0;
  font-size: 1rem;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 768px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item.large {
  aspect-ratio: 16/9;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Contact Section */
.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 768px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.info-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--laundry-blue);
  margin-bottom: 2rem;
}

.info-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-card {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  color: var(--laundry-blue);
  flex-shrink: 0;
}

.info-content h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-content p {
  color: #666;
  margin-bottom: 0.25rem;
}

.map-card {
  flex-direction: column;
}

.map-iframe {
  margin-top: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-iframe iframe {
  border-radius: 0.5rem;
}

.service-areas-card {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.service-areas-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--laundry-blue);
}

.service-areas-card p {
  color: #666;
  margin-bottom: 1rem;
}

.service-areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-areas-tags span {
  background-color: rgba(65, 183, 255, 0.1);
  color: var(--laundry-blue);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

/* Contact Form */
.form-card {
  background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 40px -10px rgba(65, 183, 255, 0.1);
  border: 1px solid rgba(65, 183, 255, 0.1);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--laundry-blue);
}

.form-header svg {
  background: linear-gradient(135deg, var(--laundry-blue), var(--laundry-teal));
  padding: 0.5rem;
  border-radius: 50%;
  color: var(--white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #2d3748;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  background: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.textarea-wrapper textarea {
  padding-top: 1rem;
  resize: vertical;
  min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: var(--laundry-blue);
  box-shadow: 0 0 0 3px rgba(65, 183, 255, 0.1);
  transform: translateY(-1px);
}

.input-wrapper input:valid,
.input-wrapper textarea:valid {
  border-color: #e2e8f0;
}

.input-wrapper input.error,
.input-wrapper textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  transition: all 0.3s ease;
}

.textarea-wrapper .input-icon {
  top: 1.25rem;
  transform: translateY(0);
}

.input-wrapper:focus-within .input-icon {
  color: var(--laundry-blue);
}

.input-wrapper input:valid + .input-icon {
  color: #94a3b8;
}

.input-wrapper input.error + .input-icon {
  color: #ef4444;
}

.error-message {
  color: #ef4444;
  font-size: 0.825rem;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.error-message.show {
  opacity: 1;
  transform: translateY(0);
}

.submit-btn {
  background: linear-gradient(
    135deg,
    var(--laundry-blue) 0%,
    var(--laundry-blue-dark) 100%
  );
  color: var(--white);
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(65, 183, 255, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(65, 183, 255, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(65, 183, 255, 0.3);
}

.submit-btn.loading {
  pointer-events: none;
}

.btn-loader {
  display: none;
  animation: spin 1s linear infinite;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .btn-loader {
  display: block;
}

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

.form-disclaimer {
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(65, 183, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--laundry-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-disclaimer svg {
  color: var(--laundry-blue);
  flex-shrink: 0;
}

/* Map */
.map-container {
  margin-top: 4rem;
}

.map-placeholder {
  background: linear-gradient(
    135deg,
    rgba(65, 183, 255, 0.2),
    rgba(46, 196, 182, 0.2)
  );
  border-radius: 1rem;
  height: 384px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.map-content {
  text-align: center;
  color: var(--laundry-blue);
}

.map-content svg {
  margin-bottom: 1rem;
}

.map-content h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.map-content p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #666;
}

.map-btn {
  background-color: transparent;
  color: var(--laundry-blue);
  border: 2px solid var(--laundry-blue);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-btn:hover {
  background-color: var(--laundry-blue);
  color: var(--white);
}

.footer {
  background-color: var(--laundry-blue);
  color: var(--white);
  padding: 2rem 0 1.5rem;
  margin: 2rem 0 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-info p {
  opacity: 0.9;
}

.footer-contact h4,
.footer-hours h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-contact p,
.footer-hours p {
  opacity: 0.9;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  opacity: 0.8;
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-separator {
  opacity: 0.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  text-decoration: none;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #1e3a5f;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.4);
}

.social-link i {
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.1);
}

/* Notification System */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  max-width: 400px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: all 0.3s ease;
  border-left: 4px solid #94a3b8;
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  border-left-color: #10b981;
}

.notification-error {
  border-left-color: #ef4444;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
}

.notification-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--white);
  font-size: 0.875rem;
}

.notification-success .notification-icon {
  background-color: #10b981;
}

.notification-error .notification-icon {
  background-color: #ef4444;
}

.notification-message {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #94a3b8;
  transition: color 0.2s ease;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-close:hover {
  color: #64748b;
}

/* Responsive Design */
/* Mobile First - Base styles */
.container {
  max-width: 100%;
  padding: 0 1rem;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
}

.hero-welcome {
  font-size: 1.5rem;
}

.hero-description {
  font-size: 1rem;
}

.hero-buttons {
  flex-direction: column;
  gap: 1rem;
}

.about-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.stats-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.values-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.services-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-content {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.form-row {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-grid {
  grid-template-columns: 1fr;
}

.section-title {
  font-size: 2.5rem;
}

.stat-number {
  font-size: 2rem;
}

.hero-stats {
  gap: 2rem;
  flex-direction: column;
}

.nav-menu {
  display: flex;
  position: fixed;
  top: 110px;
  left: 0;
  width: 100%;
  height: calc(100vh - 110px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 252, 0.98) 100%
  );
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 3rem 0;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.nav-menu.active {
  transform: translateX(0);
}

.nav-menu li {
  margin: 1.5rem 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.nav-menu.active li {
  opacity: 1;
  transform: translateY(0);
}

.nav-menu.active li:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-menu.active li:nth-child(2) {
  transition-delay: 0.2s;
}
.nav-menu.active li:nth-child(3) {
  transition-delay: 0.3s;
}
.nav-menu.active li:nth-child(4) {
  transition-delay: 0.4s;
}

.nav-menu .nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  padding: 1rem 2rem;
  border-radius: 12px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-menu .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(30, 58, 138, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.nav-menu .nav-link:hover::before {
  left: 100%;
}

.nav-menu .nav-link:hover {
  background: linear-gradient(135deg, var(--laundry-blue), #3b82f6);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.hamburger {
  display: block;
}

/* Small tablets */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: row;
    gap: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-welcome {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 2;
  }

  .nav-menu {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    transform: none;
    transition: none;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: 2rem;
  }

  .nav-menu li {
    margin: 0;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav-menu .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    padding: 0;
    border-radius: 0;
    display: inline;
    position: static;
    overflow: visible;
  }

  .nav-menu .nav-link::before {
    display: none;
  }

  .nav-menu .nav-link:hover {
    background: none;
    color: var(--laundry-blue);
    transform: none;
    box-shadow: none;
  }

  .hamburger {
    display: none;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-welcome {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 3.5rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .about-grid {
    gap: 4rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large screens */
@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .section-title {
    font-size: 4rem;
  }
}

/* Mobile navigation fixes */
@media (max-width: 767px) {
  .about-text-bottom {
    margin-top: 2rem;
  }

  .services-section {
    padding: 3rem 0;
    min-height: auto;
  }

  .notification {
    right: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
  }

  .hero-badge {
    display: none;
  }

  .nav-menu {
    top: 110px;
    height: calc(100vh - 110px);
  }

  .nav-brand {
    transition: all 0.3s ease;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .modal-content {
    margin: 1rem;
    padding: 1.5rem;
    max-height: 90vh;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.6s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: rotate(180deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  /* Logo breiter in mobiler Ansicht */
  .nav-brand .brand-logo {
    height: 80px;
    max-width: 200px;
    width: auto;
  }

  .nav-brand .brand-link {
    margin-left: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-text-bottom {
    margin-top: 0;
  }
}

/* Simple Header for Legal Pages */
.simple-header .container {
  justify-content: center;
}

.simple-header .nav-brand.centered {
  margin: 0;
}

.simple-header .nav-brand .brand-logo {
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.simple-header .nav-brand .brand-logo:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

/* Legal Pages Styles (Impressum & Datenschutz) */
.impressum-section,
.datenschutz-section {
  padding: 8rem 0 5rem 0;
  background-color: var(--white);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.back-link {
  margin-bottom: 3rem;
}

.legal-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--laundry-blue);
  margin-bottom: 3rem;
  text-align: center;
}

.legal-info {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
}

.info-block {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.info-block:last-child {
  border-bottom: none;
}

.info-block h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--laundry-blue);
  margin-bottom: 2rem;
}

.info-block h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--laundry-blue);
  margin: 2rem 0 1rem 0;
}

.info-block h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin: 1.5rem 0 0.75rem 0;
}

.info-block p {
  margin-bottom: 1.25rem;
}

.info-block a {
  color: var(--laundry-blue);
  text-decoration: none;
  font-weight: 500;
}

.info-block a:hover {
  text-decoration: underline;
}

.info-block strong {
  color: #2d3748;
  font-weight: 600;
}

/* Mobile responsive for legal pages */
@media (max-width: 768px) {
  .legal-container {
    padding: 1rem 0;
  }

  .legal-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .legal-info {
    font-size: 1rem;
    line-height: 1.6;
  }

  .info-block {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .info-block h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem 0;
  }

  .info-block h4 {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
  }

  .info-block p {
    margin-bottom: 1rem;
  }

  .legal-content {
    padding: 0 1rem;
  }

  .back-link {
    margin-bottom: 2rem;
  }

  .back-link .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .legal-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .legal-info {
    font-size: 0.95rem;
  }

  .info-block h2 {
    font-size: 1.3rem;
  }

  .info-block h3 {
    font-size: 1.1rem;
  }

  .info-block h4 {
    font-size: 1rem;
  }

  .legal-content {
    padding: 0 0.75rem;
  }

  /* Better text wrapping for long words */
  .info-block p {
    word-wrap: break-word;
    hyphens: auto;
  }

  /* Improve list styling on mobile */
  .info-block ul {
    padding-left: 1.2rem;
  }

  .info-block li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--laundry-gray) 100%
  );
  border: 2px solid var(--laundry-blue);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  animation: slideInFromBottom 0.5s ease-out;
  backdrop-filter: blur(10px);
}

.cookie-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-icon {
  display: flex;
  align-self: flex-start;
}

.cookie-icon i {
  font-size: 24px;
  color: var(--laundry-blue);
  animation: cookieBounce 2s infinite;
}

.cookie-text h4 {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cookie-text p {
  color: var(--black);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.cookie-text a {
  color: var(--laundry-blue);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-text a:hover {
  color: var(--laundry-blue-dark);
}

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

.cookie-btn {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  min-height: 40px;
}

.cookie-btn.accept {
  background: var(--laundry-blue);
  color: var(--white);
  flex: 1;
}

.cookie-btn.accept:hover {
  background: var(--laundry-blue-dark);
  transform: translateY(-1px);
}

.cookie-btn.essential {
  background: var(--laundry-gray);
  color: var(--black);
  border: 1px solid #ddd;
  flex: 1;
}

.banner-title {
  font-weight: 700;
  font-size: 30px;
  display: flex;
  align-self: center;
  justify-content: center;
}

.cookie-btn.essential:hover {
  background: #e9ecef;
  transform: translateY(-1px);
}

.cookie-btn.close {
  background: #f8f9fa;
  color: #666;
  border: 1px solid #ddd;
  width: 40px;
  padding: 10px;
  justify-content: center;
}

.cookie-btn.close:hover {
  background: #e9ecef;
  color: var(--black);
  transform: translateY(-1px);
}

/* Minimized Cookie Icon */
.cookie-icon-minimized {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: var(--laundry-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: cookiePulse 3s infinite;
}

.cookie-icon-minimized:hover {
  background: var(--laundry-blue-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-icon-minimized i {
  color: var(--white);
  font-size: 24px;
}

/* Hidden class */
.hidden {
  display: none !important;
}

/* Animations */
@keyframes slideInFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cookieBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

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

/* Responsive Design für Cookie Banner */
@media (max-width: 768px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    max-width: none;
    bottom: 10px;
  }

  .cookie-content {
    padding: 16px;
    gap: 12px;
  }

  .cookie-text h4 {
    font-size: 16px;
  }

  .cookie-text p {
    font-size: 13px;
  }

  .cookie-buttons {
    gap: 6px;
  }

  .cookie-btn {
    padding: 8px 12px;
    font-size: 13px;
    min-height: 36px;
  }

  .cookie-icon-minimized {
    width: 50px;
    height: 50px;
    bottom: 15px;
    left: 15px;
  }

  .cookie-icon-minimized i {
    font-size: 20px;
  }
}

/* Google Maps 2-Click Solution */
.map-placeholder-content {
  background: linear-gradient(135deg, var(--laundry-gray) 0%, #f8f9fa 100%);
  border: 2px dashed var(--laundry-blue);
  border-radius: 12px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.map-placeholder-inner {
  max-width: 260px;
}

.map-placeholder-inner i {
  font-size: 40px;
  color: var(--laundry-blue);
  margin-bottom: 12px;
  animation: mapPulse 2s ease-in-out infinite;
}

.map-placeholder-inner h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--laundry-blue);
  margin-bottom: 10px;
}

.map-placeholder-inner p {
  color: #666;
  margin-bottom: 6px;
  line-height: 1.4;
  font-size: 14px;
}

.map-privacy-note {
  font-size: 12px;
  color: #888;
  margin: 12px 0;
  font-style: italic;
}

.btn-load-maps {
  background: var(--laundry-blue);
  color: var(--white);
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 8px rgba(65, 183, 255, 0.3);
}

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

/* Mobile responsive for map placeholder */
@media (max-width: 768px) {
  .map-placeholder-content {
    height: 280px;
  }

  .map-placeholder-inner {
    max-width: 220px;
  }

  .map-placeholder-inner i {
    font-size: 36px;
  }

  .map-placeholder-inner h5 {
    font-size: 16px;
  }

  .map-placeholder-inner p {
    font-size: 13px;
  }

  .map-privacy-note {
    font-size: 11px;
  }

  .btn-load-maps {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* Additional Services Banner */
.additional-services-banner {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: var(--white);
  border: 3px solid var(--laundry-blue);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

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

.banner-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--laundry-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.banner-description {
  font-size: 1.25rem;
  color: var(--laundry-blue);
  max-width: 800px;
  line-height: 1.6;
}

.banner-description strong {
  font-weight: 600;
  color: var(--laundry-blue-dark);
}

/* Responsive Banner Styles */
@media (max-width: 1024px) {
  .banner-title {
    font-size: 2.5rem;
  }

  .banner-description {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .additional-services-banner {
    margin-top: 3rem;
    padding: 3rem 1.5rem;
  }

  .banner-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .banner-description {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .additional-services-banner {
    margin-top: 2rem;
    padding: 2.5rem 1rem;
  }

  .banner-title {
    font-size: 1.75rem;
  }

  .banner-description {
    font-size: 0.95rem;
  }
}
