/* ────────────────── PHONE MOCKUP ────────────────── */
.phone-mockup {
  position: relative;
  width: 300px;
  transform: rotate(3deg);
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.55));
  animation: slideInLeft 1s ease forwards, fadeIn 1s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

@keyframes slideInLeft {
  from { transform: rotate(3deg) translateX(-60px); }
  to   { transform: rotate(3deg) translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.phone-screens {
  position: relative;
  width: 100%;
}

.phone-screen {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.phone-screen.active {
  opacity: 1;
  position: relative;
}

/* ────────────────── CAROUSEL CONTROLS ────────────────── */
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}
.carousel-prev,
.carousel-next {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  transition: all 0.3s ease;
  line-height: 1;
}
.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(197,168,128,0.3);
  border-color: var(--gold);
  color: var(--gold);
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
