/* ================= ZODIAC SECTION ================= */

.rotate-zodiac-section {
  background: #021826;
  padding: 80px 0;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.rotate-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}
.rotate-title span { color: #ff8c34; }

.rotate-subtitle {
  max-width: 650px;
  margin: 0 auto 50px;
  color: #d4e0e8;
}

.rotate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  justify-items: center;
}

.rotate-item h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

/* ORBIT */
.orbit-wrapper {
  position: relative;
  width: 170px;
  height: 170px;
}

.orbit-rotate {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #ff8c34;
  animation: spinOrbit 10s linear infinite;
}

.orbit-rotate::before,
.orbit-rotate::after {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  border: 1px dashed rgba(255,140,52,.7);
}
.orbit-rotate::after {
  inset: 30px;
  opacity: .5;
}

.orbit-inner {
  position: absolute;
  inset: 40px;
  background: #021826;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.orbit-inner img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform .25s ease, filter .25s ease;
  cursor: pointer;
}

.rotate-item:hover .orbit-inner img {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 12px rgba(255,140,52,.45));
}

.rotate-item:hover .orbit-rotate {
  box-shadow: 0 0 22px rgba(255,140,52,.45);
}

@keyframes spinOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ================= POPUP ================= */

.contact-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.contact-popup.active {
  display: flex;
}

.popup-content {
  background: #021826;
  padding: 30px;
  width: 320px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #ff8c34;
  animation: popupIn .35s ease;
}

.popup-content h3 {
  color: #ff8c34;
}

.popup-content p {
  color: #d4e0e8;
  margin-bottom: 20px;
}

.popup-btn {
  display: block;
  background: #ff8c34;
  color: #fff;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.popup-btn.whatsapp {
  background: #25d366;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  float: right;
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(.85); }
  to { opacity: 1; transform: scale(1); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .rotate-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .rotate-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .rotate-title { font-size: 30px; }
  .orbit-wrapper { width: 130px; height: 130px; }
  .orbit-inner { inset: 28px; }
  .orbit-inner img { width: 55px; height: 55px; }
}
