:root {
  --primary: #e8a4c3; /* Light pink */
  --secondary: #f9f2f5; /* Very light pink background */
  --accent: #98d8a1; /* Light green */
  --highlight: #fde7ef; /* Light pink highlight */
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

.header {
  background: linear-gradient(135deg, var(--primary), #d88ba9);
  color: white;
  padding: 2rem;
  text-align: center;
}

.logo {
  width: 180px;
  height: 180px;
  margin-bottom: 1rem;
}

.hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  overflow: hidden;
}

.cleaning-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.services {
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  background: white;
}

.service-card {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.cta-button {
  background: var(--accent);
  color: #333;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer {
  background: var(--primary);
  color: white;
  padding: 2rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.social-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

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

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes wingFlap {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.9); }
}

.wing {
  animation: wingFlap 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes haloGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.halo {
  animation: haloGlow 3s ease-in-out infinite;
}

.tagline {
  font-size: 1.2rem;
  color: var(--accent);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.footer-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid white;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  background: white;
  color: var(--primary);
}

.testimonials {
  background: var(--secondary);
  padding: 4rem 2rem;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: relative;
}

.testimonial-quote {
  color: var(--primary);
  font-size: 2rem;
  position: absolute;
  top: -1rem;
  left: 1rem;
  opacity: 0.2;
}

.customer-name {
  color: var(--primary);
  font-weight: bold;
  margin-top: 1rem;
}

.rating {
  color: var(--accent);
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.cleaning-supplies {
  background: var(--secondary);
  padding: 2rem;
  text-align: center;
}

.supplies-illustration {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Add hover effects */
.supplies-illustration g {
  transition: transform 0.3s ease;
}

.supplies-illustration g:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 2rem auto;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid var(--primary);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(152, 216, 161, 0.2);
}

.cta-button.secondary {
  background: white;
  border: 2px solid var(--accent);
  margin-top: 1rem;
}

.cta-button.secondary:hover {
  background: var(--accent);
  color: white;
}

/* Update hero section styles */
.hero-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}