/* SIMPLE ORBITAL ROTATION */
.amenities-innovative {
  padding: 100px 0 100px 0;
  margin-top: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow-x: hidden;
}

.amenities-innovative .container {
  overflow: visible;
}

.amenities-header-creative {
  text-align: center;
  margin-bottom: 80px;
}

.amenities-label {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.amenities-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.amenities-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
}

.orbital-container {
  position: relative;
  width: 800px;
  height: 800px;
  margin: 0 auto;
  overflow: visible;
}

.center-circle {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 180px !important;
  height: 180px !important;
  background: linear-gradient(135deg, #2c5f2d, #97bc62) !important;
  border-radius: 50% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  z-index: 10 !important;
  padding: 15px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.center-circle::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c5f2d, #97bc62);
  z-index: -1;
  filter: blur(10px);
  opacity: 0.5;
}

.center-circle svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  animation: iconPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.center-circle h3 {
  color: #ffffff !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  font-family: 'Playfair Display', serif !important;
  letter-spacing: 0.5px !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 1 !important;
}

.facility-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  margin: -70px 0 0 -70px;
}

.facility-1 { animation: rotate1 20s linear infinite; }
.facility-2 { animation: rotate2 20s linear infinite; }
.facility-3 { animation: rotate3 20s linear infinite; }
.facility-4 { animation: rotate4 20s linear infinite; }
.facility-5 { animation: rotate5 20s linear infinite; }
.facility-6 { animation: rotate6 20s linear infinite; }
.facility-7 { animation: rotate7 20s linear infinite; }
.facility-8 { animation: rotate8 20s linear infinite; }

@keyframes rotate1 {
  from { transform: rotate(0deg) translateX(320px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(320px) rotate(-360deg); }
}

@keyframes rotate2 {
  from { transform: rotate(45deg) translateX(320px) rotate(-45deg); }
  to { transform: rotate(405deg) translateX(320px) rotate(-405deg); }
}

@keyframes rotate3 {
  from { transform: rotate(90deg) translateX(320px) rotate(-90deg); }
  to { transform: rotate(450deg) translateX(320px) rotate(-450deg); }
}

@keyframes rotate4 {
  from { transform: rotate(135deg) translateX(320px) rotate(-135deg); }
  to { transform: rotate(495deg) translateX(320px) rotate(-495deg); }
}

@keyframes rotate5 {
  from { transform: rotate(180deg) translateX(320px) rotate(-180deg); }
  to { transform: rotate(540deg) translateX(320px) rotate(-540deg); }
}

@keyframes rotate6 {
  from { transform: rotate(225deg) translateX(320px) rotate(-225deg); }
  to { transform: rotate(585deg) translateX(320px) rotate(-585deg); }
}

@keyframes rotate7 {
  from { transform: rotate(270deg) translateX(320px) rotate(-270deg); }
  to { transform: rotate(630deg) translateX(320px) rotate(-630deg); }
}

@keyframes rotate8 {
  from { transform: rotate(315deg) translateX(320px) rotate(-315deg); }
  to { transform: rotate(675deg) translateX(320px) rotate(-675deg); }
}

.facility-content {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.facility-content svg {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.facility-content h4 {
  font-size: 1rem;
  color: var(--dark-color);
  margin: 0;
  font-weight: 600;
}

@media (max-width: 968px) {
  .orbital-container { width: 650px; height: 650px; }
  .center-circle { width: 150px; height: 150px; }
  .center-circle h3 { font-size: 1.2rem; }
  .facility-item { width: 120px; height: 120px; margin: -60px 0 0 -60px; }
  
  @keyframes rotate1 { from { transform: rotate(0deg) translateX(250px) rotate(0deg); } to { transform: rotate(360deg) translateX(250px) rotate(-360deg); } }
  @keyframes rotate2 { from { transform: rotate(45deg) translateX(250px) rotate(-45deg); } to { transform: rotate(405deg) translateX(250px) rotate(-405deg); } }
  @keyframes rotate3 { from { transform: rotate(90deg) translateX(250px) rotate(-90deg); } to { transform: rotate(450deg) translateX(250px) rotate(-450deg); } }
  @keyframes rotate4 { from { transform: rotate(135deg) translateX(250px) rotate(-135deg); } to { transform: rotate(495deg) translateX(250px) rotate(-495deg); } }
  @keyframes rotate5 { from { transform: rotate(180deg) translateX(250px) rotate(-180deg); } to { transform: rotate(540deg) translateX(250px) rotate(-540deg); } }
  @keyframes rotate6 { from { transform: rotate(225deg) translateX(250px) rotate(-225deg); } to { transform: rotate(585deg) translateX(250px) rotate(-585deg); } }
  @keyframes rotate7 { from { transform: rotate(270deg) translateX(250px) rotate(-270deg); } to { transform: rotate(630deg) translateX(250px) rotate(-630deg); } }
  @keyframes rotate8 { from { transform: rotate(315deg) translateX(250px) rotate(-315deg); } to { transform: rotate(675deg) translateX(250px) rotate(-675deg); } }
}

@media (max-width: 640px) {
  .amenities-innovative {
    padding: 15px 0 60px 0;
  }
  
  .amenities-title {
    font-size: 2rem;
  }
  
  .orbital-container { 
    width: 100% !important;
    max-width: 95vw !important;
    height: 95vw !important;
    max-height: 400px !important;
  }
  .center-circle { 
    width: 90px !important;
    height: 90px !important;
  }
  .center-circle h3 { 
    font-size: 0.85rem !important;
    line-height: 1.2 !important;
  }
  .facility-item { 
    width: 75px !important;
    height: 75px !important;
    margin: -37.5px 0 0 -37.5px !important;
  }
  .facility-content { 
    padding: 10px !important;
  }
  .facility-content svg { 
    width: 26px !important;
    height: 26px !important;
  }
  .facility-content h4 { 
    font-size: 0.7rem !important;
  }
  
  @keyframes rotate1 { from { transform: rotate(0deg) translateX(130px) rotate(0deg); } to { transform: rotate(360deg) translateX(130px) rotate(-360deg); } }
  @keyframes rotate2 { from { transform: rotate(45deg) translateX(130px) rotate(-45deg); } to { transform: rotate(405deg) translateX(130px) rotate(-405deg); } }
  @keyframes rotate3 { from { transform: rotate(90deg) translateX(130px) rotate(-90deg); } to { transform: rotate(450deg) translateX(130px) rotate(-450deg); } }
  @keyframes rotate4 { from { transform: rotate(135deg) translateX(130px) rotate(-135deg); } to { transform: rotate(495deg) translateX(130px) rotate(-495deg); } }
  @keyframes rotate5 { from { transform: rotate(180deg) translateX(130px) rotate(-180deg); } to { transform: rotate(540deg) translateX(130px) rotate(-540deg); } }
  @keyframes rotate6 { from { transform: rotate(225deg) translateX(130px) rotate(-225deg); } to { transform: rotate(585deg) translateX(130px) rotate(-585deg); } }
  @keyframes rotate7 { from { transform: rotate(270deg) translateX(130px) rotate(-270deg); } to { transform: rotate(630deg) translateX(130px) rotate(-630deg); } }
  @keyframes rotate8 { from { transform: rotate(315deg) translateX(130px) rotate(-315deg); } to { transform: rotate(675deg) translateX(130px) rotate(-675deg); } }
}


/* ROOM FEATURES ZIGZAG SECTION */
.room-features-innovative {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features-label {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}

.features-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.features-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Zigzag Layout */
.features-zigzag {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.zigzag-item.right {
  direction: rtl;
}

.zigzag-item.right > * {
  direction: ltr;
}

/* Content */
.zigzag-content {
  position: relative;
  padding: 40px;
}

.zigzag-content h3 {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.zigzag-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Image */
.zigzag-image {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}

.zigzag-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.zigzag-image:hover::after {
  opacity: 1;
}

.zigzag-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomInOut 4s ease-in-out infinite;
}

@keyframes zoomInOut {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Icon Box */
.zigzag-icon-box {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding: 40px;
}

.icon-item {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.icon-item:hover {
  transform: translateY(-15px) rotate(10deg);
  box-shadow: 0 20px 50px rgba(44, 95, 45, 0.2);
}

/* Responsive */
@media (max-width: 968px) {
  .zigzag-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .zigzag-item.right {
    direction: ltr;
  }

  .zigzag-image {
    height: 300px;
  }

  .zigzag-icon-box {
    gap: 20px;
    padding: 30px;
  }

  .icon-item {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  .features-title {
    font-size: 2.5rem;
  }

  .zigzag-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 640px) {
  .zigzag-icon-box {
    flex-direction: column;
    gap: 15px;
  }

  .icon-item {
    width: 100%;
    height: 80px;
    font-size: 2rem;
  }

  .zigzag-number {
    font-size: 4rem;
  }

  .features-title {
    font-size: 2rem;
  }

  .zigzag-content {
    padding: 30px 20px;
  }
}



/* Typing Animation */
.typing-text {
  overflow: hidden;
  white-space: nowrap;
  animation: typing 3s steps(20) infinite;
}

@keyframes typing {
  0%, 100% { width: 0; }
  50%, 90% { width: 100%; }
}

.typing-text.typed {
  animation: typing 3s steps(20) infinite;
}

/* Ensure center circle is always visible */
@media (max-width: 968px) {
  .center-circle {
    width: 150px !important;
    height: 150px !important;
    z-index: 100 !important;
  }
  .center-circle h3 {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 640px) {
  .center-circle {
    width: 90px !important;
    height: 90px !important;
    z-index: 100 !important;
    padding: 10px !important;
  }
  .center-circle h3 {
    font-size: 0.85rem !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 480px) {
  .center-circle {
    width: 75px !important;
    height: 75px !important;
    z-index: 100 !important;
    padding: 8px !important;
  }
  .center-circle h3 {
    font-size: 0.7rem !important;
    line-height: 1.1 !important;
  }
}

/* Extra small phones */
@media (max-width: 400px) {
  .orbital-container { 
    width: 100% !important;
    max-width: 90vw !important;
    height: 90vw !important;
    max-height: 320px !important;
  }
  .center-circle { 
    width: 70px !important;
    height: 70px !important;
  }
  .center-circle h3 { 
    font-size: 0.65rem !important;
    line-height: 1.1 !important;
  }
  .facility-item { 
    width: 60px !important;
    height: 60px !important;
    margin: -30px 0 0 -30px !important;
  }
  .facility-content { 
    padding: 6px !important;
  }
  .facility-content svg { 
    width: 20px !important;
    height: 20px !important;
  }
  .facility-content h4 { 
    font-size: 0.6rem !important;
  }
  
  @keyframes rotate1 { from { transform: rotate(0deg) translateX(100px) rotate(0deg); } to { transform: rotate(360deg) translateX(100px) rotate(-360deg); } }
  @keyframes rotate2 { from { transform: rotate(45deg) translateX(100px) rotate(-45deg); } to { transform: rotate(405deg) translateX(100px) rotate(-405deg); } }
  @keyframes rotate3 { from { transform: rotate(90deg) translateX(100px) rotate(-90deg); } to { transform: rotate(450deg) translateX(100px) rotate(-450deg); } }
  @keyframes rotate4 { from { transform: rotate(135deg) translateX(100px) rotate(-135deg); } to { transform: rotate(495deg) translateX(100px) rotate(-495deg); } }
  @keyframes rotate5 { from { transform: rotate(180deg) translateX(100px) rotate(-180deg); } to { transform: rotate(540deg) translateX(100px) rotate(-540deg); } }
  @keyframes rotate6 { from { transform: rotate(225deg) translateX(100px) rotate(-225deg); } to { transform: rotate(585deg) translateX(100px) rotate(-585deg); } }
  @keyframes rotate7 { from { transform: rotate(270deg) translateX(100px) rotate(-270deg); } to { transform: rotate(630deg) translateX(100px) rotate(-630deg); } }
  @keyframes rotate8 { from { transform: rotate(315deg) translateX(100px) rotate(-315deg); } to { transform: rotate(675deg) translateX(100px) rotate(-675deg); } }
}
