* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #fff0f5, #ffe4ec);
  color: #333;
  scroll-behavior: smooth;
}

/* Header */
header {
  background: rgba(255, 20, 147, 0.9);
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
nav a:hover {
  text-shadow: 0 0 5px white;
  color: #ffe4ec;
}

/* Hero */
#home {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9") center/cover no-repeat;
  position: relative;
}
#home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 20, 147, 0.4);
}
.hero-text {
  position: relative;
  text-align: center;
  color: white;
}
.hero-text h1 {
  font-size: 48px;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255,255,255,0.5);
}
.hero-text p {
  font-size: 20px;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(255,20,147,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255,20,147,0.3);
}
.card h3 {
  color: #ff1493;
  margin-bottom: 10px;
}
.price {
  font-weight: 600;
  font-size: 18px;
}

/* Form */
.form-container {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  padding: 35px;
  border-radius: 25px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 8px 32px rgba(255,20,147,0.1);
  margin-top: 30px;
}
form label {
  display: block;
  margin-top: 15px;
  font-weight: 500;
  text-align: left;
}
form input, form select {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border-radius: 12px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(5px);
  transition: 0.3s;
}
form input:focus, form select:focus {
  box-shadow: 0 0 10px rgba(255,20,147,0.5);
}
button {
  width: 100%;
  padding: 15px;
  margin-top: 25px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255,20,147,0.4);
}
#result {
  margin-top: 15px;
  font-weight: 600;
  text-align: center;
}

/* Contact */
#contact .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;  /* Center horizontally */
  gap: 10px;
  font-size: 18px;
}

#contact .contact-info a {
  color: #ff1493;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

#contact .contact-info a:hover {
  text-decoration: underline;
  color: #ff69b4;
}


/* Footer */
footer {
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-radius: 30px 30px 0 0;
}

/* Mobile */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    gap: 10px;
  }
  #home h1 {
    font-size: 36px;
  }
}
