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

:root {
  --primary-warm: #fff5f0;
  --primary-peach: #ffd4a3;
  --primary-mint: #b8e6d5;
  --primary-blue: #a8d8f0;
  --primary-coral: #ff9a7b;
  --accent-dark: #8b6f47;
  --accent-light: #f4a261;
  --text-dark: #5d4e37;
  --text-light: #8b7355;
  --white: #ffffff;
  --shadow-soft: 0 8px 24px rgba(173, 108, 81, 0.12);
  --shadow-medium: 0 12px 40px rgba(173, 108, 81, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Comfortaa", cursive;
  background: linear-gradient(135deg, #fff5f0 0%, #f0f5ff 50%, #f0fff5 100%);
  color: var(--text-dark);
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  padding: 0.8rem 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--primary-peach);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.menu-toggle {
  display: none;
  border: 2px solid var(--primary-coral);
  background: var(--white);
  color: var(--primary-coral);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: "Fredoka", sans-serif;
  position: relative;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-coral);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-coral), var(--primary-mint));
  border-radius: 2px;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-light) 100%);
  color: white;
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 154, 123, 0.3);
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 154, 123, 0.4);
}

.hero {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 230, 213, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(168, 216, 240, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3rem;
  font-family: "Fredoka", sans-serif;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text h1 .highlight {
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Fredoka", sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-light) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 154, 123, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 154, 123, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-coral);
  border: 3px solid var(--primary-coral);
}

.btn-secondary:hover {
  background: var(--primary-peach);
  transform: translateY(-4px);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-illustration {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-mint) 100%);
  border-radius: 50% 50% 30% 70% / 60% 30% 70% 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 8rem;
  animation: morph 6s ease-in-out infinite;
  box-shadow: var(--shadow-medium);
}

@keyframes morph {
  0%,
  100% {
    border-radius: 50% 50% 30% 70% / 60% 30% 70% 40%;
  }
  25% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 46% 54% / 30% 30% 35% 70%;
  }
  75% {
    border-radius: 56% 44% 50% 50% / 50% 56% 44% 50%;
  }
}

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

.features {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-family: "Fredoka", sans-serif;
  color: var(--text-dark);
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-mint), var(--primary-coral));
  border-radius: 3px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 3px solid transparent;
  cursor: pointer;
}

.feature-card:hover {
  border-color: var(--primary-coral);
  transform: translateY(-12px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: dance 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) .feature-icon {
  animation-delay: 0.4s;
}

.feature-card:nth-child(4) .feature-icon {
  animation-delay: 0.6s;
}

@keyframes dance {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(3deg);
  }
}

.feature-card h3 {
  font-size: 1.3rem;
  font-family: "Fredoka", sans-serif;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.about {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(255, 212, 163, 0.2) 0%,
    rgba(184, 230, 213, 0.2) 100%
  );
  border-radius: 40px;
  margin: 3rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--primary-peach) 0%, var(--primary-coral) 100%);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 6rem;
  box-shadow: var(--shadow-medium);
}

.about-text h2 {
  font-size: 2.2rem;
  font-family: "Fredoka", sans-serif;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.qualifications {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  margin-top: 2rem;
  border-left: 6px solid var(--primary-coral);
}

.qualifications h3 {
  font-family: "Fredoka", sans-serif;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.qualifications ul {
  list-style: none;
  color: var(--text-light);
}

.qualifications li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.qualifications li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-coral);
  font-weight: 700;
}

.services {
  padding: 5rem 0;
}

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

.service-box {
  background: linear-gradient(135deg, var(--primary-peach) 0%, var(--primary-mint) 100%);
  border-radius: 25px;
  padding: 2rem;
  color: var(--text-dark);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-box:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

.service-box h3 {
  font-family: "Fredoka", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.service-box p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-light) 100%);
  border-radius: 40px;
  color: var(--white);
  text-align: center;
  margin: 3rem 0;
}

.contact h2 {
  font-size: 2.5rem;
  font-family: "Fredoka", sans-serif;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-item h3 {
  font-family: "Fredoka", sans-serif;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p {
  margin-bottom: 0;
  font-size: 1rem;
}

.contact button {
  background: var(--white);
  color: var(--primary-coral);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Fredoka", sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

footer {
  background: var(--white);
  padding: 3rem 0;
  border-top: 3px solid var(--primary-peach);
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-family: "Fredoka", sans-serif;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-coral);
}

.footer-bottom {
  border-top: 2px solid var(--primary-peach);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .header-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  nav {
    grid-column: 1 / -1;
    width: 100%;
  }

  nav ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.7rem 0 0.2rem;
  }

  .header-content.menu-open nav ul {
    display: flex;
  }

  nav a::after {
    bottom: -2px;
  }

  .hero-content,
  .about-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons button {
    width: 100%;
  }

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

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

.feature-card {
  animation: slideInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}
