/* SMM Page Theme */
.smm-page {
  --theme-color: #ec4899;
  --theme-light: #f472b6;
  --theme-dark: #db2777;
}

.logo-smm .logo-text {
  color: var(--theme-color);
}

/* SMM Hero */
.smm-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #be185d 0%, #ec4899 50%, #f472b6 100%);
  overflow: hidden;
  padding-top: 100px;
}

.smm-3d-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.social-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: orbit 15s infinite linear;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: #f59e0b;
  top: 20%;
  left: 10%;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: #8b5cf6;
  top: 60%;
  right: 15%;
  animation-duration: 20s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: #06b6d4;
  bottom: 20%;
  left: 40%;
  animation-duration: 18s;
}

@keyframes orbit {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(20px, 20px) rotate(360deg);
  }
}

.floating-icon {
  position: absolute;
  font-size: 3rem;
  animation: floatIcon 4s infinite ease-in-out;
}

.icon-1 {
  top: 15%;
  right: 20%;
  animation-delay: 0s;
}

.icon-2 {
  bottom: 25%;
  left: 15%;
  animation-delay: 1.5s;
}

.icon-3 {
  top: 50%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.1);
  }
}

/* SMM Services Section */
.smm-services {
  padding: var(--spacing-xl) 0;
}

.services-grid-smm {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card-smm {
  padding: 2.5rem;
  background: linear-gradient(135deg, #fff 0%, #fef3f8 100%);
  border-radius: 20px;
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.service-card-smm:hover {
  border-color: var(--theme-color);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(236, 72, 153, 0.2);
}

.card-icon-smm {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: var(--theme-color);
}

.service-card-smm h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.service-card-smm p {
  color: var(--color-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card-smm ul {
  list-style: none;
}

.service-card-smm ul li {
  padding: 0.5rem 0;
  color: var(--color-dark-gray);
  position: relative;
  padding-left: 1.5rem;
}

.service-card-smm ul li::before {
  content: "♥";
  position: absolute;
  left: 0;
  color: var(--theme-color);
}

/* Platforms Section */
.platforms-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-off-white);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.platform-card {
  padding: 2rem;
  background: var(--color-white);
  border-radius: 15px;
  text-align: center;
  transition: var(--transition-base);
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.15);
}

.platform-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 0.5rem;
}

.platform-card p {
  color: var(--color-gray);
  font-size: 0.875rem;
}

.smm-cta {
  background: var(--theme-color);
}

@media (max-width: 768px) {
  .services-grid-smm {
    grid-template-columns: 1fr;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}