:root {
  --primary: #e65f82;
  --secondary: #55bedc;
  --base: #ffffff;
  --text: #555555;
  --text-muted: #878787;
  --accent-soft: rgba(230, 95, 130, 0.05);
  --secondary-soft: rgba(85, 190, 220, 0.08);
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background-color: var(--base);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 15px 0;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  margin: 0 10px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.txt-primary{
  color: var(--primary);
  font-weight: bold;
}

.txt-secondary{
  color: var(--secondary);
  font-weight: bold;
}

.btn-primary {
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(230, 95, 130, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(230, 95, 130, 0.4);
  background: #fff;
  color: var(--primary);
}

.btn-menu {
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(230, 95, 130, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-menu:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(230, 95, 130, 0.4);
  color: #fff;
  background: var(--primary);
}

.btn-outline {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--text);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(230, 95, 130, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(230, 95, 130, 0.4);
  background: var(--text);
  color: #fff;
  border: 1px solid var(--text);
}

.hero-section {
  padding: 160px 0 120px;
  background: radial-gradient(circle at top right, var(--secondary-soft), transparent 40%),
              radial-gradient(circle at bottom left, var(--accent-soft), transparent 40%);
  position: relative;
}

.hero-image {
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transform: rotate(-2deg);
}

.candy-tag {
  display: inline-block;
  padding: 5px 15px;
  background: var(--accent-soft);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.service-card {
  border: 1px solid rgba(0,0,0,0.03);
  border-radius: 24px;
  padding: 40px;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  text-decoration: none;
  display: block;
  position: relative;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: var(--secondary-soft);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--secondary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--secondary);
}

.card-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--text);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

.service-card:nth-child(even) .icon-box {
  background: var(--accent-soft);
  color: var(--primary);
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.section-title::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--secondary-soft);
  border-radius: 50%;
  top: -10px;
  left: -20px;
  z-index: -1;
}

.cta-section {
  background: var(--primary);
  color: #ffffff;
  padding: 80px 0;
}

.cta-section .cta-title,
.cta-section p {
  color: #ffffff;
}

.cta-section .cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer {
  background-color: #fafafa;
  padding: 80px 0 40px;
  border-top: 1px solid #f0f0f0;
}

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

.animate-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Custom Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
